func time.Unix
12 uses
time (current package)
time.go#L1292: func Unix(sec int64, nsec int64) Time {
compress/gzip
gunzip.go#L192: hdr.ModTime = time.Unix(t, 0)
gzip.go#L157: if z.ModTime.After(time.Unix(0, 0)) {
crypto/tls
handshake_server.go#L381: createdAt := time.Unix(int64(hs.sessionState.createdAt), 0)
handshake_server_tls13.go#L279: createdAt := time.Unix(int64(sessionState.createdAt), 0)
net
net.go#L490: aLongTimeAgo = time.Unix(1, 0)
net/http
fs.go#L522: var unixEpochTime = time.Unix(0, 0)
http.go#L30: var aLongTimeAgo = time.Unix(1, 0)
socks_bundle.go#L24: socksaLongTimeAgo = time.Unix(1, 0)
os
stat_darwin.go#L45: return time.Unix(int64(ts.Sec), int64(ts.Nsec))
runtime/debug
garbage.go#L50: stats.LastGC = time.Unix(0, int64(stats.Pause[n]))
garbage.go#L61: stats.PauseEnd = append(stats.PauseEnd, time.Unix(0, int64(ns)))