- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,019 for _objects (0.09 sec)
-
cmd/object-api-deleteobject_test.go
[]objectUpload{{"object0", "content"}, {"dir/object1", "content"}}, "dir/object1", []string{"object0"}, }, // Test 3: remove an object inside a directory and checks if it is deleted // but other sibling object in the same directory still exists { "bucket3", []objectUpload{{"dir/object1", "content"}, {"dir/object2", "content"}}, "dir/object1", []string{"dir/object2"}, },
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 29 01:40:52 UTC 2024 - 4.1K bytes - Viewed (0) -
cmd/erasure-object.go
func (er erasureObjects) DeleteObjects(ctx context.Context, bucket string, objects []ObjectToDelete, opts ObjectOptions) ([]DeletedObject, []error) { if !opts.NoAuditLog { for _, obj := range objects { auditObjectErasureSet(ctx, "DeleteObjects", obj.ObjectV.ObjectName, &er) } } errs := make([]error, len(objects)) dobjects := make([]DeletedObject, len(objects))
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 78.8K bytes - Viewed (0) -
cmd/object-handlers.go
// do an additional verification whether object exists when object is deletemarker and request // is from replication if opts.CheckDMReplicationReady { topts := opts topts.VersionID = "" goi, gerr := getObjectInfo(ctx, bucket, object, topts) if gerr == nil || goi.VersionID != "" { // object layer returned more info because object is deleted w.Header().Set(xhttp.MinIOTargetReplicationReady, "true")
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 05 05:16:15 UTC 2024 - 117.4K bytes - Viewed (0) -
cmd/object-api-interface.go
AskDisks string // dictates how many disks are being listed VersionsSort WalkVersionsSortOrder // sort order for versions of the same object; default: Ascending order in ModTime Limit int // maximum number of items, 0 means no limit } // ExpirationOptions represents object options for object expiration at objectLayer. type ExpirationOptions struct {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 22 21:57:20 UTC 2024 - 17.3K bytes - Viewed (0) -
cmd/object-handlers_test.go
// Read last byte of object fmt.Sprintf("bytes=-%d", 1), // Read all but first byte of object "bytes=1-", // Read first half of object fmt.Sprintf("bytes=%d-%d", 0, objLen/2), // Read last half of object fmt.Sprintf("bytes=-%d", objLen/2), // Read middle half of object fmt.Sprintf("bytes=%d-%d", objLen/4, objLen*3/4), // Read 100MiB of the object from the beginning
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 12 20:10:44 UTC 2024 - 163.2K bytes - Viewed (0) -
docs/site-replication/run-sse-kms-object-replication.sh
fi # List the objects from replicated site echo "Objects from replicated instance" ./mc ls minio2/test-bucket --insecure repcount1=$(./mc ls minio2/test-bucket/encrypted --insecure | wc -l) if [ "${repcount1}" -ne 1 ]; then echo "BUG: object test-bucket/encrypted not replicated" exit_1 fi repcount2=$(./mc ls minio2/test-bucket/mpartobj --insecure | wc -l) if [ "${repcount2}" -ne 1 ]; then
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 10 06:49:55 UTC 2024 - 11.5K bytes - Viewed (0) -
cmd/object-multipart-handlers.go
if !globalTierConfigMgr.Empty() { // Get appropriate object info to identify the remote object to delete goiOpts := os.GetOpts() if goi, gerr := objectAPI.GetObjectInfo(ctx, bucket, object, goiOpts); gerr == nil { os.SetTransitionState(goi.TransitionedObject) } } opts, err := completeMultipartOpts(ctx, r, bucket, object) if err != nil { writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Aug 31 18:25:48 UTC 2024 - 39.2K bytes - Viewed (0) -
docs/site-replication/run-ssec-object-replication-with-compression.sh
# List the objects from replicated site echo "Objects from replicated instance" ./mc ls minio2/test-bucket --insecure repcount1=$(./mc ls minio2/test-bucket/plainfile --insecure | wc -l) if [ "${repcount1}" -ne 1 ]; then echo "BUG: object test-bucket/plainfile not replicated" exit_1 fi repcount2=$(./mc ls minio2/test-bucket/encrypted --insecure | wc -l) if [ "${repcount2}" -ne 1 ]; then
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 08:03:58 UTC 2024 - 8.3K bytes - Viewed (0) -
docs/site-replication/run-ssec-object-replication.sh
fi # List the objects from replicated site echo "Objects from replicated instance" ./mc ls minio2/test-bucket --insecure repcount1=$(./mc ls minio2/test-bucket/plainfile --insecure | wc -l) if [ "${repcount1}" -ne 1 ]; then echo "BUG: object test-bucket/plainfile not replicated" exit_1 fi repcount2=$(./mc ls minio2/test-bucket/encrypted --insecure | wc -l) if [ "${repcount2}" -ne 1 ]; then
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 08:03:58 UTC 2024 - 9.9K bytes - Viewed (0) -
cmd/object-api-multipart_test.go
} // Asserting Object Name. if actualResult.Object != expectedResult.Object { t.Errorf("Test %d: %s: Expected Object name to be \"%s\", but instead found it to be \"%s\"", i+1, instanceType, expectedResult.Object, actualResult.Object) } // Asserting UploadID. if actualResult.UploadID != expectedResult.UploadID {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 09:42:21 UTC 2024 - 88.8K bytes - Viewed (0)