Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,431 for delete1 (0.24 sec)

  1. pilot/pkg/model/push_context_test.go

    				total1 := 0
    				// Validate that empty namespace is deleted when all filters in that namespace are deleted.
    				for ns, envoyFilters := range pc1.envoyFiltersByNamespace {
    					total1 += len(envoyFilters)
    					deleted := 0
    					for _, ef := range envoyFilters {
    						key := ConfigKey{Kind: kind.EnvoyFilter, Namespace: ns, Name: ef.Name}
    						if deletes.Contains(key) {
    							deleted++
    						}
    					}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  2. 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)
  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. pkg/controller/storageversiongc/gc_controller_test.go

    	clientset := fake.NewSimpleClientset(lease1, lease2, lease3, storageVersion)
    	_, ctx := ktesting.NewTestContext(t)
    	setupController(ctx, clientset)
    
    	// Delete the lease object and verify that storage version status is updated
    	if err := clientset.CoordinationV1().Leases(metav1.NamespaceSystem).Delete(context.Background(), "kube-apiserver-1", metav1.DeleteOptions{}); err != nil {
    		t.Fatalf("error deleting lease object: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 12:19:43 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. hack/testdata/frontend-controller.yaml

      template:
        metadata:
          labels:
            app: guestbook
            tier: frontend
        spec:
          # Setting terminationGracePeriodSeconds to zero to delete pods immediately on delete request,
          # since in tests we usually check and expect the pods being deleted right after deletion.
          terminationGracePeriodSeconds: 0
          containers:
          - name: php-redis
            image: gcr.io/google_samples/gb-frontend:v4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 23 22:22:41 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  6. 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)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/IsolatingIncrementalAnnotationProcessingIntegrationTest.groovy

        }
    
        def "classes files of generated sources are deleted when annotated file is deleted"() {
            given:
            def a = java "@Helper class A {}"
            java "class Unrelated {}"
    
            outputs.snapshot { run "compileJava" }
    
            when:
            a.delete()
            run "compileJava"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. cmd/object-api-deleteobject_test.go

    		objectsAfterDelete []string
    	}{
    		// Test 1: removes an object and checks it is the only object
    		// that has been deleted.
    		{
    			"bucket1",
    			[]objectUpload{{"object0", "content"}, {"object1", "content"}},
    			"object0",
    			[]string{"object1"},
    		},
    		// Test 2: remove an object inside a directory and checks it is deleted
    		// with its parent since this former becomes empty
    		{
    			"bucket2",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 23 15:46:00 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/RemovePreviousOutputsStep.java

        private final Deleter deleter;
        private final OutputChangeListener outputChangeListener;
        private final Step<? super C, ? extends R> delegate;
    
        public RemovePreviousOutputsStep(
            Deleter deleter,
            OutputChangeListener outputChangeListener,
            Step<? super C, ? extends R> delegate
        ) {
            this.deleter = deleter;
            this.outputChangeListener = outputChangeListener;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. pkg/kubelet/util/store/store.go

    	Write(key string, data []byte) error
    	// Read retrieves data with key
    	// Read must return ErrKeyNotFound if key is not found.
    	Read(key string) ([]byte, error)
    	// Delete deletes data by key
    	// Delete must not return error if key does not exist
    	Delete(key string) error
    	// List lists all existing keys.
    	List() ([]string, error)
    }
    
    // ValidateKey returns an error if the given key does not meet the requirement
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 22:18:30 UTC 2017
    - 1.9K bytes
    - Viewed (0)
Back to top