func time.Now

41 uses

	time (current package)
		sleep.go#L187: 	case c.(chan Time) <- Now().Add(Duration(-delta)):
		time.go#L948: 	return Now().Sub(t)
		time.go#L958: 	return t.Sub(Now())
		time.go#L1159: func Now() Time {

	context
		context.go#L690: 	return WithDeadline(parent, time.Now().Add(timeout))
		context.go#L697: 	return WithDeadlineCause(parent, time.Now().Add(timeout), cause)

	crypto/tls
		common.go#L1053: 		t = time.Now
		conn.go#L1469: 		c.SetWriteDeadline(time.Now().Add(time.Second * 5))
		conn.go#L1473: 		c.SetWriteDeadline(time.Now())

	crypto/x509
		verify.go#L580: 		now = time.Now()

	github.com/coinbase/cdp-sdk/go/auth
		jwt.go#L37: 	now := time.Now()
		jwt.go#L64: 	now := time.Now()

	github.com/golang-jwt/jwt/v5
		validator.go#L99: 		now = time.Now()

	github.com/google/uuid
		time.go#L30: 	timeNow = time.Now // for testing

	log
		log.go#L207: 	now := time.Now() // get this early.

	net
		dial.go#L478: 	deadline := d.deadline(ctx, time.Now())
		dial.go#L620: 			partialDeadline, err := partialDeadline(time.Now(), deadline, len(ras)-i)
		dnsclient_unix.go#L181: 		ctx, cancel := context.WithDeadline(ctx, time.Now().Add(timeout))
		dnsclient_unix.go#L377: 	conf.lastChecked = time.Now()
		dnsclient_unix.go#L400: 	now := time.Now()
		hosts.go#L53: 	now := time.Now()
		interface.go#L210: 	now := time.Now()
		nss.go#L44: 	conf.lastChecked = time.Now()
		nss.go#L58: 	now := time.Now()

	net/http
		client.go#L194: 		return time.Now().Add(c.Timeout)
		client.go#L367: 		return cancelCtx, func() bool { return time.Now().After(deadline) }
		h2_bundle.go#L4003: 	return time.Now()
		h2_bundle.go#L7649: 			sew.conn.SetWriteDeadline(time.Now().Add(sew.timeout))
		h2_bundle.go#L8812: 		cc.lastActive = time.Now()
		h2_bundle.go#L9360: 	cc.lastActive = time.Now()
		h2_bundle.go#L9363: 		cc.lastIdle = time.Now()
		server.go#L1028: 	t0 := time.Now()
		server.go#L1038: 			c.rwc.SetWriteDeadline(time.Now().Add(d))
		server.go#L1509: 		setHeader.date = appendTime(cw.res.dateBuf[:0], time.Now())
		server.go#L1884: 	packedState := uint64(time.Now().Unix()<<8) | uint64(state)
		server.go#L1967: 			dl := time.Now().Add(tlsTO)
		server.go#L2118: 			c.rwc.SetReadDeadline(time.Now().Add(d))
		server.go#L3109: 		if st == StateNew && unixSec < time.Now().Unix()-5 {
		transport.go#L1089: 	pconn.idleAt = time.Now()
		transport.go#L1118: 		oldTime = time.Now().Add(-t.IdleConnTimeout)
		transport.go#L2813: 		logf(time.Now().Format(time.RFC3339Nano)+": "+format, args...)