Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for translation (0.43 sec)

  1. cmd/erasure-metadata_test.go

    		}
    		actual := fi.TransitionInfoEquals(ofi)
    		if i == 0 && !actual {
    			t.Fatalf("Test %d: Expected FileInfo's transition info to be equal: fi %v ofi %v", i, fi, ofi)
    		}
    		if i != 0 && actual {
    			t.Fatalf("Test %d: Expected FileInfo's transition info to be inequal: fi %v ofi %v", i, fi, ofi)
    		}
    	}
    	fi := FileInfo{
    		TransitionTier:      inputs[0].tier,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 26 00:31:12 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  2. docs/distributed/DECOMMISSION.md

    > Without a 'Complete' status any 'Active' or 'Draining' pool(s) are not allowed to be removed once configured.
    
    ## NOTE
    
    - Empty delete markers (such as for objects with no other successor versions) do not transition to the new pool to avoid creating empty metadata on the other pool(s). If you believe transitioning empty delete markers is required, open a GitHub issue.
    
    ## TODO
    
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Jul 11 14:59:49 GMT 2022
    - 8.3K bytes
    - Viewed (0)
  3. cmd/logging.go

    	logger.LogOnceIf(ctx, "internal", err, id, errKind...)
    }
    
    func transitionLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "transition", err, errKind...)
    }
    
    func configLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "config", err, errKind...)
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 16 15:43:39 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  4. cmd/bucket-lifecycle-handlers.go

    		return
    	}
    
    	// Validate the received bucket policy document
    	if err = bucketLifecycle.Validate(); err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	// Validate the transition storage ARNs
    	if err = validateTransitionTier(bucketLifecycle); err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	// Create a map of updated set of rules in request
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Nov 21 17:48:06 GMT 2023
    - 7K bytes
    - Viewed (0)
  5. internal/bucket/lifecycle/lifecycle_test.go

    			isDelMarker:    true,
    			expectedAction: DeleteVersionAction,
    		},
    		// Should transition immediately when Transition days is zero
    		{
    			inputConfig:    `<BucketLifecycleConfiguration><Rule><Filter></Filter><Status>Enabled</Status><Transition><Days>0</Days><StorageClass>S3TIER-1</StorageClass></Transition></Rule></BucketLifecycleConfiguration>`,
    			objectName:     "foodir/fooobject",
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:11:10 GMT 2024
    - 53.2K bytes
    - Viewed (0)
  6. docs/bucket/notifications/README.md

    | `s3:Replication:OperationNotTracked`               |
    | `s3:Replication:OperationMissedThreshold`          |
    | `s3:Replication:OperationReplicatedAfterThreshold` |
    
    | Supported ILM Transition Event Types |
    | :-----                               |
    | `s3:ObjectRestore:Post`              |
    | `s3:ObjectRestore:Completed`         |
    
    | Supported Global Event Types (Only supported through ListenNotification API) |
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 84K bytes
    - Viewed (2)
  7. docs/distributed/decom.sh

    ./mc admin tier add minio myminio TIER1 --endpoint http://localhost:9002 --access-key minioadmin --secret-key minioadmin --bucket tiered --prefix prefix5/
    ./mc ilm add myminio/bucket2 --transition-days 0 --transition-tier TIER1 --transition-days 0
    
    ## mirror some content to bucket2 and capture versions tiered
    ./mc mirror internal myminio/bucket2/ --quiet >/dev/null
    ./mc ls -r myminio/bucket2/ >bucket2_ns.txt
    Shell Script
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  8. internal/bucket/lifecycle/noncurrentversion.go

    		return err
    	}
    	*n = NoncurrentVersionTransition(val)
    	n.set = true
    	return nil
    }
    
    // IsNull returns true if NoncurrentTransition doesn't refer to any storage-class.
    // Note: It supports immediate transition, i.e zero noncurrent days.
    func (n NoncurrentVersionTransition) IsNull() bool {
    	return n.StorageClass == ""
    }
    
    // Validate returns an error with wrong value
    func (n NoncurrentVersionTransition) Validate() error {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Dec 14 17:41:44 GMT 2021
    - 5.3K bytes
    - Viewed (1)
  9. cmd/erasure-sets.go

    	set := s.getHashedSet(object)
    	return set.AbortMultipartUpload(ctx, bucket, object, uploadID, opts)
    }
    
    // CompleteMultipartUpload - completes a pending multipart transaction, on hashedSet based on object name.
    func (s *erasureSets) CompleteMultipartUpload(ctx context.Context, bucket, object, uploadID string, uploadedParts []CompletePart, opts ObjectOptions) (objInfo ObjectInfo, err error) {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 37.7K bytes
    - Viewed (5)
  10. cmd/handler-api.go

    		globalReplicationPool.ResizeWorkerPriority(cfg.ReplicationPriority, cfg.ReplicationMaxWorkers)
    	}
    	t.replicationPriority = cfg.ReplicationPriority
    	t.replicationMaxWorkers = cfg.ReplicationMaxWorkers
    
    	// N B api.transition_workers will be deprecated
    	if globalTransitionState != nil {
    		globalTransitionState.UpdateWorkers(cfg.TransitionWorkers)
    	}
    	t.transitionWorkers = cfg.TransitionWorkers
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 10K bytes
    - Viewed (0)
Back to top