func strings.Contains
25 uses
strings (current package)
strings.go#L62: func Contains(s, substr string) bool {
crypto/internal/impl
impl.go#L30: if strings.Contains(pkg, "/") {
crypto/x509
constraints.go#L584: if strings.Contains(host, ":") && !strings.HasSuffix(host, "]") {
parser.go#L627: if strings.Contains(constraint, "@") {
root_unix.go#L107: return err == nil && !strings.Contains(target, "/")
encoding/pem
pem.go#L258: if strings.Contains(k, ":") {
github.com/coder/websocket
accept.go#L245: if strings.Contains(hostPattern, "://") {
github.com/go-faster/errors
format.go#L43: if !Trace() || strings.Contains(format, "%w") {
github.com/gotd/td/tdp
tdp.go#L64: if i > min && i < max && strings.Contains(fieldName, "date") {
github.com/gotd/td/telegram
tdlib_json.go#L34: if !strings.Contains(fullName, ".") {
golang.org/x/net/proxy
per_host.go#L106: if strings.Contains(host, "/") {
net/http
cookie.go#L422: if net.ParseIP(v) != nil && !strings.Contains(v, ":") {
fs.go#L862: if !strings.Contains(v, "..") {
h2_bundle.go#L3500: if strings.Contains(e, "http2debug=1") {
h2_bundle.go#L3503: if strings.Contains(e, "http2debug=2") {
h2_bundle.go#L3508: if strings.Contains(e, "http2xconnect=1") {
h2_bundle.go#L7247: if !strings.Contains(v, ",") {
server.go#L1545: if !strings.Contains(v, ",") {
server.go#L2617: if !strings.Contains(h, ":") {
server.go#L3327: if strings.Contains(r.URL.RawQuery, ";") {
net/url
url.go#L479: if segment, _, _ := strings.Cut(rest, "/"); strings.Contains(segment, ":") {
url.go#L528: if !strings.Contains(userinfo, ":") {
url.go#L849: if segment, _, _ := strings.Cut(path, "/"); strings.Contains(segment, ":") {
url.go#L965: if strings.Contains(key, ";") {
path/filepath
match.go#L54: return !strings.Contains(name, string(Separator)), nil
 |
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. |