func time.Date

18 uses

	time (current package)
		format.go#L1146: 		return Date(year, Month(month), day, hour, min, sec, nsec, z), nil
		format.go#L1150: 		t := Date(year, Month(month), day, hour, min, sec, nsec, UTC)
		format.go#L1167: 		t := Date(year, Month(month), day, hour, min, sec, nsec, UTC)
		format.go#L1187: 	return Date(year, Month(month), day, hour, min, sec, nsec, defaultLocation), nil
		time.go#L903: 	return Date(year+years, month+Month(months), day+days, hour, min, sec, int(t.nsec()), t.Location())
		time.go#L1342: func Date(year int, month Month, day, hour, min, sec, nsec int, loc *Location) Time {

	archive/zip
		reader.go#L384: 				epoch := time.Date(1601, time.January, 1, 0, 0, 0, 0, time.UTC)
		struct.go#L223: 	return time.Date(

	github.com/jackc/pgconn
		pgconn.go#L234: 		func() { pgConn.conn.SetDeadline(time.Date(1, 1, 1, 1, 1, 1, 1, time.UTC)) },
		pgconn.go#L842: 			func() { cancelConn.SetDeadline(time.Date(1, 1, 1, 1, 1, 1, 1, time.UTC)) },
		pgconn.go#L1706: 		func() { pgConn.conn.SetDeadline(time.Date(1, 1, 1, 1, 1, 1, 1, time.UTC)) },

	github.com/jackc/pgtype
		date.go#L143: 		t := time.Date(2000, 1, int(1+dayOffset), 0, 0, 0, 0, time.UTC)
		date.go#L183: 		tUnix := time.Date(src.Time.Year(), src.Time.Month(), src.Time.Day(), 0, 0, 0, 0, time.UTC).Unix()
		date.go#L184: 		dateEpoch := time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC).Unix()
		time.go#L90: 			*v = time.Date(2000, 1, 1, int(hours), int(minutes), int(seconds), int(ns), time.UTC)
		timestamp.go#L42: 		*dst = Timestamp{Time: time.Date(value.Year(), value.Month(), value.Day(), value.Hour(), value.Minute(), value.Second(), value.Nanosecond(), time.UTC), Status: Present}

	github.com/lib/pq
		encode.go#L443: 	t := time.Date(isoYear, time.Month(month), day,

	golang.org/x/pkgsite/internal/stdlib
		stdlib.go#L176: 	TestCommitTime = time.Date(2019, 9, 4, 1, 2, 3, 0, time.UTC)