var context.Canceled
21 uses
context (current package)
context.go#L167: var Canceled = errors.New("context canceled")
context.go#L242: return c, func() { c.cancel(true, Canceled, nil) }
context.go#L270: return c, func(cause error) { c.cancel(true, Canceled, cause) }
context.go#L336: a.cancel(true, Canceled, nil)
context.go#L647: return c, func() { c.cancel(false, Canceled, nil) }
context.go#L656: return c, func() { c.cancel(true, Canceled, nil) }
github.com/jackc/pgx/v5/pgconn
errors.go#L155: case context.Canceled:
errors.go#L157: return context.Canceled
golang.org/x/net/http2
client_conn_pool.go#L293: if !errors.Is(call.err, context.Canceled) && !errors.Is(call.err, context.DeadlineExceeded) {
google.golang.org/grpc
clientconn.go#L1357: if !errors.Is(err, context.Canceled) {
clientconn.go#L1583: case errors.Is(err, context.Canceled):
picker_wrapper.go#L134: case context.Canceled:
rpc_util.go#L1129: var errContextCanceled = status.Error(codes.Canceled, context.Canceled.Error())
rpc_util.go#L1139: case context.Canceled:
google.golang.org/grpc/internal/transport
transport.go#L772: case context.Canceled:
google.golang.org/grpc/status
status.go#L158: if errors.Is(err, context.Canceled) {
net
net.go#L454: func (canceledError) Is(err error) bool { return err == context.Canceled }
net.go#L460: case context.Canceled:
net.go#L698: if errors.Is(err, context.DeadlineExceeded) || errors.Is(err, context.Canceled) {
net/http
h2_bundle.go#L1024: if !errors.Is(call.err, context.Canceled) && !errors.Is(call.err, context.DeadlineExceeded) {
net/http/httputil
reverseproxy.go#L732: if rerr != nil && rerr != io.EOF && rerr != context.Canceled {