time.Time.Month (method)

9 uses

	time (current package)
		format.go#L532: 	month := t.Month()
		format.go#L535: 		buf = append(buf, t.Month().String()...)
		time.go#L493: func (t Time) Month() Month {

	github.com/robfig/cron/v3
		spec.go#L97: 	for 1<<uint(t.Month())&s.Month == 0 {
		spec.go#L102: 			t = time.Date(t.Year(), t.Month(), 1, 0, 0, 0, 0, loc)
		spec.go#L107: 		if t.Month() == time.January {
		spec.go#L120: 			t = time.Date(t.Year(), t.Month(), t.Day(), 0, 0, 0, 0, loc)
		spec.go#L141: 			t = time.Date(t.Year(), t.Month(), t.Day(), t.Hour(), 0, 0, 0, loc)

	go.pact.im/x/flaky
		schedule.go#L78: 	midnight := time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, now.Location())