const google.golang.org/grpc/codes.ResourceExhausted
16 uses
google.golang.org/grpc/codes (current package)
code_string.go#L41: case ResourceExhausted:
codes.go#L98: ResourceExhausted Code = 8
codes.go#L207: `"RESOURCE_EXHAUSTED"`: ResourceExhausted,
google.golang.org/grpc
rpc_util.go#L514: return 0, nil, status.Errorf(codes.ResourceExhausted, "grpc: received message larger than max length allowed on current machine (%d vs. %d)", length, maxInt)
rpc_util.go#L517: return 0, nil, status.Errorf(codes.ResourceExhausted, "grpc: received message larger than max (%d vs. %d)", length, maxReceiveMessageSize)
rpc_util.go#L543: return nil, status.Errorf(codes.ResourceExhausted, "grpc: message too large (%d bytes)", len(b))
rpc_util.go#L665: return nil, status.Errorf(codes.ResourceExhausted, "grpc: received message larger than max (%d vs. %d)", size, maxReceiveMessageSize)
server.go#L996: return status.Errorf(codes.ResourceExhausted, "grpc: trying to send message larger than max (%d vs. %d)", len(payload), s.opts.maxSendMessageSize)
server.go#L1499: if err := t.WriteStatus(stream, status.New(codes.ResourceExhausted, errDesc)); err != nil {
stream.go#L729: return status.Errorf(codes.ResourceExhausted, "trying to send message larger than max (%d vs. %d)", len(payload), *cs.callInfo.maxSendMessageSize)
stream.go#L1198: return status.Errorf(codes.ResourceExhausted, "trying to send message larger than max (%d vs. %d)", len(payld), *as.callInfo.maxSendMessageSize)
stream.go#L1441: return status.Errorf(codes.ResourceExhausted, "trying to send message larger than max (%d vs. %d)", len(payload), ss.maxSendMessageSize)
google.golang.org/grpc/internal/transport
http_util.go#L64: http2.ErrCodeFlowControl: codes.ResourceExhausted,
http_util.go#L72: http2.ErrCodeEnhanceYourCalm: codes.ResourceExhausted,
http_util.go#L80: codes.ResourceExhausted: http2.ErrCodeEnhanceYourCalm,
go.opencensus.io/plugin/ocgrpc
stats_common.go#L193: case codes.ResourceExhausted:
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |