var time.Local
17 uses
time (current package)
format.go#L607: case Local:
format.go#L1026: if t, ok := parseRFC3339(value, Local); ok {
format.go#L1030: return parse(layout, value, UTC, Local)
format_rfc3339.go#L156: t, ok := parseRFC3339(b, Local)
time.go#L1343: return Time{uint64(nsec), sec + unixToInternal, Local}
time.go#L1351: return Time{uint64(nsec), sec + minWall, Local}
time.go#L1353: return Time{hasMonotonic | uint64(sec)<<nsecShift | uint64(nsec), mono, Local}
time.go#L1357: return Time{uint64(nsec), sec + unixToInternal, Local}
time.go#L1368: t.setLoc(Local)
time.go#L1557: } else if _, localoff, _, _, _ := Local.lookup(t.unixSec()); offset == localoff {
time.go#L1558: t.setLoc(Local)
zoneinfo.go#L84: var Local *Location = &localLoc
zoneinfo.go#L668: return Local, nil
github.com/robfig/cron/v3
cron.go#L124: location: time.Local,
parser.go#L94: var loc = time.Local
spec.go#L74: if loc == time.Local {
spec.go#L77: if s.Location != time.Local {