time.Time.Day (method)

11 uses

	time (current package)
		format.go#L542: 	buf = appendInt(buf, t.Day(), 0)
		time.go#L499: func (t Time) Day() int {

	github.com/robfig/cron/v3
		spec.go#L120: 			t = time.Date(t.Year(), t.Month(), t.Day(), 0, 0, 0, 0, loc)
		spec.go#L133: 		if t.Day() == 1 {
		spec.go#L141: 			t = time.Date(t.Year(), t.Month(), t.Day(), t.Hour(), 0, 0, 0, loc)
		spec.go#L181: 		domMatch bool = 1<<uint(t.Day())&s.Dom > 0

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

	golang.org/x/net/trace
		events.go#L301: 	return t.Sub(prev), prev.Day() != t.Day()
		trace.go#L773: 	return t.Sub(prev), prev.Day() != t.Day()