time.Time.Unix (method)

9 uses

	time (current package)
		time.go#L1127: func (t Time) Unix() int64 {

	compress/gzip
		gzip.go#L160: 			le.PutUint32(z.buf[4:8], uint32(z.ModTime.Unix()))

	crypto/tls
		handshake_server.go#L717: 	createdAt := uint64(c.config.time().Unix())
		handshake_server_tls13.go#L743: 		createdAt:        uint64(c.config.time().Unix()),

	golang.org/x/sys/unix
		timestruct.go#L32: 	sec := t.Unix()

	net/http
		fs.go#L516: 	if t.Unix() == modtime.Unix() {
		server.go#L1764: 	packedState := uint64(time.Now().Unix()<<8) | uint64(state)
		server.go#L2796: 		if st == StateNew && unixSec < time.Now().Unix()-5 {