Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for parseFrom (0.09 sec)

  1. src/net/http/request.go

    // application/x-www-form-urlencoded, the request Body is not read, and
    // r.PostForm is initialized to a non-nil, empty value.
    //
    // [Request.ParseMultipartForm] calls ParseForm automatically.
    // ParseForm is idempotent.
    func (r *Request) ParseForm() error {
    	var err error
    	if r.PostForm == nil {
    		if r.Method == "POST" || r.Method == "PUT" || r.Method == "PATCH" {
    			r.PostForm, err = parsePostForm(r)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. src/net/http/client_test.go

    		nonce        string // a unique per-request string
    		sawSlowNonce bool   // true if the handler saw /slow?nonce=<nonce>
    	)
    	cst := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		_ = r.ParseForm()
    		if r.URL.Path == "/" {
    			Redirect(w, r, "/slow?nonce="+r.Form.Get("nonce"), StatusFound)
    			return
    		}
    		if r.URL.Path == "/slow" {
    			mu.Lock()
    			if r.Form.Get("nonce") == nonce {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top