Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,550 for deleteRS (0.15 sec)

  1. cmd/xl-storage-format-v2.go

    		updateVersion = fi.MarkDeleted
    	} else {
    		// for replication scenario
    		if fi.Deleted && fi.VersionPurgeStatus() != Complete {
    			if !fi.VersionPurgeStatus().Empty() || fi.DeleteMarkerReplicationStatus().Empty() {
    				updateVersion = true
    			}
    		}
    		// object or delete-marker versioned delete is not complete
    		if !fi.VersionPurgeStatus().Empty() && fi.VersionPurgeStatus() != Complete {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. pkg/kubelet/pod/pod_manager.go

    	if kubetypes.IsMirrorPod(pod) {
    		mirrorPodUID := kubetypes.MirrorPodUID(pod.UID)
    		delete(pm.mirrorPodByUID, mirrorPodUID)
    		delete(pm.mirrorPodByFullName, podFullName)
    		delete(pm.translationByUID, mirrorPodUID)
    	} else {
    		delete(pm.podByUID, kubetypes.ResolvedPodUID(pod.UID))
    		delete(pm.podByFullName, podFullName)
    	}
    }
    
    func (pm *basicManager) GetPods() []*v1.Pod {
    	pm.lock.RLock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:00 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. pkg/volume/portworx/portworx.go

    		}}, nil
    }
    
    func (plugin *portworxVolumePlugin) NewDeleter(logger klog.Logger, spec *volume.Spec) (volume.Deleter, error) {
    	return plugin.newDeleterInternal(spec, plugin.util)
    }
    
    func (plugin *portworxVolumePlugin) newDeleterInternal(spec *volume.Spec, manager portworxManager) (volume.Deleter, error) {
    	if spec.PersistentVolume != nil && spec.PersistentVolume.Spec.PortworxVolume == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    		return reconcile.Result{}, err
    	}
    
    	deleted := iop.GetDeletionTimestamp() != nil
    	finalizers := sets.New(iop.GetFinalizers()...)
    	if deleted {
    		if !finalizers.Contains(finalizer) {
    			scope.Infof("IstioOperator %s deleted", iopName)
    			metrics.CRDeletionTotal.Increment()
    			return reconcile.Result{}, nil
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/provision_test.go

    			// No deleteCalls are configured, which results into no deleter plugin available for the volume
    			test: wrapTestWithProvisionCalls([]provisionCall{provision1Success}, testSyncClaim),
    		},
    		{
    			// Provision failure - cannot save provisioned PV five times,
    			// volume delete failed - deleter returns error five times
    			name:            "11-11 - cannot save provisioned volume, deleter fails",
    			initialVolumes:  novolumes,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  6. pkg/controller/tainteviction/taint_eviction_test.go

    						}
    						if podName == deleteAction.GetName() {
    							deleted = true
    						}
    					}
    					if !deleted {
    						t.Errorf("Failed to deleted pod %v after %v", podName, delay)
    					}
    				}
    				for _, action := range fakeClientset.Actions() {
    					deleteAction, ok := action.(clienttesting.DeleteActionImpl)
    					if !ok {
    						t.Logf("Found not-delete action with verb %v. Ignoring.", action.GetVerb())
    						continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  7. pkg/controller/namespace/namespace_controller.go

    	listerSynced cache.InformerSynced
    	// namespaces that have been queued up for processing by workers
    	queue workqueue.TypedRateLimitingInterface[string]
    	// helper to delete all resources in the namespace when the namespace is deleted.
    	namespacedResourcesDeleter deletion.NamespacedResourcesDeleterInterface
    }
    
    // NewNamespaceController creates a new NamespaceController
    func NewNamespaceController(
    	ctx context.Context,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. pkg/proxy/node.go

    		klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    	}
    }
    
    // OnNodeDelete is a handler for Node deletes.
    func (n *NodePodCIDRHandler) OnNodeDelete(node *v1.Node) {
    	n.logger.Error(nil, "Current Node is being deleted", "node", klog.KObj(node))
    }
    
    // OnNodeSynced is a handler for Node syncs.
    func (n *NodePodCIDRHandler) OnNodeSynced() {}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. 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)
  10. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

              "gracePeriodSeconds": {
                "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
                "format": "int64",
                "type": "integer"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
Back to top