func strconv.Itoa
47 uses
strconv (current package)
atoi.go#L56: return &NumError{fn, stringslite.Clone(str), errors.New("invalid base " + Itoa(base))}
atoi.go#L60: return &NumError{fn, stringslite.Clone(str), errors.New("invalid bit size " + Itoa(bitSize))}
itoa.go#L34: func Itoa(i int) string {
crypto
crypto.go#L64: return "unknown hash value " + strconv.Itoa(int(h))
crypto.go#L134: panic("crypto: requested hash function #" + strconv.Itoa(int(h)) + " is unavailable")
crypto/aes
cipher.go#L27: return "crypto/aes: invalid key size " + strconv.Itoa(int(k))
crypto/des
cipher.go#L20: return "crypto/des: invalid key size " + strconv.Itoa(int(k))
crypto/ed25519
ed25519.go#L100: return nil, errors.New("ed25519: bad Ed25519ph message hash length: " + strconv.Itoa(l))
ed25519.go#L103: return nil, errors.New("ed25519: bad Ed25519ph context length: " + strconv.Itoa(l))
ed25519.go#L110: return nil, errors.New("ed25519: bad Ed25519ctx context length: " + strconv.Itoa(l))
ed25519.go#L171: panic("ed25519: bad seed length: " + strconv.Itoa(l))
ed25519.go#L212: panic("ed25519: bad private key length: " + strconv.Itoa(l))
ed25519.go#L286: return errors.New("ed25519: bad Ed25519ph message hash length: " + strconv.Itoa(l))
ed25519.go#L289: return errors.New("ed25519: bad Ed25519ph context length: " + strconv.Itoa(l))
ed25519.go#L297: return errors.New("ed25519: bad Ed25519ctx context length: " + strconv.Itoa(l))
ed25519.go#L315: panic("ed25519: bad public key length: " + strconv.Itoa(l))
crypto/rc4
rc4.go#L26: return "crypto/rc4: invalid key size " + strconv.Itoa(int(k))
crypto/tls
alert.go#L106: return "tls: alert(" + strconv.Itoa(int(e)) + ")"
crypto/x509
parser.go#L409: return errors.New("x509: cannot parse IP address of length " + strconv.Itoa(len(data)))
x509.go#L259: return strconv.Itoa(int(algo))
x509.go#L283: return strconv.Itoa(int(algo))
github.com/apapsch/go-jsonmerge/v2
merge.go#L67: ret[i] = m.mergeValue(path, patchObject, strconv.Itoa(i), val)
github.com/oapi-codegen/runtime
deepobject.go#L25: newPath := append(path, strconv.Itoa(i))
deepobject.go#L343: indexStr := strconv.Itoa(i)
net/http
h2_bundle.go#L3192: err = errors.New("invalid base " + strconv.Itoa(base))
h2_bundle.go#L3520: return strconv.Itoa(code)
h2_bundle.go#L6508: clen = strconv.Itoa(len(p))
h2_bundle.go#L7157: codeStr = strconv.Itoa(int(code))
response.go#L251: text = "status code " + strconv.Itoa(r.StatusCode)
response.go#L256: text = strings.TrimPrefix(text, strconv.Itoa(r.StatusCode)+" ")
socks_bundle.go#L78: return nil, errors.New("unexpected protocol version " + strconv.Itoa(int(b[0])))
socks_bundle.go#L119: return nil, errors.New("unexpected protocol version " + strconv.Itoa(int(b[0])))
socks_bundle.go#L142: return nil, errors.New("unknown address type " + strconv.Itoa(int(b[3])))
socks_bundle.go#L186: return "socks " + strconv.Itoa(int(cmd))
socks_bundle.go#L217: return "unknown code: " + strconv.Itoa(int(code))
socks_bundle.go#L253: port := strconv.Itoa(a.Port)
socks_bundle.go#L472: return errors.New("unsupported authentication method " + strconv.Itoa(int(auth)))
reflect
type.go#L468: return "kind" + strconv.Itoa(int(k))
type.go#L971: return "ChanDir" + strconv.Itoa(int(d))
type.go#L2368: panic("reflect.StructOf: field " + strconv.Itoa(i) + " has no name")
type.go#L2371: panic("reflect.StructOf: field " + strconv.Itoa(i) + " has invalid name")
type.go#L2374: panic("reflect.StructOf: field " + strconv.Itoa(i) + " has no type")
type.go#L2796: s := "[" + strconv.Itoa(length) + "]" + stringFor(typ)
regexp/syntax
prog.go#L299: pc := strconv.Itoa(j)
regexp.go#L263: b.WriteString("<invalid op" + strconv.Itoa(int(re.Op)) + ">")
regexp.go#L354: b.WriteString(strconv.Itoa(re.Min))
regexp.go#L358: b.WriteString(strconv.Itoa(re.Max))
 |
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. |