func time.Date

24 uses

	time (current package)
		format.go#L1387: 		return Date(year, Month(month), day, hour, min, sec, nsec, z), nil
		format.go#L1391: 		t := Date(year, Month(month), day, hour, min, sec, nsec, UTC)
		format.go#L1409: 		t := Date(year, Month(month), day, hour, min, sec, nsec, UTC)
		format.go#L1430: 	return Date(year, Month(month), day, hour, min, sec, nsec, defaultLocation), nil
		format_rfc3339.go#L129: 	t := Date(year, Month(month), day, hour, min, sec, nsec, UTC)
		time.go#L1265: 	return Date(year+years, month+Month(months), day+days, hour, min, sec, int(t.nsec()), t.Location())
		time.go#L1734: func Date(year int, month Month, day, hour, min, sec, nsec int, loc *Location) Time {

	github.com/jackc/pgx/v5/pgtype
		builtin_wrappers.go#L485: 	*w = timeWrapper(time.Date(2000, 1, 1, int(hours), int(minutes), int(seconds), int(ns), time.UTC))
		date.go#L164: 		tUnix := time.Date(date.Time.Year(), date.Time.Month(), date.Time.Day(), 0, 0, 0, 0, time.UTC).Unix()
		date.go#L165: 		dateEpoch := time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC).Unix()
		date.go#L266: 		t := time.Date(2000, 1, int(1+dayOffset), 0, 0, 0, 0, time.UTC)
		date.go#L349: 	t := time.Date(int(year), time.Month(month), int(day), 0, 0, 0, 0, time.UTC)
		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#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#L77: 	midnight := time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, now.Location())