const time.Microsecond

9 uses

	time (current package)
		format.go#L1607: 	"us": uint64(Microsecond),
		format.go#L1608: 	"µs": uint64(Microsecond), // U+00B5 = micro symbol
		format.go#L1609: 	"μs": uint64(Microsecond), // U+03BC = Greek letter mu
		time.go#L932: 	Microsecond          = 1000 * Nanosecond
		time.go#L933: 	Millisecond          = 1000 * Microsecond
		time.go#L974: 		case u < uint64(Microsecond):

	go.uber.org/goleak
		options.go#L153: 	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#L177: 		return time.Microsecond, true