net/url.URL.RawPath (field)
11 uses
net/url (current package)
url.go#L368: RawPath string // encoded path hint (see EscapedPath method)
url.go#L681: u.RawPath = ""
url.go#L683: u.RawPath = p
url.go#L698: if u.RawPath != "" && validEncoded(u.RawPath, encodePath) {
url.go#L699: p, err := unescape(u.RawPath, encodePath)
url.go#L701: return u.RawPath
net/http
server.go#L2171: rp := strings.TrimPrefix(r.URL.RawPath, prefix)
server.go#L2172: if len(p) < len(r.URL.Path) && (r.URL.RawPath == "" || len(rp) < len(r.URL.RawPath)) {
server.go#L2178: r2.URL.RawPath = rp
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. |