time.Time.In (method)

8 uses

	time (current package)
		time.go#L1103: func (t Time) In(loc *Location) Time {

	github.com/robfig/cron/v3
		cron.go#L265: 				now = now.In(c.location)
		cron.go#L318: 	return time.Now().In(c.location)
		spec.go#L78: 		t = t.In(s.Location)
		spec.go#L174: 	return t.In(origLocation)

	go.pact.im/x/flaky
		schedule.go#L76: 	now = now.In(t.loc)
		schedule.go#L87: 	return next.In(nowLoc)

	go.uber.org/zap/zapcore
		field.go#L152: 			enc.AddTime(f.Key, time.Unix(0, f.Integer).In(f.Interface.(*time.Location)))