Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,553 for deleteRS (0.32 sec)

  1. pkg/controller/serviceaccount/tokens_controller.go

    	// syncSecretQueue handles secret events:
    	//   * deletes tokens whose service account no longer exists
    	//   * updates tokens with missing token or namespace data, or mismatched ca data
    	//   * ensures service account secret references are removed for tokens which are deleted
    	// key is a secretQueueKey{}
    	syncSecretQueue workqueue.TypedRateLimitingInterface[secretQueueKey]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultFileOperationsTest.groovy

            !result.didWork
        }
    
        def deletes() {
            def fileToBeDeleted = tmpDir.file("file")
            def fileCollection = Stub(FileCollectionInternal)
            fileCollectionFactory.resolving(["file"] as Object[]) >> fileCollection
            fileCollection.iterator() >> [fileToBeDeleted].iterator()
            fileToBeDeleted.touch()
    
            expect:
            fileOperations.delete('file') == true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector.go

    	// system. If it's not a valid resource, the garbage collector should i)
    	// ignore the reference when decide if the object should be deleted, and
    	// ii) should update the object to remove such references. This is to
    	// prevent objects having references to an old resource from being
    	// deleted during a cluster upgrade.
    	resource, namespaced, err := gc.apiResource(reference.APIVersion, reference.Kind)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

        private final Deleter deleter;
        private final FileSystemAccess fileSystemAccess;
    
        private final ImmutableWorkspaceMetadataStore workspaceMetadataStore;
        private final OutputSnapshotter outputSnapshotter;
        private final Step<? super PreviousExecutionContext, ? extends CachingResult> delegate;
    
        public AssignImmutableWorkspaceStep(
            Deleter deleter,
            FileSystemAccess fileSystemAccess,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/podtopologyspread/plugin.go

    		return framework.QueueSkip, nil
    	}
    
    	// Pod is deleted. Return Queue when the deleted Pod has a label that matches with topologySpread's selector.
    	if podLabelsMatchSpreadConstraints(constraints, originalPod.Labels) {
    		logger.V(5).Info("a scheduled pod which matches with the pod's topology spread constraints was deleted, and the pod may be schedulable now",
    			"pod", klog.KObj(pod), "deletedPod", klog.KObj(originalPod))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. pkg/scheduler/util/assumecache/assume_cache.go

    	c.add(newObj)
    }
    
    func (c *AssumeCache) delete(obj interface{}) {
    	if obj == nil {
    		return
    	}
    
    	name, err := cache.DeletionHandlingMetaNamespaceKeyFunc(obj)
    	if err != nil {
    		c.logger.Error(&ObjectNameError{err}, "Failed to delete")
    		return
    	}
    
    	c.rwMutex.Lock()
    	defer c.rwMutex.Unlock()
    
    	objInfo := &objInfo{name: name}
    	err = c.store.Delete(objInfo)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. pkg/controller/endpoint/endpoints_controller_test.go

    		name             string
    		batchPeriod      time.Duration
    		podsCount        int
    		deletes          []podDelete
    		finalDelay       time.Duration
    		wantRequestCount int
    	}{
    		{
    			name:        "three deletes with no batching",
    			batchPeriod: 0 * time.Second,
    			podsCount:   10,
    			deletes: []podDelete{
    				{
    					// endpoints.Run needs ~100 ms to start processing updates.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/node/graph.go

    	for _, edge := range edgesToRemoveFromIndexes {
    		g.removeEdgeFromDestinationIndex_locked(edge)
    	}
    }
    
    // must be called under write lock
    // deletes edges from a given vertex type to a specific vertex
    // will delete each orphaned "from" vertex, but will never delete the "to" vertex
    func (g *Graph) deleteEdges_locked(fromType, toType vertexType, toNamespace, toName string) {
    	// get the "to" side
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    	UpdatedAt  time.Time
    }
    
    // SRBucketDeleteOp - type of delete op
    type SRBucketDeleteOp string
    
    const (
    	// MarkDelete creates .minio.sys/buckets/.deleted/<bucket> vol entry to hold onto deleted bucket's state
    	// until peers are synced in site replication setup.
    	MarkDelete SRBucketDeleteOp = "MarkDelete"
    
    	// Purge deletes the .minio.sys/buckets/.deleted/<bucket> vol entry
    	Purge SRBucketDeleteOp = "Purge"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  10. pkg/volume/hostpath/host_path.go

    	}
    
    	return pv, nil
    }
    
    // hostPathDeleter deletes a hostPath PV from the cluster.
    // This deleter only works on a single host cluster and is for testing purposes only.
    type hostPathDeleter struct {
    	name string
    	path string
    	host volume.VolumeHost
    	volume.MetricsNil
    }
    
    func (r *hostPathDeleter) GetPath() string {
    	return r.path
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top