net/url.URL.String (method, view implemented interface methods)
16 uses
net/url (current package)
url.go#L808: func (u *URL) String() string {
url.go#L872: return ru.String()
url.go#L1178: return []byte(u.String()), nil
url.go#L1263: result = url.JoinPath(elem...).String()
net/http
client.go#L160: referer := lastReq.String()
client.go#L1029: return strings.Replace(u.String(), u.User.String()+"@", u.User.Username()+":***@", 1)
client.go#L1031: return u.String()
fs.go#L164: fmt.Fprintf(w, "<a href=\"%s\">%s</a>\n", url.String(), htmlReplacer.Replace(name))
server.go#L2458: return RedirectHandler(u.String(), StatusMovedPermanently), u.Path
server.go#L2472: return RedirectHandler(u.String(), StatusMovedPermanently), u.Path
server.go#L2478: return RedirectHandler(u.String(), StatusMovedPermanently), pattern
transport.go#L1839: proxyStr = cm.proxyURL.String()
crypto/x509
verify.go#L421: return false, fmt.Errorf("URI with empty host (%q) cannot be matched against constraints", uri.String())
verify.go#L434: return false, fmt.Errorf("URI with IP (%q) cannot be matched against constraints", uri.String())
x509.go#L1075: uriStr := uri.String()
nhooyr.io/websocket
dial.go#L187: req, err := http.NewRequestWithContext(ctx, "GET", u.String(), nil)
|
The pages are generated with Golds v0.6.7. (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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |