net/url.URL.String (method, view implemented interface methods)

19 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()

	google.golang.org/grpc/internal/credentials
		spiffe.go#L55: 		if len(uri.String()) > 2048 {