const time.Millisecond

37 uses

	time (current package)
		format.go#L1620: 	"ms": uint64(Millisecond),
		time.go#L937: 	Millisecond          = 1000 * Microsecond
		time.go#L938: 	Second               = 1000 * Millisecond
		time.go#L982: 		case u < uint64(Millisecond):

	crypto/tls
		handshake_client.go#L488: 		obfuscatedTicketAge: uint32(ticketAge/time.Millisecond) + session.ageAdd,
		handshake_client_tls13.go#L344: 			hello.pskIdentities[0].obfuscatedTicketAge = uint32(ticketAge/time.Millisecond) + hs.session.ageAdd

	github.com/jackc/pgx/v5/pgconn
		pgconn.go#L2013: 	ctx, cancel := context.WithTimeout(context.Background(), 1*time.Millisecond)
		pgconn.go#L2047: 	if pgConn.slowWriteTimer.Reset(15 * time.Millisecond) {
		pgconn.go#L2934: 		time.Sleep(100 * time.Millisecond)

	github.com/jackc/pgx/v5/pgxpool
		pool.go#L470: 	const healthCheckDelay = 500 * time.Millisecond
		pool.go#L523: 		case <-time.After(500 * time.Millisecond):

	go.uber.org/goleak
		options.go#L125: 		maxSleep:   100 * time.Millisecond,

	go.uber.org/zap
		time.go#L26: 	return t.UnixNano() / int64(time.Millisecond)

	go.uber.org/zap/zapcore
		encoder.go#L113: 	millis := float64(nanos) / float64(time.Millisecond)

	golang.org/x/net/http2
		transport.go#L1088: 	t := time.AfterFunc(250*time.Millisecond, cc.forceCloseConn)

	golang.org/x/net/trace
		trace.go#L577: 			{Cond: minCond(50 * time.Millisecond)},
		trace.go#L578: 			{Cond: minCond(100 * time.Millisecond)},
		trace.go#L579: 			{Cond: minCond(200 * time.Millisecond)},
		trace.go#L580: 			{Cond: minCond(500 * time.Millisecond)},

	google.golang.org/grpc
		server.go#L921: 					tempDelay = 5 * time.Millisecond
		stream.go#L719: 		dur = time.Millisecond * time.Duration(pushback)

	google.golang.org/grpc/balancer/pickfirst/pickfirstleaf
		pickfirstleaf.go#L95: 	connectionDelayInterval = 250 * time.Millisecond

	google.golang.org/grpc/internal/grpcutil
		encode_duration.go#L52: 	if d := div(t, time.Millisecond); d <= maxTimeoutValue {

	google.golang.org/grpc/internal/syscall
		syscall_linux.go#L82: 		err = syscall.SetsockoptInt(int(fd), syscall.IPPROTO_TCP, unix.TCP_USER_TIMEOUT, int(timeout/time.Millisecond))

	google.golang.org/grpc/internal/transport
		http_util.go#L175: 		return time.Millisecond, true

	log/slog
		handler.go#L629: 	t = t.Truncate(time.Millisecond).Add(time.Millisecond / 10)

	net
		dial.go#L296: 		return 300 * time.Millisecond

	net/http
		h2_bundle.go#L8426: 	t := time.AfterFunc(250*time.Millisecond, cc.forceCloseConn)
		server.go#L1770: var rstAvoidanceDelay = 500 * time.Millisecond
		server.go#L3128: const shutdownPollIntervalMax = 500 * time.Millisecond
		server.go#L3161: 	pollIntervalBase := time.Millisecond
		server.go#L3441: 					tempDelay = 5 * time.Millisecond
		transfer.go#L220: 	timer := time.NewTimer(200 * time.Millisecond)
		transport.go#L2693: var maxWriteWaitBeforeConnReuse = 50 * time.Millisecond

	runtime/pprof
		pprof.go#L928: 			time.Sleep(100 * time.Millisecond)

	testing
		testing.go#L1500: 		nextSleep = 1 * time.Millisecond