Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for lowerMethod (0.08 sec)

  1. src/net/http/client.go

    // provided (*Request).Method value.
    func urlErrorOp(method string) string {
    	if method == "" {
    		return "Get"
    	}
    	if lowerMethod, ok := ascii.ToLower(method); ok {
    		return method[:1] + lowerMethod[1:]
    	}
    	return method
    }
    
    // Do sends an HTTP request and returns an HTTP response, following
    // policy (such as redirects, cookies, auth) as configured on the
    // client.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
Back to top