var context.Canceled
12 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#L321: a.cancel(true, Canceled, nil)
context.go#L628: return c, func() { c.cancel(false, Canceled, nil) }
context.go#L637: return c, func() { c.cancel(true, Canceled, nil) }
github.com/gotd/td/internal/rpc
engine.go#L213: if errors.Is(err, context.Canceled) {
github.com/gotd/td/telegram
connect.go#L123: if closeErr := conn.Close(); !errors.Is(closeErr, context.Canceled) {
connect.go#L160: if err := g.Wait(); !errors.Is(err, context.Canceled) {
net
net.go#L422: func (canceledError) Is(err error) bool { return err == context.Canceled }
net.go#L428: case context.Canceled:
net/http
h2_bundle.go#L1024: if !errors.Is(call.err, context.Canceled) && !errors.Is(call.err, context.DeadlineExceeded) {
|
The pages are generated with Golds v0.6.7. (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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |