var context.Canceled

13 uses

	context (current package)
		context.go#L157: var Canceled = errors.New("context canceled")
		context.go#L238: 	return &c, func() { c.cancel(true, Canceled) }
		context.go#L450: 		return c, func() { c.cancel(false, Canceled) }
		context.go#L459: 	return c, func() { c.cancel(true, Canceled) }

	github.com/go-pg/pg/v10
		base.go#L187: 	case nil, context.Canceled, context.DeadlineExceeded:

	golang.org/x/net/http2
		client_conn_pool.go#L303: 	if !errors.Is(call.err, context.Canceled) && !errors.Is(call.err, context.DeadlineExceeded) {

	google.golang.org/grpc
		picker_wrapper.go#L121: 				case context.Canceled:
		rpc_util.go#L837: 	case context.Canceled:

	google.golang.org/grpc/internal/transport
		transport.go#L819: 	case context.Canceled:

	google.golang.org/grpc/status
		status.go#L131: 	if errors.Is(err, context.Canceled) {

	net
		net.go#L427: 	case context.Canceled:

	net/http
		h2_bundle.go#L1023: 	if !errors.Is(call.err, context.Canceled) && !errors.Is(call.err, context.DeadlineExceeded) {

	net/http/httputil
		reverseproxy.go#L463: 		if rerr != nil && rerr != io.EOF && rerr != context.Canceled {