func time.Date
11 uses
time (current package)
format.go#L1279: return Date(year, Month(month), day, hour, min, sec, nsec, z), nil
format.go#L1283: t := Date(year, Month(month), day, hour, min, sec, nsec, UTC)
format.go#L1300: t := Date(year, Month(month), day, hour, min, sec, nsec, UTC)
format.go#L1320: return Date(year, Month(month), day, hour, min, sec, nsec, defaultLocation), nil
time.go#L909: return Date(year+years, month+Month(months), day+days, hour, min, sec, int(t.nsec()), t.Location())
time.go#L1402: func Date(year int, month Month, day, hour, min, sec, nsec int, loc *Location) Time {
github.com/robfig/cron/v3
spec.go#L102: t = time.Date(t.Year(), t.Month(), 1, 0, 0, 0, 0, loc)
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/clock/fakeclock
fakeclock.go#L53: return Time(time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC))
go.pact.im/x/flaky
schedule.go#L78: midnight := time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, now.Location())