Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for InvalidHostError (0.23 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)
Back to top