Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,793 for deleteSV (0.14 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. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/imports.go

    	return strings.Contains(importPath, ".")
    }
    
    // DeleteImport deletes the import path from the file f, if present.
    // If there are duplicate import declarations, all matching ones are deleted.
    func DeleteImport(fset *token.FileSet, f *ast.File, path string) (deleted bool) {
    	return DeleteNamedImport(fset, f, "", path)
    }
    
    // DeleteNamedImport deletes the import with the given name and path from the file f, if present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeIncrementalCompilationIntegrationTest.groovy

            def deleted = source "interface Deleted { }"
            outputs.snapshot { run language.compileTaskName }
    
            expect:
            deleted.delete()
            recompiledWithFailure('symbol: class Deleted', 'Sub')
    
            where:
            t         | r
            "Deleted" | "String"
            "String"  | "Deleted"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/testing/testing.go

    	if r.fakeVolumeWatch != nil {
    		r.fakeVolumeWatch.Delete(volume.DeepCopy())
    	}
    }
    
    // DeleteClaimEvent simulates that a claim has been deleted in etcd and the
    // controller receives 'claim deleted' event.
    func (r *VolumeReactor) DeleteClaimEvent(claim *v1.PersistentVolumeClaim) {
    	r.lock.Lock()
    	defer r.lock.Unlock()
    
    	// Remove the claim from list of resulting claims.
    	delete(r.claims, claim.Name)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller.go

    	if curPod.DeletionTimestamp != nil {
    		// when a pod is deleted gracefully its 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 ds to create more replicas asap, not wait
    		// until the kubelet actually deletes the pod.
    		dsc.deletePod(logger, curPod)
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top