Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 157 for deleteRS (0.37 sec)

  1. pkg/controller/job/job_controller.go

    	}
    	if curPod.DeletionTimestamp != nil {
    		// when a pod is deleted gracefully it's deletion timestamp is first modified to reflect a grace period,
    		// and after such time has passed, the kubelet actually deletes it from the store. We receive an update
    		// for modification of the deletion timestamp and expect an job to create more pods asap, not wait
    		// until the kubelet actually deletes the pod.
    		jm.deletePod(logger, curPod, false)
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  2. cmd/xl-storage_test.go

    		expectedErr error
    	}{
    		// TestXLStorage case - 1.
    		// valid case with existing volume and file to delete.
    		{
    			srcVol:      "success-vol",
    			srcPath:     "success-file",
    			expectedErr: nil,
    		},
    		// TestXLStorage case - 2.
    		// The file was deleted in the last  case, so Delete should not fail.
    		{
    			srcVol:      "success-vol",
    			srcPath:     "success-file",
    			expectedErr: nil,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    	for k := range foundDirs {
    		delete(foundDirs, k)
    	}
    
    	// Populate into map
    	for _, k := range dirs {
    		foundDirs[k] = struct{}{}
    	}
    
    	// Delete all directories we expect to be there.
    	for _, dir := range wantDirs {
    		delete(foundDirs, dir)
    	}
    
    	// Nothing to delete
    	if len(foundDirs) == 0 {
    		return nil
    	}
    
    	// Delete excessive inline entries.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  4. pkg/proxy/nftables/proxier.go

    		if deleted > 0 {
    			proxier.logger.Info("Deleting stale nftables chains", "numChains", deleted)
    			err := proxier.nftables.Run(context.TODO(), tx)
    			if err != nil {
    				// We already deleted the entries from staleChains, but if
    				// the chains still exist, they'll just get added back
    				// (with a later timestamp) at the end of the sync.
    				proxier.logger.Error(err, "Unable to delete stale chains; will retry later")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  5. cmd/erasure-healing_test.go

    			expectedDangling: true,
    		},
    		{
    			name: "FileInfoDecided-case2-delete-marker",
    			metaArr: []FileInfo{
    				{},
    				{},
    				{},
    				{Deleted: true},
    			},
    			errs: []error{
    				errFileNotFound,
    				errFileNotFound,
    				errFileNotFound,
    				nil,
    			},
    			dataErrs:         nil,
    			expectedMeta:     FileInfo{Deleted: true},
    			expectedDangling: true,
    		},
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    						t.Fatalf("GuaranteedUpdate failed: %v", err)
    					}
    				} else {
    					err := store.Delete(ctx, key, out, nil, storage.ValidateAllObjectFunc, nil)
    					if err != nil {
    						t.Fatalf("Delete failed: %v", err)
    					}
    				}
    				if watchTest.expectEvent {
    					expectObj := out
    					if watchTest.watchType == watch.Deleted {
    						expectObj = prevObj
    						expectObj.ResourceVersion = out.ResourceVersion
    					}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. docs/bucket/notifications/README.md

    When the _access_ format is used, MinIO appends events as documents in an Elasticsearch index. For each event, a document with the event details, with the timestamp of document set to the event's timestamp is appended to an index. The ID of the documented is randomly generated by Elasticsearch. No documents are deleted or modified in this format.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. cmd/bucket-handlers.go

    				apiErr.Description = "The bucket you tried to delete is not empty. You must delete all versions in the bucket."
    			}
    		}
    		writeErrorResponse(ctx, w, apiErr, r.URL)
    		return
    	}
    
    	if globalDNSConfig != nil {
    		if err := globalDNSConfig.Delete(bucket); err != nil {
    			dnsLogIf(ctx, fmt.Errorf("Unable to delete bucket DNS entry %w, please delete it manually, bucket on MinIO no longer exists", err))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    // - https://github.com/kubernetes/kubernetes/pull/40664
    //   [DONE] Irrelevant for delete, as Delete doesn't write data (nor compare it).
    // - https://github.com/kubernetes/kubernetes/pull/47703
    //   [DONE] Irrelevant for delete, because Delete doesn't persist data.
    // - https://github.com/kubernetes/kubernetes/pull/48394/
    //   [DONE] Irrelevant for delete, because Delete doesn't compare data.
    // - https://github.com/kubernetes/kubernetes/pull/43152
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    const (
    	// Orphans the dependents.
    	DeletePropagationOrphan DeletionPropagation = "Orphan"
    	// Deletes the object from the key-value store, the garbage collector will
    	// delete the dependents in the background.
    	DeletePropagationBackground DeletionPropagation = "Background"
    	// The object exists in the key-value store until the garbage collector
    	// deletes all the dependents whose ownerReference.blockOwnerDeletion=true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
Back to top