time.Time.Day (method)
20 uses
time (current package)
time.go#L827: func (t Time) Day() int {
github.com/jackc/pgx/v5/pgtype
date.go#L164: tUnix := time.Date(date.Time.Year(), date.Time.Month(), date.Time.Day(), 0, 0, 0, 0, time.UTC).Unix()
date.go#L211: if date.Time.Day() < 10 {
date.go#L214: buf = strconv.AppendInt(buf, int64(date.Time.Day()), 10)
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#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#L77: 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()