const math.MaxUint

3 uses

	math (current package)
		const.go#L52: 	MaxUint   = 1<<intSize - 1      // MaxUint32 or MaxUint64 depending on intSize.

	go.pact.im/x/flaky
		backoff.go#L59: 		if n == math.MaxUint {
		retry.go#L50: 	for n := uint(0); n < math.MaxUint; n++ {