Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for badSetPath (0.08 sec)

  1. src/net/url/url.go

    // Notable members of the hall of shame include:
    //   - github.com/sagernet/sing
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname badSetPath net/url.(*URL).setPath
    func (u *URL) setPath(p string) error {
    	path, err := unescape(p, encodePath)
    	if err != nil {
    		return err
    	}
    	u.Path = path
    	if escp := escape(path, encodePath); p == escp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
Back to top