Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for InvalidHostError (0.16 sec)

  1. src/net/url/url.go

    	encodeQueryComponent
    	encodeFragment
    )
    
    type EscapeError string
    
    func (e EscapeError) Error() string {
    	return "invalid URL escape " + strconv.Quote(string(e))
    }
    
    type InvalidHostError string
    
    func (e InvalidHostError) Error() string {
    	return "invalid character " + strconv.Quote(string(e)) + " in host name"
    }
    
    // Return true if the specified character should be escaped when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*URL).UnmarshalBinary", Method, 8},
    		{"(*Userinfo).Password", Method, 0},
    		{"(*Userinfo).String", Method, 0},
    		{"(*Userinfo).Username", Method, 0},
    		{"(EscapeError).Error", Method, 0},
    		{"(InvalidHostError).Error", Method, 6},
    		{"(Values).Add", Method, 0},
    		{"(Values).Del", Method, 0},
    		{"(Values).Encode", Method, 0},
    		{"(Values).Get", Method, 0},
    		{"(Values).Has", Method, 17},
    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