time.Time.Unix (method)

14 uses

	time (current package)
		time.go#L1428: func (t Time) Unix() int64 {
		time.go#L1678: 	_, _, _, _, isDST := t.loc.lookup(t.Unix())

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

	crypto/tls
		handshake_client_tls13.go#L898: 	session.useBy = uint64(c.config.time().Add(lifetime).Unix())
		ticket.go#L302: 		createdAt:        uint64(c.config.time().Unix()),

	github.com/google/go-cmp/cmp
		report_text.go#L18: var randBool = rand.New(rand.NewSource(time.Now().Unix())).Intn(2) == 0

	github.com/google/go-cmp/cmp/internal/diff
		diff.go#L122: var randBool = rand.New(rand.NewSource(time.Now().Unix())).Intn(2) == 0

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

	google.golang.org/protobuf/encoding/protojson
		well_known_types.go#L808: 	secs := t.Unix()

	google.golang.org/protobuf/types/known/timestamppb
		timestamp.pb.go#L195: 	return &Timestamp{Seconds: int64(t.Unix()), Nanos: int32(t.Nanosecond())}

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