const time.Millisecond

14 uses

	time (current package)
		format.go#L1606: 	"ms": uint64(Millisecond),
		time.go#L654: 	Millisecond          = 1000 * Microsecond
		time.go#L655: 	Second               = 1000 * Millisecond
		time.go#L699: 		case u < uint64(Millisecond):

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

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

	net/http
		h2_bundle.go#L8207: 	t := time.AfterFunc(250*time.Millisecond, cc.forceCloseConn)
		server.go#L1814: var rstAvoidanceDelay = 500 * time.Millisecond
		server.go#L3027: const shutdownPollIntervalMax = 500 * time.Millisecond
		server.go#L3060: 	pollIntervalBase := time.Millisecond
		server.go#L3337: 					tempDelay = 5 * time.Millisecond
		transfer.go#L219: 	timer := time.NewTimer(200 * time.Millisecond)
		transport.go#L2560: var maxWriteWaitBeforeConnReuse = 50 * time.Millisecond