const math.MaxFloat64

14 uses

	math (current package)
		bits.go#L51: 	return sign >= 0 && f > MaxFloat64 || sign <= 0 && f < -MaxFloat64
		const.go#L34: 	MaxFloat64             = 1.797693134862315708145274237317043567981e+308 // 2**1023 * (2**53 - 1) / 2**52
		j0.go#L109: 		if x < MaxFloat64/2 {
		j0.go#L201: 		if x < MaxFloat64/2 {
		j1.go#L108: 		if x < MaxFloat64/2 {
		j1.go#L185: 		if x < MaxFloat64/2 {
		remainder.go#L42: 		HalfMax = MaxFloat64 / 2

	encoding/gob
		decode.go#L332: 	if math.MaxFloat32 < av && av <= math.MaxFloat64 {

	github.com/beorn7/perks/quantile
		stream.go#L87: 		var m = math.MaxFloat64

	go.opencensus.io/stats/view
		aggregation_data.go#L137: 		Min:                math.MaxFloat64,

	go.opentelemetry.io/otel/api/metric
		number.go#L56: 		return NewFloat64Number(-1. * math.MaxFloat64)
		number.go#L69: 		return NewFloat64Number(math.MaxFloat64)

	reflect
		value.go#L1404: 	return math.MaxFloat32 < x && x <= math.MaxFloat64