const time.Millisecond

22 uses

	time (current package)
		format.go#L1363: 	"ms": int64(Millisecond),
		time.go#L604: 	Millisecond          = 1000 * Microsecond
		time.go#L605: 	Second               = 1000 * Millisecond
		time.go#L639: 		case u < uint64(Millisecond):

	crypto/tls
		handshake_client.go#L328: 	ticketAge := uint32(c.config.time().Sub(session.receivedAt) / time.Millisecond)
		handshake_client_tls13.go#L244: 			ticketAge := uint32(c.config.time().Sub(hs.session.receivedAt) / time.Millisecond)

	go.etcd.io/bbolt
		db.go#L36: 	DefaultMaxBatchDelay     = 10 * time.Millisecond
		db.go#L44: const flockRetryTimeout = 50 * time.Millisecond

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

	net/http
		server.go#L1715: const rstAvoidanceDelay = 500 * time.Millisecond
		server.go#L2708: const shutdownPollIntervalMax = 500 * time.Millisecond
		server.go#L2741: 	pollIntervalBase := time.Millisecond
		server.go#L2990: 					tempDelay = 5 * time.Millisecond
		transfer.go#L215: 	timer := time.NewTimer(200 * time.Millisecond)
		transport.go#L2420: const maxWriteWaitBeforeConnReuse = 50 * time.Millisecond

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

	src.elv.sh/pkg/cli/prompt
		prompt.go#L45: const defaultStaleThreshold = 200 * time.Millisecond

	src.elv.sh/pkg/cli/term
		read_rune.go#L15: var utf8SeqTimeout = 10 * time.Millisecond
		reader_unix.go#L46: var keySeqTimeout = 10 * time.Millisecond

	src.elv.sh/pkg/edit/highlight
		highlight.go#L27: var MaxBlockForLate = 10 * time.Millisecond

	src.elv.sh/pkg/shell
		runtime.go#L27: 	daemonWaitPerLoop = 10 * time.Millisecond

	src.elv.sh/pkg/testutil
		scaled_ms.go#L16: 		float64(ms) * float64(time.Millisecond) * getTestTimeScale())