Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getCompleteMultipartUploadURL (0.31 sec)

  1. cmd/test-utils_test.go

    	return makeTestTargetURL(endPoint, bucketName, objectName, queryValues)
    }
    
    // return URL for completing multipart upload.
    // complete multipart upload request is sent after all parts are uploaded.
    func getCompleteMultipartUploadURL(endPoint, bucketName, objectName, uploadID string) string {
    	queryValue := url.Values{}
    	queryValue.Set("uploadId", uploadID)
    	return makeTestTargetURL(endPoint, bucketName, objectName, queryValue)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    			t.Fatalf("Error XML encoding of parts: <ERROR> %s.", err)
    		}
    		// Indicating that all parts are uploaded and initiating CompleteMultipartUpload.
    		req, err = newTestSignedRequestV4(http.MethodPost, getCompleteMultipartUploadURL("", bucketName, objectName, testCase.uploadID),
    			int64(len(completeBytes)), bytes.NewReader(completeBytes), testCase.accessKey, testCase.secretKey, nil)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. cmd/server_test.go

    	completeBytes, err := xml.Marshal(completeUploads)
    	c.Assert(err, nil)
    	// Indicating that all parts are uploaded and initiating CompleteMultipartUpload.
    	request, err = newTestSignedRequest(http.MethodPost, getCompleteMultipartUploadURL(s.endPoint, bucketName, objectName, uploadID),
    		int64(len(completeBytes)), bytes.NewReader(completeBytes), s.accessKey, s.secretKey, s.signer)
    	c.Assert(err, nil)
    	// Execute the complete multipart request.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
Back to top