func context.WithCancel
12 uses
context (current package)
context.go#L235: func WithCancel(parent Context) (ctx Context, cancel CancelFunc) {
context.go#L624: return WithCancel(parent)
crypto/tls
conn.go#L1519: handshakeCtx, cancel := context.WithCancel(ctx)
net
dial.go#L488: subCtx, cancel := context.WithCancel(ctx)
dial.go#L568: primaryCtx, primaryCancel := context.WithCancel(ctx)
dial.go#L579: fallbackCtx, fallbackCancel := context.WithCancel(ctx)
lookup.go#L329: lookupGroupCtx, lookupGroupCancel := context.WithCancel(withUnexpiredValuesPreserved(ctx))
net/http
h2_bundle.go#L4406: ctx, cancel = context.WithCancel(opts.context())
h2_bundle.go#L5987: ctx, cancelCtx := context.WithCancel(sc.baseCtx)
server.go#L1083: ctx, cancelCtx := context.WithCancel(ctx)
server.go#L2008: ctx, cancelCtx := context.WithCancel(ctx)
transport.go#L1445: dialCtx, dialCancel := context.WithCancel(context.WithoutCancel(ctx))
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |