const time.Microsecond

9 uses

	time (current package)
		format.go#L1497: 	"us": uint64(Microsecond),
		format.go#L1498: 	"µs": uint64(Microsecond), // U+00B5 = micro symbol
		format.go#L1499: 	"μs": uint64(Microsecond), // U+03BC = Greek letter mu
		time.go#L609: 	Microsecond          = 1000 * Nanosecond
		time.go#L610: 	Millisecond          = 1000 * Microsecond
		time.go#L641: 		case u < uint64(Microsecond):

	go.uber.org/goleak
		options.go#L137: 	d := time.Duration(int(time.Microsecond) << uint(i))

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

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