var context.Canceled
10 uses
context (current package)
context.go#L163: var Canceled = errors.New("context canceled")
context.go#L237: return c, func() { c.cancel(true, Canceled, nil) }
context.go#L265: return c, func(cause error) { c.cancel(true, Canceled, cause) }
context.go#L326: a.cancel(true, Canceled, nil)
context.go#L633: return c, func() { c.cancel(false, Canceled, nil) }
context.go#L642: return c, func() { c.cancel(true, Canceled, nil) }
net
net.go#L444: func (canceledError) Is(err error) bool { return err == context.Canceled }
net.go#L450: case context.Canceled:
net.go#L688: if errors.Is(err, context.DeadlineExceeded) || errors.Is(err, context.Canceled) {
net/http
h2_bundle.go#L1028: if !errors.Is(call.err, context.Canceled) && !errors.Is(call.err, context.DeadlineExceeded) {
 |
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. |