Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for metaMap (0.15 sec)

  1. cmd/postpolicyform.go

    		default:
    			checkHeader[key] = value
    		}
    	}
    	// map to store the metadata
    	metaMap := make(map[string]string)
    	for _, policy := range postPolicyForm.Conditions.Policies {
    		if strings.HasPrefix(policy.Key, "$x-amz-meta-") {
    			formCanonicalName := http.CanonicalHeaderKey(strings.TrimPrefix(policy.Key, "$"))
    			metaMap[formCanonicalName] = policy.Value
    		}
    	}
    	// Check if any extra metadata field is passed as input
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 19 16:45:54 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    	// function type for creating signed requests - used to repeat
    	// requests with V2 and V4 signing.
    	type testSignedReqFn func(method, urlStr string, contentLength int64,
    		body io.ReadSeeker, accessKey, secretKey string, metamap map[string]string) (*http.Request,
    		error)
    
    	mkGetReq := func(oi ObjectInput, byteRange string, i int, mkSignedReq testSignedReqFn) {
    		object := oi.objectName
    		rec := httptest.NewRecorder()
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
Back to top