- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for Multipart (0.04 sec)
-
cmd/server_test.go
c.Assert(response2.StatusCode, http.StatusOK) // HTTP request for aborting the multipart upload. request, err = newTestSignedRequest(http.MethodDelete, getAbortMultipartUploadURL(s.endPoint, bucketName, objectName, uploadID), 0, nil, s.accessKey, s.secretKey, s.signer) c.Assert(err, nil) // execute the HTTP request to abort the multipart upload. response3, err := s.client.Do(request) c.Assert(err, nil)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 118.1K bytes - Viewed (0) -
cmd/object-handlers_test.go
) { var err error var opts ObjectOptions // object used for the test. objectName := "test-object-new-multipart" // upload IDs collected. var uploadIDs []string for range 2 { // initiate new multipart uploadID. res, err := obj.NewMultipartUpload(context.Background(), bucketName, objectName, opts) if err != nil {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 163.1K bytes - Viewed (0) -
cmd/bucket-replication.go
} rinfo.Duration = time.Since(startTime) }() rinfo.ReplicationStatus = replication.Completed rinfo.Size = size rinfo.ReplicationAction = rAction // use core client to avoid doing multipart on PUT c := &minio.Core{Client: tgt.Client} putOpts, isMP, err := putReplicationOpts(ctx, tgt.StorageClass, objInfo) if err != nil {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 118K bytes - Viewed (0) -
cmd/object-handlers.go
if srcChecksumDecrypted != nil { dstOpts.WantChecksum = hash.ChecksumFromBytes(srcChecksumDecrypted) // When an object is being copied from a source that is multipart, the destination will // no longer be multipart, and thus the checksum becomes full-object instead. Since // the CopyObject API does not require that the caller send us this final checksum, we need
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Sep 07 16:13:09 UTC 2025 - 120.6K bytes - Viewed (0)