net/url.URL.String (method, view implemented interface methods)
26 uses
net/url (current package)
url.go#L830: func (u *URL) String() string {
url.go#L910: return ru.String()
url.go#L1222: return append(b, u.String()...), nil
url.go#L1307: result = url.JoinPath(elem...).String()
net/http
client.go#L159: referer := lastReq.String()
client.go#L1036: return strings.Replace(u.String(), u.User.String()+"@", u.User.Username()+":***@", 1)
client.go#L1038: return u.String()
fs.go#L170: fmt.Fprintf(w, "<a href=\"%s\">%s</a>\n", url.String(), htmlReplacer.Replace(name))
servemux121.go#L112: return RedirectHandler(u.String(), StatusMovedPermanently), u.Path
servemux121.go#L126: return RedirectHandler(u.String(), StatusMovedPermanently), u.Path
servemux121.go#L132: return RedirectHandler(u.String(), StatusMovedPermanently), pattern
server.go#L2672: return RedirectHandler(u.String(), StatusMovedPermanently), u.Path, nil, nil
server.go#L2688: return RedirectHandler(u.String(), StatusMovedPermanently), u.Path, nil, nil
server.go#L2697: return RedirectHandler(u.String(), StatusMovedPermanently), patStr, nil, nil
transport.go#L2007: proxyStr = cm.proxyURL.String()
crypto/x509
verify.go#L458: return false, fmt.Errorf("URI with empty host (%q) cannot be matched against constraints", uri.String())
verify.go#L473: return false, fmt.Errorf("URI with IP (%q) cannot be matched against constraints", uri.String())
x509.go#L1160: uriStr := uri.String()
github.com/aws/aws-sdk-go-v2/aws/signer/v4
presign_middleware.go#L84: URL: httpReq.URL.String(),
v4.go#L383: return signedRequest.Request.URL.String(), signedHeaders, nil
v4.go#L526: signedURLMsg = fmt.Sprintf(logSignedURLMsg, request.Request.URL.String())
github.com/aws/aws-sdk-go-v2/aws/transport/http
client.go#L261: if r.URL.String() == badHTTPRedirectLocation {
github.com/aws/aws-sdk-go-v2/internal/v4a
presign_middleware.go#L74: URL: httpReq.URL.String(),
v4a.go#L247: return signedRequest.Request.URL.String(), signedHeaders, nil
v4a.go#L508: signedURLMsg = fmt.Sprintf(logSignedURLMsg, r.Request.URL.String())
google.golang.org/grpc/internal/credentials
spiffe.go#L55: if len(uri.String()) > 2048 {