func internal/strconv.ParseInt
12 uses
internal/strconv (current package)
atoi.go#L171: func ParseInt(s string, base int, bitSize int) (i int64, err error) {
atoi.go#L244: i64, err := ParseInt(s, 10, 0)
internal/runtime/cgroup
cgroup.go#L64: val, err := strconv.ParseInt(string(buf), 10, 64)
cgroup.go#L92: quota, err := strconv.ParseInt(string(quotaStr), 10, 64)
cgroup.go#L97: period, err := strconv.ParseInt(string(periodStr), 10, 64)
runtime
mgcpacer.go#L1375: if n, err := strconv.ParseInt(p, 10, 32); err == nil {
proc.go#L922: if n, err := strconv.ParseInt(gogetenv("GOMAXPROCS"), 10, 32); err == nil && n > 0 {
runtime1.go#L542: if n, err := strconv.ParseInt(value, 10, 32); err == nil {
string.go#L423: n, err := strconv.ParseInt(s, 10, 64)
string.go#L438: n, err := strconv.ParseInt(s[:len(s)-1], 10, 64)
string.go#L469: n, err := strconv.ParseInt(s[:len(s)-3], 10, 64)
strconv
number.go#L138: x, err := strconv.ParseInt(s, base, bitSize)
 |
The pages are generated with Golds v0.8.4. (GOOS=linux 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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |