Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cloneURLValues (0.13 sec)

  1. src/net/http/clone.go

    	"net/url"
    	_ "unsafe" // for linkname
    )
    
    // cloneURLValues should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/searKing/golang
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname cloneURLValues
    func cloneURLValues(v url.Values) url.Values {
    	if v == nil {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. cmd/bucket-policy.go

    		} else {
    			args[key] = values
    		}
    	}
    
    	cloneURLValues := make(url.Values, len(r.Form))
    	for k, v := range r.Form {
    		cloneURLValues[k] = v
    	}
    
    	for _, objLock := range []string{
    		xhttp.AmzObjectLockMode,
    		xhttp.AmzObjectLockLegalHold,
    		xhttp.AmzObjectLockRetainUntilDate,
    	} {
    		if values, ok := cloneURLValues[objLock]; ok {
    			args[strings.TrimPrefix(objLock, "X-Amz-")] = values
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. 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