time.Time.Location (method)

10 uses

	time (current package)
		format.go#L604: 	switch loc := t.Location(); loc {
		time.go#L1265: 	return Date(year+years, month+Month(months), day+days, hour, min, sec, int(t.nsec()), t.Location())
		time.go#L1393: func (t Time) Location() *Location {
		time.go#L1475: 	if t.Location() == UTC {

	github.com/jackc/pgx/v5/pgtype
		timestamp.go#L235: 	if t.Location() != time.UTC {
		timestamp.go#L321: 			tim = time.Date(year, tim.Month(), tim.Day(), tim.Hour(), tim.Minute(), tim.Second(), tim.Nanosecond(), tim.Location())
		timestamptz.go#L323: 			tim = time.Date(year, tim.Month(), tim.Day(), tim.Hour(), tim.Minute(), tim.Second(), tim.Nanosecond(), tim.Location())

	go.pact.im/x/flaky
		schedule.go#L74: 	nowLoc := now.Location()
		schedule.go#L77: 	midnight := time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, now.Location())

	log/slog
		value.go#L165: 		return Value{num: uint64(nsec), any: timeLocation(v.Location())}