Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for cloneURLValues (0.11 sec)

  1. src/net/http/request.go

    		r2.Trailer = r.Trailer.Clone()
    	}
    	if s := r.TransferEncoding; s != nil {
    		s2 := make([]string, len(s))
    		copy(s2, s)
    		r2.TransferEncoding = s2
    	}
    	r2.Form = cloneURLValues(r.Form)
    	r2.PostForm = cloneURLValues(r.PostForm)
    	r2.MultipartForm = cloneMultipartForm(r.MultipartForm)
    
    	// Copy matches and otherValues. See issue 61410.
    	if s := r.matches; s != nil {
    		s2 := make([]string, len(s))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top