time.Time.Second (method)

11 uses

	time (current package)
		time.go#L891: func (t Time) Second() int {

	github.com/jackc/pgx/v5/pgtype
		builtin_wrappers.go#L493: 		int64(t.Second())*microsecondsPerSecond +
		timestamp.go#L214: 			t = time.Date(year, t.Month(), t.Day(), t.Hour(), t.Minute(), t.Second(), t.Nanosecond(), time.UTC)
		timestamp.go#L236: 		return time.Date(t.Year(), t.Month(), t.Day(), t.Hour(), t.Minute(), t.Second(), t.Nanosecond(), time.UTC)
		timestamp.go#L286: 			tim = time.Date(tim.Year(), tim.Month(), tim.Day(), tim.Hour(), tim.Minute(), tim.Second(), tim.Nanosecond(), plan.location)
		timestamp.go#L323: 			tim = time.Date(year, tim.Month(), tim.Day(), tim.Hour(), tim.Minute(), tim.Second(), tim.Nanosecond(), tim.Location())
		timestamp.go#L327: 			tim = time.Date(tim.Year(), tim.Month(), tim.Day(), tim.Hour(), tim.Minute(), tim.Second(), tim.Nanosecond(), plan.location)
		timestamptz.go#L213: 			t = time.Date(year, t.Month(), t.Day(), t.Hour(), t.Minute(), t.Second(), t.Nanosecond(), time.UTC)
		timestamptz.go#L324: 			tim = time.Date(year, tim.Month(), tim.Day(), tim.Hour(), tim.Minute(), tim.Second(), tim.Nanosecond(), tim.Location())

	github.com/robfig/cron/v3
		spec.go#L162: 	for 1<<uint(t.Second())&s.Second == 0 {
		spec.go#L169: 		if t.Second() == 0 {