Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ForceQuery (1.1 sec)

  1. cmd/endpoint.go

    	// - Scheme field must contain "http" or "https"
    	// - All field should be empty except Host and Path.
    	isURLOk := (u.Scheme == "http" || u.Scheme == "https") &&
    		u.User == nil && u.Opaque == "" && !u.ForceQuery &&
    		u.RawQuery == "" && u.Fragment == ""
    	return isURLOk
    }
    
    // NewEndpoint - returns new endpoint based on given arguments.
    func NewEndpoint(arg string) (ep Endpoint, e error) {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Mar 30 00:56:02 UTC 2025
    - 34.4K bytes
    - Viewed (0)
Back to top