const math.MaxUint32
28 uses
math (current package)
const.go#L55: MaxUint32 = 1<<32 - 1 // 4294967295
math/big
float.go#L99: MaxPrec = math.MaxUint32 // largest (theoretically) supported precision; likely memory-limited
go.pact.im/x/crypt
argon2.go#L108: if n <= 0 || n > math.MaxUint32 {
golang.org/x/net/http2
config.go#L97: setDefault(&conf.MaxConcurrentStreams, 1, math.MaxUint32, defaultMaxStreams)
config.go#L98: setDefault(&conf.MaxEncoderHeaderTableSize, 1, math.MaxUint32, initialHeaderTableSize)
config.go#L99: setDefault(&conf.MaxDecoderHeaderTableSize, 1, math.MaxUint32, initialHeaderTableSize)
server.go#L450: clientMaxStreams: math.MaxUint32, // Section 6.5.2: "Initially, there is no limit to this value"
google.golang.org/grpc
rpc_util.go#L726: if bufSize := uint(b.Len()); bufSize > math.MaxUint32 {
server.go#L186: maxConcurrentStreams: math.MaxUint32,
server.go#L450: n = math.MaxUint32
google.golang.org/grpc/internal/transport
http2_client.go#L1289: *maxStreams = math.MaxUint32
http2_client.go#L1378: upperLimit = math.MaxUint32 // Kill all streams after the GoAway ID.
http2_server.go#L177: if config.MaxStreams != math.MaxUint32 {
http2_server.go#L1420: if err := t.framer.fr.WriteGoAway(math.MaxUint32, http2.ErrCodeNo, g.debugData); err != nil {
google.golang.org/protobuf/internal/impl
codec_gen.go#L1044: *p.Int32() = int32(protowire.DecodeZigZag(v & math.MaxUint32))
codec_gen.go#L1124: **vp = int32(protowire.DecodeZigZag(v & math.MaxUint32))
codec_gen.go#L1188: s = append(s, int32(protowire.DecodeZigZag(v&math.MaxUint32)))
codec_gen.go#L1212: *sp = append(*sp, int32(protowire.DecodeZigZag(v&math.MaxUint32)))
codec_gen.go#L1294: return protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))), out, nil
codec_gen.go#L1348: list.Append(protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))))
codec_gen.go#L1371: list.Append(protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))))
google.golang.org/protobuf/proto
decode_gen.go#L59: return protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))), n, nil
decode_gen.go#L283: list.Append(protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))))
decode_gen.go#L294: list.Append(protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))))
net/http
h2_bundle.go#L1122: http2setDefault(&conf.MaxConcurrentStreams, 1, math.MaxUint32, http2defaultMaxStreams)
h2_bundle.go#L1123: http2setDefault(&conf.MaxEncoderHeaderTableSize, 1, math.MaxUint32, http2initialHeaderTableSize)
h2_bundle.go#L1124: http2setDefault(&conf.MaxDecoderHeaderTableSize, 1, math.MaxUint32, http2initialHeaderTableSize)
h2_bundle.go#L4497: clientMaxStreams: math.MaxUint32, // Section 6.5.2: "Initially, there is no limit to this value"