Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 654 for purged (0.17 sec)

  1. docs/bucket/lifecycle/README.md

    > if the DELETE marker modTime satisfies the `Expiration.Days` then all versions of the object are 
    > immediately purged.
    
    ```
    {
        "Rules": [
            {
                "ID": "Purge all versions of an expired object",
                "Status": "Enabled",
                "Filter": {
                    "Prefix": "users-uploads/"
                },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CacheTaskArchiveErrorIntegrationTest.groovy

            and:
            !localCache.hasCacheEntry(cacheKey)
        }
    
        def "corrupt archive loaded from local cache is purged"() {
            executer.withStacktraceEnabled()
    
            when:
            file("input.txt") << "data"
            buildFile << """
                apply plugin: "base"
                task customTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. internal/http/headers.go

    	// Header indicates if the delete marker should be preserved by client
    	MinIOSourceDeleteMarker = "x-minio-source-deletemarker"
    
    	// Header indicates if the delete marker version needs to be purged.
    	MinIOSourceDeleteMarkerDelete = "x-minio-source-deletemarker-delete"
    
    	// Header indicates permanent delete replication status.
    	MinIODeleteReplicationStatus = "X-Minio-Replication-Delete-Status"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. pkg/wasm/cache_test.go

    			},
    			wantFileName:    ociWasmFile,
    			wantVisitServer: false,
    		},
    		{
    			name: "purge OCI image on expiry",
    			initialCachedModules: map[moduleKey]cacheEntry{
    				{name: moduleNameFromURL(ociURLWithTag) + "-purged", checksum: dockerImageDigest}: {
    					modulePath:      ociWasmFile,
    					referencingURLs: sets.New(ociURLWithTag),
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. pkg/wasm/cache.go

    		ce.last = time.Now()
    		cacheHit = true
    		c.updateChecksum(key)
    		return ce, key.checksum
    	}
    	return nil, key.checksum
    }
    
    // Purge periodically clean up the stale Wasm modules local file and the cache map.
    func (c *LocalFileCache) purge() {
    	ticker := time.NewTicker(c.PurgeInterval)
    	defer ticker.Stop()
    	for {
    		select {
    		case <-ticker.C:
    			c.mux.Lock()
    			for k, m := range c.modules {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. cmd/storage-datatypes.go

    // Provides information about the final state of Rename()
    //   - on xl.meta (array of versions) on disk to check for version disparity
    //   - on rewrite dataDir on disk that must be additionally purged
    //     only after as a 2-phase call, allowing the older dataDir to
    //     hang-around in-case we need some form of recovery.
    type RenameDataResp struct {
    	Sign       []byte
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. docs/sts/ldap.md

    - find accounts (user DNs) that have been removed; any active STS credentials or MinIO service accounts belonging to these users are purged.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. cmd/erasure-multipart.go

    // AbortMultipartUpload - aborts an ongoing multipart operation
    // signified by the input uploadID. This is an atomic operation
    // doesn't require clients to initiate multiple such requests.
    //
    // All parts are purged from all disks and reference to the uploadID
    // would be removed from the system, rollback is not possible on this
    // operation.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. pkg/controller/namespace/deletion/namespaced_resources_deleter.go

    		return false, nil
    	}
    
    	// namespace controller does not want the garbage collector to insert the orphan finalizer since it calls
    	// resource deletions generically.  it will ensure all resources in the namespace are purged prior to releasing
    	// namespace itself.
    	background := metav1.DeletePropagationBackground
    	opts := metav1.DeleteOptions{PropagationPolicy: &background}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	KillPod bool
    	// Whether need to create a new sandbox. If needed to kill pod and create
    	// a new pod sandbox, all init containers need to be purged (i.e., removed).
    	CreateSandbox bool
    	// The id of existing sandbox. It is used for starting containers in ContainersToStart.
    	SandboxID string
    	// The attempt number of creating sandboxes for the pod.
    	Attempt uint32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top