const google.golang.org/grpc/codes.Canceled
15 uses
google.golang.org/grpc/codes (current package)
code_string.go#L35: case Canceled:
code_string.go#L76: case Canceled:
codes.go#L45: Canceled Code = 1
codes.go#L206: `"CANCELLED"`:/* [sic] */ Canceled,
google.golang.org/grpc
clientconn.go#L72: ErrClientConnClosing = status.Error(codes.Canceled, "grpc: the client connection is closing")
clientconn.go#L1645: return nil, status.Error(codes.Canceled, "the provided transport is no longer valid to use")
picker_wrapper.go#L135: return pick{}, status.Error(codes.Canceled, errStr)
rpc_util.go#L1129: var errContextCanceled = status.Error(codes.Canceled, context.Canceled.Error())
stream.go#L1381: as.finish(status.Error(codes.Canceled, "grpc: the SubConn is closing"))
google.golang.org/grpc/internal/transport
handler_server.go#L503: return status.Error(codes.Canceled, err.Error())
http2_client.go#L1288: if statusCode == codes.Canceled {
http_util.go#L63: http2.ErrCodeCancel: codes.Canceled,
transport.go#L773: return status.Error(codes.Canceled, err.Error())
google.golang.org/grpc/status
status.go#L159: return New(codes.Canceled, err.Error())
go.pact.im/x/grpcprocess
client.go#L84: codes.Canceled,