Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,410 for deleteSV (0.17 sec)

  1. pkg/kubelet/util/manager/manager.go

    	// in the implementations and effectively treated as refcounted.
    	AddReference(namespace, name string, referencedFrom types.UID)
    	// DeleteReference deletes a reference from referencedFrom to the object from the store.
    	// Note that object should be deleted only when there was a
    	// corresponding Delete call for each of Add calls (effectively
    	// when refcount of every referenceFrom was reduced to zero).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 02:22:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. tests/soft_delete_test.go

    		t.Errorf("Count soft deleted record, expects: %v, got: %v", 1, count)
    	}
    
    	if DB.Model(&User{}).Select("age").Where("name = ?", user.Name).Scan(&age).Error != nil || age != user.Age {
    		t.Errorf("Age soft deleted record, expects: %v, got: %v", 0, age)
    	}
    
    	if err := DB.Delete(&user).Error; err != nil {
    		t.Fatalf("No error should happen when soft delete user, but got %v", err)
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 01 06:40:55 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseJavaSourceIncrementalCompilationIntegrationTest.groovy

    abstract class BaseJavaSourceIncrementalCompilationIntegrationTest extends AbstractSourceIncrementalCompilationIntegrationTest {
        CompiledLanguage language = CompiledLanguage.JAVA
    
        def "deletes headers when source file is deleted"() {
            given:
            def sourceFile = file("src/main/java/my/org/Foo.java")
            sourceFile.text = """
                package my.org;
    
                public class Foo {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/cycle_state.go

    // See CycleState for notes on concurrency.
    func (c *CycleState) Write(key StateKey, val StateData) {
    	c.storage.Store(key, val)
    }
    
    // Delete deletes data with the given key from CycleState.
    //
    // See CycleState for notes on concurrency.
    func (c *CycleState) Delete(key StateKey) {
    	c.storage.Delete(key)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 06:48:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotclasses.yaml

                  enum:
                    - Delete
                    - Retain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  6. internal/store/queuestore.go

    		return item, err
    	}
    
    	return item, nil
    }
    
    // Del - Deletes an entry from the store.
    func (store *QueueStore[_]) Del(key string) error {
    	store.Lock()
    	defer store.Unlock()
    	return store.del(key)
    }
    
    // DelList - Deletes a list of entries from the store.
    // Returns an error even if one key fails to be deleted.
    func (store *QueueStore[_]) DelList(keys []string) error {
    	store.Lock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 25 16:44:20 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. pkg/proxy/servicechangetracker.go

    	for svcPortName := range *sm {
    		// skip the delete for Update event.
    		if _, ok := other[svcPortName]; ok {
    			delete(*sm, svcPortName)
    		}
    	}
    }
    
    // unmerge deletes all other ServicePortMap's elements from current ServicePortMap and
    // updates deletedUDPClusterIPs with all of the newly-deleted UDP cluster IPs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/graceful_termination.go

    	defer q.lock.Unlock()
    	success := true
    	for name, rs := range q.list {
    		deleted, err := handler(rs)
    		if err != nil {
    			klog.ErrorS(err, "Error in deleting real server", "realServer", name)
    			success = false
    		}
    		if deleted {
    			klog.InfoS("Removed real server from graceful delete real server list", "realServer", name)
    			delete(q.list, rs.String())
    		}
    	}
    	return success
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. docs/bucket/retention/README.md

    ## Concepts
    
    - If an object is under legal hold, it cannot be deleted unless the legal hold is explicitly removed for the respective version id. DeleteObjectVersion() would fail otherwise.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/AbstractSymlinkDeleterTest.groovy

            when:
            boolean didWork = delete(followSymlinks, link)
    
            then:
            !link.exists()
            originalFile.assertExists()
            didWork
    
            cleanup:
            link.delete()
    
            where:
            followSymlinks << [true, false]
        }
    
        private boolean delete(boolean followSymlinks, File path) {
            return deleter.deleteRecursively(path, followSymlinks)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top