var context.Canceled

16 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#L330: 			a.cancel(true, Canceled, nil)
		context.go#L638: 		return c, func() { c.cancel(false, Canceled, nil) }
		context.go#L647: 	return c, func() { c.cancel(true, Canceled, nil) }

	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#L449: func (canceledError) Is(err error) bool { return err == context.Canceled }
		net.go#L455: 	case context.Canceled:
		net.go#L693: 	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) {

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