Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Fontan (0.21 sec)

  1. cmd/endpoint.go

    	}
    
    	var isLocal bool
    	var host string
    	u, err := url.Parse(arg)
    	if err == nil && u.Host != "" {
    		// URL style of endpoint.
    		// Valid URL style endpoint is
    		// - Scheme field must contain "http" or "https"
    		// - All field should be empty except Host and Path.
    		if !((u.Scheme == "http" || u.Scheme == "https") &&
    			u.User == nil && u.Opaque == "" && !u.ForceQuery && u.RawQuery == "" && u.Fragment == "") {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 34.1K bytes
    - Viewed (0)
Back to top