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)