func time.Unix

35 uses

	time (current package)
		time.go#L1655: func Unix(sec int64, nsec int64) Time {
		time.go#L1671: 	return Unix(msec/1e3, (msec%1e3)*1e6)
		time.go#L1677: 	return Unix(usec/1e6, (usec%1e6)*1e3)

	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_client.go#L444: 	if c.config.time().After(time.Unix(int64(session.useBy), 0)) {
		handshake_client.go#L485: 	ticketAge := c.config.time().Sub(time.Unix(int64(session.createdAt), 0))
		handshake_client_tls13.go#L343: 			ticketAge := c.config.time().Sub(time.Unix(int64(hs.session.createdAt), 0))
		handshake_server.go#L486: 	createdAt := time.Unix(int64(sessionState.createdAt), 0)
		handshake_server_tls13.go#L349: 		createdAt := time.Unix(int64(sessionState.createdAt), 0)

	github.com/gotd/td/mtproto
		handle_future_salts.go#L23: 	serverTime := time.Unix(int64(res.Now), 0)
		pfs.go#L38: 		wait := time.Unix(renewAt, 0).Sub(c.clock.Now())

	github.com/gotd/td/proto
		message_id.go#L86: 	return time.Unix(intPart, fracPart).UTC()

	github.com/gotd/td/tdp
		tdp.go#L65: 			b.WriteString(time.Unix(i, 0).UTC().Format(time.RFC3339))

	github.com/gotd/td/telegram/auth
		password.go#L139: 	retryDate := time.Unix(int64(r.Result.RetryDate), 0)
		password.go#L163: 		return time.Unix(int64(v.UntilDate), 0), nil

	github.com/gotd/td/telegram/auth/qrlogin
		token.go#L48: 		expires: time.Unix(int64(expires), 0),

	github.com/klauspost/compress/gzip
		gunzip.go#L198: 	hdr.ModTime = time.Unix(int64(le.Uint32(z.buf[4:8])), 0)

	github.com/refraction-networking/utls
		handshake_client.go#L494: 	if c.config.time().After(time.Unix(int64(session.useBy), 0)) {
		handshake_client.go#L535: 	ticketAge := c.config.time().Sub(time.Unix(int64(session.createdAt), 0))
		handshake_client_tls13.go#L364: 			ticketAge := c.config.time().Sub(time.Unix(int64(hs.session.createdAt), 0))
		handshake_server.go#L483: 	createdAt := time.Unix(int64(sessionState.createdAt), 0)
		handshake_server_tls13.go#L387: 		createdAt := time.Unix(int64(sessionState.createdAt), 0)

	go.opentelemetry.io/otel/trace/internal/telemetry
		span.go#L206: 			s.StartTime = time.Unix(0, v)
		span.go#L211: 			s.EndTime = time.Unix(0, v)
		span.go#L365: 			se.Time = time.Unix(0, v)

	golang.org/x/net/internal/socks
		client.go#L18: 	aLongTimeAgo = time.Unix(1, 0)

	net
		net.go#L527: 	aLongTimeAgo = time.Unix(1, 0)

	net/http
		fs.go#L614: var unixEpochTime = time.Unix(0, 0)
		http.go#L91: var aLongTimeAgo = time.Unix(1, 0)
		socks_bundle.go#L24: 	socksaLongTimeAgo = time.Unix(1, 0)

	os
		stat_linux.go#L16: 	fs.modTime = time.Unix(fs.sys.Mtim.Unix())
		stat_linux.go#L47: 	return time.Unix(fi.Sys().(*syscall.Stat_t).Atim.Unix())

	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)))