const google.golang.org/grpc.maxInt
7 uses
google.golang.org/grpc (current package)
rpc_util.go#L513: if int64(length) > int64(maxInt) {
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)
service_config.go#L36: const maxInt = int(^uint(0) >> 1)
service_config.go#L321: if *m.MaxRequestMessageBytes > int64(maxInt) {
service_config.go#L322: mc.MaxReqSize = newInt(maxInt)
service_config.go#L328: if *m.MaxResponseMessageBytes > int64(maxInt) {
service_config.go#L329: mc.MaxRespSize = newInt(maxInt)
![]() |
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. |