func time.Date

12 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#L1261: 	return Date(year+years, month+Month(months), day+days, hour, min, sec, int(t.nsec()), t.Location())
		time.go#L1727: 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#L77: 	midnight := time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, now.Location())