const math.MaxInt64

20 uses

	math (current package)
		const.go#L50: 	MaxInt64  = 1<<63 - 1           // 9223372036854775807

	math/big
		float.go#L819: 		return math.MaxInt64, Below
		float.go#L828: 		return math.MaxInt64, Below

	go.uber.org/zap
		field.go#L37: 	_maxTimeInt64 = time.Unix(0, math.MaxInt64)

	golang.org/x/net/http2
		config.go#L111: 	setDefault(&conf.PingTimeout, 1, math.MaxInt64, 15*time.Second)

	golang.org/x/net/trace
		histogram.go#L302: 			upperBound = math.MaxInt64

	google.golang.org/grpc
		rpc_util.go#L907: 		if limit := int64(maxReceiveMessageSize); limit < math.MaxInt64 {

	google.golang.org/grpc/internal/serviceconfig
		duration.go#L117: 	const maxSeconds = math.MaxInt64 / int64(time.Second)
		duration.go#L118: 	const maxNanosAtMaxSeconds = math.MaxInt64 % int64(time.Second)
		duration.go#L123: 		*d = Duration(math.MaxInt64)

	google.golang.org/grpc/internal/transport
		defaults.go#L31: 	infinity                      = time.Duration(math.MaxInt64)
		http_util.go#L203: 	const maxHours = math.MaxInt64 / uint64(time.Hour)
		http_util.go#L206: 		return time.Duration(math.MaxInt64), nil

	google.golang.org/protobuf/types/known/durationpb
		duration.pb.go#L184: 			return time.Duration(math.MaxInt64)

	mime/multipart
		formdata.go#L97: 	if maxFileMemoryBytes == math.MaxInt64 {
		formdata.go#L105: 			maxMemoryBytes = math.MaxInt64

	net/http
		h2_bundle.go#L1136: 	http2setDefault(&conf.PingTimeout, 1, math.MaxInt64, 15*time.Second)

	net/textproto
		reader.go#L170: 		lim = math.MaxInt64
		reader.go#L502: 	return readMIMEHeader(r, math.MaxInt64, math.MaxInt64)