Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for pathUnescape (0.1 sec)

  1. api/go1.8.txt

    pkg net, type Buffers [][]uint8
    pkg net, type Dialer struct, Resolver *Resolver
    pkg net, type Resolver struct
    pkg net, type Resolver struct, PreferGo bool
    pkg net/url, func PathEscape(string) string
    pkg net/url, func PathUnescape(string) (string, error)
    pkg net/url, method (*URL) Hostname() string
    pkg net/url, method (*URL) MarshalBinary() ([]uint8, error)
    pkg net/url, method (*URL) Port() string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 05:25:57 UTC 2016
    - 16.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/proxy.go

    	}
    	return nil
    }
    
    // pathEscape escapes s so it can be used in a path.
    // That is, it escapes things like ? and # (which really shouldn't appear anyway).
    // It does not escape / to %2F: our REST API is designed so that / can be left as is.
    func pathEscape(s string) string {
    	return strings.ReplaceAll(url.PathEscape(s), "%2F", "/")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 15:21:05 UTC 2023
    - 13K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"EscapeError", Type, 0},
    		{"InvalidHostError", Type, 6},
    		{"JoinPath", Func, 19},
    		{"Parse", Func, 0},
    		{"ParseQuery", Func, 0},
    		{"ParseRequestURI", Func, 0},
    		{"PathEscape", Func, 8},
    		{"PathUnescape", Func, 8},
    		{"QueryEscape", Func, 0},
    		{"QueryUnescape", Func, 0},
    		{"URL", Type, 0},
    		{"URL.ForceQuery", Field, 7},
    		{"URL.Fragment", Field, 0},
    		{"URL.Host", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top