const math.MaxUint32

26 uses

	math (current package)
		const.go#L50: 	MaxUint32 = 1<<32 - 1

	math/big
		float.go#L99: 	MaxPrec = math.MaxUint32 // largest (theoretically) supported precision; likely memory-limited

	encoding/gob
		dec_helpers.go#L413: 		if math.MaxUint32 < x {
		decode.go#L293: 	if math.MaxUint32 < v {

	github.com/go-redis/redis/v8
		cluster.go#L179: 	node.latency = math.MaxUint32

	github.com/jackc/pgtype
		convert.go#L271: 			} else if srcVal > math.MaxUint32 {
		numeric.go#L42: var bigMaxUint32 *big.Int = big.NewInt(math.MaxUint32)
		pguint32.go#L29: 		if value > math.MaxUint32 {

	golang.org/x/net/http2
		server.go#L383: 		clientMaxStreams:            math.MaxUint32, // Section 6.5.2: "Initially, there is no limit to this value"

	golang.org/x/pkgsite/internal/godoc/codec
		codec.go#L191: 	case u <= math.MaxUint32:

	google.golang.org/grpc
		rpc_util.go#L542: 	if uint(len(b)) > math.MaxUint32 {

	google.golang.org/grpc/internal/transport
		http2_client.go#L1058: 		*maxStreams = math.MaxUint32
		http2_client.go#L1145: 		upperLimit = math.MaxUint32 // Kill all streams after the GoAway ID.
		http2_server.go#L146: 		maxStreams = math.MaxUint32
		http2_server.go#L1191: 	if err := t.framer.fr.WriteGoAway(math.MaxUint32, http2.ErrCodeNo, []byte{}); err != nil {

	google.golang.org/protobuf/internal/impl
		codec_gen.go#L1026: 	*p.Int32() = int32(protowire.DecodeZigZag(v & math.MaxUint32))
		codec_gen.go#L1106: 	**vp = int32(protowire.DecodeZigZag(v & math.MaxUint32))
		codec_gen.go#L1161: 			s = append(s, int32(protowire.DecodeZigZag(v&math.MaxUint32)))
		codec_gen.go#L1185: 	*sp = append(*sp, int32(protowire.DecodeZigZag(v&math.MaxUint32)))
		codec_gen.go#L1267: 	return protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))), out, nil
		codec_gen.go#L1321: 			list.Append(protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))))
		codec_gen.go#L1344: 	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#L3949: 		clientMaxStreams:            math.MaxUint32, // Section 6.5.2: "Initially, there is no limit to this value"