const math.MaxUint32

4 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

	github.com/gotd/td/session/tdesktop
		file.go#L162: 	if uint64(length) > uint64(math.MaxUint32) {

	net/http
		h2_bundle.go#L4232: 		clientMaxStreams:            math.MaxUint32, // Section 6.5.2: "Initially, there is no limit to this value"