func internal/itoa.Itoa
26 uses
internal/itoa (current package)
itoa.go#L10: func Itoa(val int) string {
internal/poll
fd_unix.go#L389: panic("invalid return from write: got " + itoa.Itoa(n) + " from a write of " + itoa.Itoa(max-nn))
net
dnsclient_unix.go#L563: return "hostLookupOrder=" + itoa.Itoa(int(o)) + "??"
tcpsock.go#L50: return JoinHostPort(ip+"%"+a.Zone, itoa.Itoa(a.Port))
tcpsock.go#L52: return JoinHostPort(ip, itoa.Itoa(a.Port))
udpsock.go#L53: return JoinHostPort(ip+"%"+a.Zone, itoa.Itoa(a.Port))
udpsock.go#L55: return JoinHostPort(ip, itoa.Itoa(a.Port))
net/netip
netip.go#L685: return Prefix{}, errors.New("prefix length " + itoa.Itoa(b) + " too large for IPv4")
netip.go#L690: return Prefix{}, errors.New("prefix length " + itoa.Itoa(b) + " too large for IPv6")
netip.go#L1549: return p.ip.String() + "/" + itoa.Itoa(p.Bits())
os
exec_posix.go#L120: res = "exit status " + itoa.Itoa(code) // unix
exec_posix.go#L127: res += " (trap " + itoa.Itoa(status.TrapCause()) + ")"
reflect
value.go#L3791: panic("reflect: cannot convert slice with length " + itoa.Itoa(v.Len()) + " to pointer to array with length " + itoa.Itoa(n))
value.go#L3801: panic("reflect: cannot convert slice with length " + itoa.Itoa(v.Len()) + " to array with length " + itoa.Itoa(n))
syscall
exec_linux.go#L667: data = append(data, itoa.Itoa(im.ContainerID)+" "+itoa.Itoa(im.HostID)+" "+itoa.Itoa(im.Size)+"\n"...)
exec_linux.go#L696: sgf := "/proc/" + itoa.Itoa(pid) + "/setgroups"
exec_linux.go#L721: uidf := "/proc/" + itoa.Itoa(pid) + "/uid_map"
exec_linux.go#L732: gidf := "/proc/" + itoa.Itoa(pid) + "/gid_map"
syscall_linux.go#L368: return Utimes("/proc/self/fd/"+itoa.Itoa(fd), tv)
syscall_unix.go#L117: return "errno " + itoa.Itoa(int(e))
syscall_unix.go#L179: return "signal " + itoa.Itoa(int(s))
![]() |
The pages are generated with Golds v0.7.6. (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. |