net/http.Request.URL (field)

744 uses

	net/http (current package)
		client.go#L172: 		for _, cookie := range c.Jar.Cookies(req.URL) {
		client.go#L182: 			c.Jar.SetCookies(req.URL, rc)
		client.go#L212: 	if req.URL == nil {
		client.go#L239: 	if u := req.URL.User; u != nil && req.Header.Get("Authorization") == "" {
		client.go#L602: 	if req.URL == nil {
		client.go#L628: 			urlStr = stripPassword(resp.Request.URL)
		client.go#L630: 			urlStr = stripPassword(req.URL)
		client.go#L647: 			u, err := req.URL.Parse(loc)
		client.go#L653: 			if req.Host != "" && req.Host != req.URL.Host {
		client.go#L665: 				URL:      u,
		client.go#L688: 			if ref := refererForURL(reqs[len(reqs)-1].URL, req.URL); ref != "" {
		client.go#L802: 			if shouldCopyHeaderOnRedirect(k, preq.URL, req.URL) {
		fs.go#L592: 	if strings.HasSuffix(r.URL.Path, indexPage) {
		fs.go#L615: 		url := r.URL.Path
		fs.go#L630: 		url := r.URL.Path
		fs.go#L686: 	if q := r.URL.RawQuery; q != "" {
		fs.go#L715: 	if containsDotDot(r.URL.Path) {
		fs.go#L845: 	upath := r.URL.Path
		fs.go#L848: 		r.URL.Path = upath
		h2_bundle.go#L5853: 		URL:        url_,
		h2_bundle.go#L7200: 	if !(req.URL.Scheme == "https" || (req.URL.Scheme == "http" && t.AllowHTTP)) {
		h2_bundle.go#L7204: 	addr := http2authorityAddr(req.URL.Scheme, req.URL.Host)
		h2_bundle.go#L8427: 	if req.URL == nil {
		h2_bundle.go#L8433: 		host = req.URL.Host
		h2_bundle.go#L8442: 		path = req.URL.RequestURI()
		h2_bundle.go#L8445: 			path = strings.TrimPrefix(path, req.URL.Scheme+"://"+host)
		h2_bundle.go#L8447: 				if req.URL.Opaque != "" {
		h2_bundle.go#L8448: 					return nil, fmt.Errorf("invalid request :path %q from URL.Opaque = %q", orig, req.URL.Opaque)
		h2_bundle.go#L8484: 			f(":scheme", req.URL.Scheme)
		request.go#L124: 	URL *url.URL
		request.go#L362: 	r2.URL = cloneURL(r.URL) // legacy behavior; TODO: try to remove. Issue 23544
		request.go#L379: 	r2.URL = cloneURL(r.URL)
		request.go#L497: 	return r.Method == "PRI" && len(r.Header) == 0 && r.URL.Path == "*" && r.Proto == "HTTP/2.0"
		request.go#L573: 		if r.URL == nil {
		request.go#L576: 		host = cleanHost(r.URL.Host)
		request.go#L584: 	ruri := r.URL.RequestURI()
		request.go#L585: 	if usingProxy && r.URL.Scheme != "" && r.URL.Opaque == "" {
		request.go#L586: 		ruri = r.URL.Scheme + "://" + host + ruri
		request.go#L587: 	} else if r.Method == "CONNECT" && r.URL.Path == "" {
		request.go#L590: 		if r.URL.Opaque != "" {
		request.go#L591: 			ruri = r.URL.Opaque
		request.go#L882: 		URL:        u,
		request.go#L1066: 	if req.URL, err = url.ParseRequestURI(rawurl); err != nil {
		request.go#L1072: 		req.URL.Scheme = ""
		request.go#L1092: 	req.Host = req.URL.Host
		request.go#L1272: 		if r.URL != nil {
		request.go#L1274: 			newValues, e = url.ParseQuery(r.URL.RawQuery)
		response.go#L142: 	if r.Request != nil && r.Request.URL != nil {
		response.go#L143: 		return r.Request.URL.Parse(lv)
		server.go#L2118: 		p := strings.TrimPrefix(r.URL.Path, prefix)
		server.go#L2119: 		rp := strings.TrimPrefix(r.URL.RawPath, prefix)
		server.go#L2120: 		if len(p) < len(r.URL.Path) && (r.URL.RawPath == "" || len(rp) < len(r.URL.RawPath)) {
		server.go#L2123: 			r2.URL = new(url.URL)
		server.go#L2124: 			*r2.URL = *r.URL
		server.go#L2125: 			r2.URL.Path = p
		server.go#L2126: 			r2.URL.RawPath = rp
		server.go#L2152: 			oldpath := r.URL.Path
		server.go#L2405: 		if u, ok := mux.redirectToPathSlash(r.URL.Host, r.URL.Path, r.URL); ok {
		server.go#L2409: 		return mux.handler(r.Host, r.URL.Path)
		server.go#L2415: 	path := cleanPath(r.URL.Path)
		server.go#L2419: 	if u, ok := mux.redirectToPathSlash(host, path, r.URL); ok {
		server.go#L2423: 	if path != r.URL.Path {
		server.go#L2425: 		u := &url.URL{Path: path, RawQuery: r.URL.RawQuery}
		server.go#L2429: 	return mux.handler(host, r.URL.Path)
		server.go#L2904: 	if req.URL != nil && strings.Contains(req.URL.RawQuery, ";") {
		server.go#L2935: 		if strings.Contains(r.URL.RawQuery, ";") {
		server.go#L2938: 			r2.URL = new(url.URL)
		server.go#L2939: 			*r2.URL = *r.URL
		server.go#L2940: 			r2.URL.RawQuery = strings.ReplaceAll(r.URL.RawQuery, ";", "&")
		transport.go#L440: 	return envProxyFunc()(req.URL)
		transport.go#L482: 	if req.URL.Scheme == "https" && req.requiresHTTP1() {
		transport.go#L500: 	return altProto[req.URL.Scheme]
		transport.go#L509: 	if req.URL == nil {
		transport.go#L517: 	scheme := req.URL.Scheme
		transport.go#L556: 	if req.URL.Host == "" {
		transport.go#L834: 	cm.targetScheme = treq.URL.Scheme
		transport.go#L835: 	cm.targetAddr = canonicalAddr(treq.URL)
		transport.go#L1674: 			URL:    &url.URL{Opaque: cm.targetAddr},

	net/http/httputil
		dump.go#L99: 	if req.URL.Scheme == "https" {
		dump.go#L102: 		reqSend.URL = new(url.URL)
		dump.go#L103: 		*reqSend.URL = *req.URL
		dump.go#L104: 		reqSend.URL.Scheme = "http"
		dump.go#L240: 		reqURI = req.URL.RequestURI()
		dump.go#L249: 		if host == "" && req.URL != nil {
		dump.go#L250: 			host = req.URL.Host
		reverseproxy.go#L147: 		req.URL.Scheme = target.Scheme
		reverseproxy.go#L148: 		req.URL.Host = target.Host
		reverseproxy.go#L149: 		req.URL.Path, req.URL.RawPath = joinURLPath(target, req.URL)
		reverseproxy.go#L150: 		if targetQuery == "" || req.URL.RawQuery == "" {
		reverseproxy.go#L151: 			req.URL.RawQuery = targetQuery + req.URL.RawQuery
		reverseproxy.go#L153: 			req.URL.RawQuery = targetQuery + "&" + req.URL.RawQuery

	net/http/pprof
		pprof.go#L195: 		b = bufio.NewReader(strings.NewReader(r.URL.RawQuery))
		pprof.go#L368: 	if strings.HasPrefix(r.URL.Path, "/debug/pprof/") {
		pprof.go#L369: 		name := strings.TrimPrefix(r.URL.Path, "/debug/pprof/")

	github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4
		host.go#L12: 	if port != "" && isDefaultPort(r.URL.Scheme, port) {
		host.go#L23: 	return r.URL.Host

	github.com/aws/aws-sdk-go-v2/aws/signer/v4
		middleware.go#L363: 	if sig := r.URL.Query().Get("X-Amz-Signature"); len(sig) != 0 {
		presign_middleware.go#L84: 			URL:          httpReq.URL.String(),
		v4.go#L144: 	query := req.URL.Query()
		v4.go#L171: 	host := req.URL.Host
		v4.go#L185: 	canonicalURI := v4Internal.GetURIPath(req.URL)
		v4.go#L211: 	req.URL.RawQuery = rawQuery.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#L273: 	query := req.URL.Query()
		v4a.go#L300: 	host := req.URL.Host
		v4a.go#L313: 	canonicalURI := v4Internal.GetURIPath(req.URL)
		v4a.go#L338: 	req.URL.RawQuery = rawQuery
		v4a.go#L508: 		signedURLMsg = fmt.Sprintf(logSignedURLMsg, r.Request.URL.String())

	github.com/aws/aws-sdk-go-v2/internal/v4a/internal/v4
		host.go#L12: 	if port != "" && isDefaultPort(r.URL.Scheme, port) {
		host.go#L23: 	return r.URL.Host

	github.com/aws/aws-sdk-go-v2/service/internal/s3shared
		update_endpoint.go#L61: 		parts := strings.Split(req.URL.Host, ".")
		update_endpoint.go#L63: 			return out, metadata, fmt.Errorf("unable to update endpoint host for dualstack, hostname invalid, %s", req.URL.Host)
		update_endpoint.go#L74: 		req.URL.Host = strings.Join(parts, ".")

	github.com/aws/aws-sdk-go-v2/service/s3
		api_op_WriteGetObjectResponse.go#L426: 	req.URL.Host = prefix.String() + req.URL.Host
		endpoints.go#L100: 	req.URL, err = url.Parse(endpoint.URL)
		serializers.go#L43: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L44: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L46: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L124: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L125: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L127: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L264: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L265: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L267: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L530: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L531: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L533: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L652: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L653: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L655: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L863: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L864: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L866: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L926: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L927: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L929: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L993: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L994: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L996: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L1056: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L1057: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L1059: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L1119: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L1120: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L1122: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L1181: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L1182: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L1184: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L1248: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L1249: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L1251: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L1311: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L1312: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L1314: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L1378: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L1379: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L1381: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L1441: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L1442: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L1444: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L1504: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L1505: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L1507: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L1567: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L1568: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L1570: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L1630: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L1631: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L1633: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L1693: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L1694: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L1696: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L1784: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L1785: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L1787: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L1891: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L1892: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L1894: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L1967: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L1968: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L1970: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L2030: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L2031: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L2033: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L2093: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L2094: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L2096: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L2156: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L2157: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L2159: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L2223: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L2224: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L2226: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L2286: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L2287: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L2289: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L2349: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L2350: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L2352: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L2411: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L2412: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L2414: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L2478: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L2479: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L2481: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L2541: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L2542: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L2544: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L2604: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L2605: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L2607: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L2667: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L2668: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L2670: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L2734: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L2735: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L2737: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L2797: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L2798: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L2800: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L2860: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L2861: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L2863: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L2923: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L2924: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L2926: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L2986: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L2987: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L2989: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L3049: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L3050: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L3052: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L3112: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L3113: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L3115: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L3175: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L3176: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L3178: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L3238: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L3239: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L3241: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L3301: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L3302: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L3304: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L3455: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L3456: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L3458: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L3536: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L3537: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L3539: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L3656: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L3657: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L3659: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L3737: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L3738: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L3740: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L3800: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L3801: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L3803: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L3881: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L3882: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L3884: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L3962: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L3963: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L3965: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L4039: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L4040: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L4042: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L4102: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L4103: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L4105: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L4165: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L4166: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L4168: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L4295: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L4296: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L4298: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L4362: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L4363: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L4365: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L4424: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L4425: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L4427: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L4491: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L4492: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L4494: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L4558: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L4559: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L4561: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L4603: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L4604: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L4606: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L4690: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L4691: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L4693: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L4778: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L4779: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L4781: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L4874: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L4875: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L4877: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L4961: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L4962: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L4964: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L5065: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L5066: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L5068: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L5157: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L5158: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L5160: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L5284: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L5285: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L5287: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L5375: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L5376: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L5378: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L5472: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L5473: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L5475: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L5569: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L5570: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L5572: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L5655: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L5656: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L5658: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L5746: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L5747: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L5749: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L5838: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L5839: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L5841: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L5935: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L5936: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L5938: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L6026: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L6027: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L6029: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L6118: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L6119: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L6121: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L6210: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L6211: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L6213: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L6300: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L6301: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L6303: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L6402: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L6403: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L6405: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L6499: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L6500: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L6502: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L6596: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L6597: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L6599: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L6698: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L6699: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L6701: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L6795: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L6796: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L6798: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L7048: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L7049: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L7051: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L7193: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L7194: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L7196: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L7308: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L7309: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L7311: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L7415: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L7416: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L7418: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L7535: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L7536: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L7538: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L7650: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L7651: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L7653: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L7747: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L7748: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L7750: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L7857: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L7858: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L7860: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L8041: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L8042: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L8044: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L8188: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L8189: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L8191: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)
		serializers.go#L8338: 	request.URL.Path = smithyhttp.JoinPath(request.URL.Path, opPath)
		serializers.go#L8339: 	request.URL.RawQuery = smithyhttp.JoinRawQuery(request.URL.RawQuery, opQuery)
		serializers.go#L8341: 	restEncoder, err := httpbinding.NewEncoder(request.URL.Path, request.URL.RawQuery, request.Header)

	github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations
		host.go#L17: 	host := req.URL.Host
		host.go#L20: 		req.URL.Host = newEndpointPrefix + host[len(oldEndpointPrefix):]
		presigned_expires.go#L44: 	query := req.URL.Query()
		presigned_expires.go#L46: 	req.URL.RawQuery = query.Encode()
		process_arn_resource.go#L275: 	req.URL, err = url.Parse(endpoint.URL)
		process_arn_resource.go#L340: 	req.URL, err = url.Parse(endpoint.URL)
		process_arn_resource.go#L434: 	req.URL, err = url.Parse(endpoint.URL)
		process_arn_resource.go#L443: 	req.URL.Host = accessPointHostPrefix + req.URL.Host
		process_arn_resource.go#L449: 	if err := http.ValidateEndpointHost(req.URL.Host); err != nil {
		process_arn_resource.go#L465: 	req.URL.Host = accessPointHostPrefix + req.URL.Host
		process_arn_resource.go#L471: 	if err := http.ValidateEndpointHost(req.URL.Host); err != nil {
		process_arn_resource.go#L516: 	req.URL, err = url.Parse(endpoint.URL)
		process_arn_resource.go#L553: 	req.URL.Host = outpostAPHostPrefix + req.URL.Host
		process_arn_resource.go#L559: 	if err := http.ValidateEndpointHost(req.URL.Host); err != nil {
		remove_bucket_middleware.go#L35: 	removeBucketFromPath(req.URL, bucket)
		s3_object_lambda.go#L68: 	req.URL, err = url.Parse(endpoint.URL)
		update_endpoint.go#L192: 	if !hostCompatibleBucketName(req.URL, bucket) {
		update_endpoint.go#L207: 		parts := strings.Split(req.URL.Host, ".")
		update_endpoint.go#L209: 			return fmt.Errorf("unable to update endpoint host for S3 accelerate, hostname invalid, %s", req.URL.Host)
		update_endpoint.go#L224: 		req.URL.Host = strings.Join(parts, ".")
		update_endpoint.go#L228: 	moveBucketNameToHost(req.URL, bucket)

	github.com/aws/smithy-go/encoding/httpbinding
		encode.go#L55: 	req.URL.Path, req.URL.RawPath = string(e.path), string(e.rawPath)
		encode.go#L56: 	req.URL.RawQuery = e.query.Encode()

	github.com/aws/smithy-go/transport/http
		request.go#L30: 			URL:           &url.URL{},
		request.go#L39: 	if r.URL == nil {
		request.go#L42: 	return strings.EqualFold(r.URL.Scheme, "https")

	golang.org/x/net/http2
		server.go#L2256: 		URL:        url_,
		transport.go#L548: 	if !(req.URL.Scheme == "https" || (req.URL.Scheme == "http" && t.AllowHTTP)) {
		transport.go#L552: 	addr := authorityAddr(req.URL.Scheme, req.URL.Host)
		transport.go#L1835: 	if req.URL == nil {
		transport.go#L1841: 		host = req.URL.Host
		transport.go#L1850: 		path = req.URL.RequestURI()
		transport.go#L1853: 			path = strings.TrimPrefix(path, req.URL.Scheme+"://"+host)
		transport.go#L1855: 				if req.URL.Opaque != "" {
		transport.go#L1856: 					return nil, fmt.Errorf("invalid request :path %q from URL.Opaque = %q", orig, req.URL.Opaque)
		transport.go#L1893: 			f(":scheme", req.URL.Scheme)

	golang.org/x/net/trace
		trace.go#L121: 	_, pat := http.DefaultServeMux.Handler(&http.Request{URL: &url.URL{Path: debugRequestsPath}})

	google.golang.org/grpc/internal/transport
		handler_server.go#L375: 		method:         req.URL.Path,
		proxy.go#L42: 		URL: &url.URL{
		proxy.go#L82: 		URL:    &url.URL{Host: backendAddr},