time.Time.Hour (method)

9 uses

	time (current package)
		format.go#L544: 	buf = appendInt(buf, t.Hour(), 0)
		time.go#L559: func (t Time) Hour() int {

	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 {