time.Time.Hour (method)

16 uses

	time (current package)
		time.go#L881: func (t Time) Hour() int {

	github.com/jackc/pgx/v5/pgtype
		builtin_wrappers.go#L491: 	usec := int64(t.Hour())*microsecondsPerHour +
		timestamp.go#L214: 			t = time.Date(year, t.Month(), t.Day(), t.Hour(), t.Minute(), t.Second(), t.Nanosecond(), time.UTC)
		timestamp.go#L236: 		return time.Date(t.Year(), t.Month(), t.Day(), t.Hour(), t.Minute(), t.Second(), t.Nanosecond(), time.UTC)
		timestamp.go#L286: 			tim = time.Date(tim.Year(), tim.Month(), tim.Day(), tim.Hour(), tim.Minute(), tim.Second(), tim.Nanosecond(), plan.location)
		timestamp.go#L323: 			tim = time.Date(year, tim.Month(), tim.Day(), tim.Hour(), tim.Minute(), tim.Second(), tim.Nanosecond(), tim.Location())
		timestamp.go#L327: 			tim = time.Date(tim.Year(), tim.Month(), tim.Day(), tim.Hour(), tim.Minute(), tim.Second(), tim.Nanosecond(), plan.location)
		timestamptz.go#L213: 			t = time.Date(year, t.Month(), t.Day(), t.Hour(), t.Minute(), t.Second(), t.Nanosecond(), time.UTC)
		timestamptz.go#L324: 			tim = time.Date(year, tim.Month(), tim.Day(), tim.Hour(), tim.Minute(), tim.Second(), tim.Nanosecond(), tim.Location())

	github.com/robfig/cron/v3
		spec.go#L125: 		if t.Hour() != 0 {
		spec.go#L126: 			if t.Hour() > 12 {
		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#L138: 	for 1<<uint(t.Hour())&s.Hour == 0 {
		spec.go#L141: 			t = time.Date(t.Year(), t.Month(), t.Day(), t.Hour(), 0, 0, 0, loc)
		spec.go#L145: 		if t.Hour() == 0 {