Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 3,431 for delete1 (0.11 sec)

  1. pkg/kubelet/status/state/state_checkpoint.go

    	sc.mux.Lock()
    	defer sc.mux.Unlock()
    	sc.cache.SetResizeStatus(rs)
    	return sc.storeState()
    }
    
    // Delete deletes allocations for specified pod
    func (sc *stateCheckpoint) Delete(podUID string, containerName string) error {
    	sc.mux.Lock()
    	defer sc.mux.Unlock()
    	sc.cache.Delete(podUID, containerName)
    	return sc.storeState()
    }
    
    // ClearState clears the state and saves it in a checkpoint
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 00:16:44 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/garbagecollector_test.go

    					},
    				}),
    
    				// 17,18: process pending delete of bad child
    				processAttemptToDelete(1),
    				assertState(state{
    					clientActions: []string{
    						"get /v1, Resource=pods ns=ns1 name=badpod",    // lookup of child pre-delete
    						"delete /v1, Resource=pods ns=ns1 name=badpod", // delete of bad child (absence of bad parent is cached)
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. pkg/proxy/endpointschangetracker.go

    type UpdateEndpointsMapResult struct {
    	// UpdatedServices lists the names of all services with added/updated/deleted
    	// endpoints since the last Update.
    	UpdatedServices sets.Set[types.NamespacedName]
    
    	// DeletedUDPEndpoints identifies UDP endpoints that have just been deleted.
    	// Existing conntrack NAT entries pointing to these endpoints must be deleted to
    	// ensure that no further traffic for the Service gets delivered to them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

                        // updated file
                        addDocument(localParams, dataMap);
                    } else if (getParamValue(localParams, "event.delete", "delete").equals(eventType)) {
                        // deleted file
                        deleteDocument(localParams, dataMap);
                    } else {
                        logger.warn("unknown event: {}, data: {}", eventType, dataMap);
                    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/filesystem/jdk7/Jdk7SymlinkTest.groovy

            expect:
            !new WindowsJdk7Symlink().isSymlinkCreationSupported()
        }
    
        def 'deletes test files after symlink support test with #create'() {
            expect:
            listSymlinkTestFiles().findAll { !it.delete() }.empty
            create(temporaryFolder.createDir("tmp"))
            listSymlinkTestFiles().empty
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. pkg/ledger/ledger.go

    type Ledger interface {
    	// Put adds or overwrites a key in the Ledger
    	Put(key, value string) (string, error)
    	// Delete removes a key from the Ledger, which may still be read using GetPreviousValue
    	Delete(key string) error
    	// Get returns a the value of the key from the Ledger's current state
    	Get(key string) (string, error)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/cache/internal/WrapperDistributionCleanupActionTest.groovy

        }
        def progressMonitor = Mock(CleanupProgressMonitor)
    
        @Subject def cleanupAction = new WrapperDistributionCleanupAction(userHomeDir, usedGradleVersions)
    
        def "deletes distributions for unused versions"() {
            given:
            def unusedDist = createDistributionChecksumDir(GradleVersion.version("2.3.4"))
            def usedVersion = GradleVersion.version("3.4.5")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 10 06:35:14 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  8. tests/associations_belongs_to_test.go

    	// Delete
    	if err := DB.Model(&user2).Association("Company").Delete(&Company{}); err != nil {
    		t.Fatalf("Error happened when delete Company, got %v", err)
    	}
    	AssertAssociationCount(t, user2, "Company", 1, "after delete non-existing data")
    
    	if err := DB.Model(&user2).Association("Company").Delete(&company2); err != nil {
    		t.Fatalf("Error happened when delete Company, got %v", err)
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 30 09:15:49 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/heap/heap_test.go

    	}
    	// Delete tail.
    	if err = h.Delete(mkHeapObj("bal", 31)); err != nil {
    		t.Fatalf("Failed to delete tail.")
    	}
    	// Delete one of the items with value 30.
    	if err = h.Delete(mkHeapObj("zab", 30)); err != nil {
    		t.Fatalf("Failed to delete item.")
    	}
    	item, err = h.Pop()
    	if e, a := 11, item.(testHeapObject).val; err != nil || a != e {
    		t.Fatalf("expected %d, got %d", e, a)
    	}
    	item, err = h.Pop()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. pkg/controller/resourceclaim/controller.go

    		// Nothing to do for it at all.
    		return
    	}
    
    	if deleted {
    		logger.V(6).Info("pod got deleted", "pod", klog.KObj(pod))
    		ec.deletedObjects.Add(pod.UID)
    	}
    
    	logger.V(6).Info("pod with resource claims changed", "pod", klog.KObj(pod), "deleted", deleted)
    
    	// Release reservations of a deleted or completed pod?
    	if needsClaims, reason := podNeedsClaims(pod, deleted); !needsClaims {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top