const time.Hour

28 uses

	time (current package)
		format.go#L1503: 	"h":  uint64(Hour),
		time.go#L613: 	Hour                 = 60 * Minute
		time.go#L768: 	hour := d / Hour
		time.go#L769: 	nsec := d % Hour

	crypto/tls
		common.go#L747: 	ticketKeyLifetime = 7 * 24 * time.Hour // 7 days
		common.go#L751: 	ticketKeyRotation = 24 * time.Hour
		common.go#L779: const maxSessionTicketLifetime = 7 * 24 * time.Hour

	github.com/go-pg/pg/v10/internal/pool
		pool.go#L21: 		t := time.NewTimer(time.Hour)

	github.com/robfig/cron/v3
		cron.go#L257: 			timer = time.NewTimer(100000 * time.Hour)
		spec.go#L127: 				t = t.Add(time.Duration(24-t.Hour()) * time.Hour)
		spec.go#L129: 				t = t.Add(time.Duration(-t.Hour()) * time.Hour)
		spec.go#L143: 		t = t.Add(1 * time.Hour)

	go.pact.im/x/flaky
		schedule.go#L84: 		next = next.Add(24 * time.Hour)

	golang.org/x/net/internal/timeseries
		timeseries.go#L24: 	1 * time.Hour,
		timeseries.go#L25: 	6 * time.Hour,
		timeseries.go#L26: 	24 * time.Hour,          // 1 day
		timeseries.go#L27: 	7 * 24 * time.Hour,      // 1 week
		timeseries.go#L28: 	4 * 7 * 24 * time.Hour,  // 4 weeks
		timeseries.go#L29: 	16 * 7 * 24 * time.Hour, // 16 weeks

	golang.org/x/net/trace
		events.go#L36: 	{1 * time.Hour, "errs<1h"},
		events.go#L37: 	{10 * time.Hour, "errs<10h"},
		events.go#L38: 	{24000 * time.Hour, "errors"},

	google.golang.org/grpc/internal/grpcutil
		encode_duration.go#L62: 	return strconv.FormatInt(div(t, time.Hour), 10) + "H"

	google.golang.org/grpc/internal/transport
		defaults.go#L38: 	defaultServerKeepaliveTime    = 2 * time.Hour
		http2_server.go#L859: 	defaultPingTimeout = 2 * time.Hour
		http_util.go#L183: 		return time.Hour, true
		http_util.go#L217: 	const maxHours = math.MaxInt64 / int64(time.Hour)
		http_util.go#L218: 	if d == time.Hour && t > maxHours {