Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for InvalidHostError (0.23 sec)

  1. api/go1.6.txt

    pkg net/http/httputil, type ReverseProxy struct, BufferPool BufferPool
    pkg net/url, method (*Error) Temporary() bool
    pkg net/url, method (*Error) Timeout() bool
    pkg net/url, method (InvalidHostError) Error() string
    pkg net/url, type InvalidHostError string
    pkg os/exec, type ExitError struct, Stderr []uint8
    pkg regexp, method (*Regexp) Copy() *Regexp
    pkg runtime/debug, func SetTraceback(string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 13 23:40:13 UTC 2016
    - 12.9K bytes
    - Viewed (0)
  2. 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)
  3. 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