Source File
encode_duration.go
Belonging Package
google.golang.org/grpc/internal/grpcutil
package grpcutil
import (
)
const maxTimeoutValue int64 = 100000000 - 1
if <= 0 {
return "0n"
}
if := div(, time.Nanosecond); <= maxTimeoutValue {
return strconv.FormatInt(, 10) + "n"
}
if := div(, time.Microsecond); <= maxTimeoutValue {
return strconv.FormatInt(, 10) + "u"
}
if := div(, time.Millisecond); <= maxTimeoutValue {
return strconv.FormatInt(, 10) + "m"
}
if := div(, time.Second); <= maxTimeoutValue {
return strconv.FormatInt(, 10) + "S"
}
if := div(, time.Minute); <= maxTimeoutValue {
return strconv.FormatInt(, 10) + "M"
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |