Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getCompleteMultipartUploadURL (0.16 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 Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 01 22:13:18 UTC 2024
    - 77K 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, testObject, uploadID),
    		int64(len(completeBytes)), bytes.NewReader(completeBytes), credentials.AccessKey, credentials.SecretKey, nil)
    	if err != nil {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 20:10:44 UTC 2024
    - 163.2K 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 Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 15 16:28:02 UTC 2024
    - 116.3K bytes
    - Viewed (0)
Back to top