Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,133 for deleteSV (0.19 sec)

  1. pilot/test/mock/config.go

    				t.Errorf("Events are not serialized (delete)")
    			}
    			deleted.Inc()
    		}
    		log.Infof("Added %d, deleted %d", added.Load(), deleted.Load())
    	})
    	go cache.Run(stop)
    
    	// run map invariant sequence
    	CheckMapInvariant(store, t, namespace, n)
    
    	log.Infof("Waiting till all events are received")
    	retry.UntilOrFail(t, func() bool {
    		return added.Load() == n64 && deleted.Load() == n64
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. tensorflow/c/eager/dlpack.cc

    namespace tensorflow {
    
    namespace {
    
    // Managing context for the DLManagedTensor, will manage the lifetime of
    // DLManagedTensor. When calling DLManagedTensor::deleter, it will notify the
    // original framework of destruction, and this context will be deleted also.
    struct TfDlManagedTensorCtx {
      TensorReference reference;
      std::vector<int64_t> shape;
      std::vector<int64_t> strides;
      DLManagedTensor tensor;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. pkg/controller/volume/pvcprotection/pvc_protection_controller_test.go

    				clienttesting.NewListAction(podGVR, podGVK, defaultNS, metav1.ListOptions{}),
    				// Fails too
    				clienttesting.NewUpdateAction(pvcGVR, defaultNS, deleted(pvc())),
    				clienttesting.NewListAction(podGVR, podGVK, defaultNS, metav1.ListOptions{}),
    				// Succeeds
    				clienttesting.NewUpdateAction(pvcGVR, defaultNS, deleted(pvc())),
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_en.properties

    success.delete_doc_from_index=Started a process to delete the document from index.
    success.crawling_info_delete_all=Deleted session data.
    success.start_crawl_process=Started a crawl process.
    success.upload_design_file=Uploaded {0}.
    success.update_design_jsp_file=Updated {0}.
    success.create_crawling_config_at_wizard=Created a crawling config ({0}).
    success.failure_url_delete_all=Deleted failure urls.
    success.delete_file=Deleted {0} file.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. src/main/resources/fess_message.properties

    success.delete_doc_from_index=Started a process to delete the document from index.
    success.crawling_info_delete_all=Deleted session data.
    success.start_crawl_process=Started a crawl process.
    success.upload_design_file=Uploaded {0}.
    success.update_design_jsp_file=Updated {0}.
    success.create_crawling_config_at_wizard=Created a crawling config ({0}).
    success.failure_url_delete_all=Deleted failure urls.
    success.delete_file=Deleted {0} file.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. tests/associations_test.go

    	}
    
    	if r := DB.Delete(&member); r.Error != nil || r.RowsAffected != 1 {
    		t.Fatalf("Should delete member, got error: %v, affected: %v", r.Error, r.RowsAffected)
    	}
    
    	var result Member
    	if err := DB.First(&result, member.ID).Error; err == nil {
    		t.Fatalf("Should not find deleted member")
    	}
    
    	if err := DB.First(&profile2, profile.ID).Error; err == nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    	if apierrors.IsNotFound(err) || apierrors.IsConflict(err) {
    		// deleted or changed in the meantime, we'll get called again
    		return nil
    	}
    	if err != nil {
    		return err
    	}
    
    	// Now we can start deleting items.  We should use the REST API to ensure that all normal admission runs.
    	// Since we control the endpoints, we know that delete collection works. No need to delete if not established.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. pkg/controller/controller_utils.go

    	// when a pod for a replica set is failed to be deleted.
    	FailedDeletePodReason = "FailedDelete"
    	// SuccessfulDeletePodReason is added in an event when a pod for a replica set
    	// is successfully deleted.
    	SuccessfulDeletePodReason = "SuccessfulDelete"
    )
    
    // RSControlInterface is an interface that knows how to add or delete
    // ReplicaSets, as well as increment or decrement them. It is used
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller_test.go

    				return nil
    			},
    		},
    		{
    			// deleteClaim with a bound claim makes bound volume released with external deleter.
    			// delete the corresponding volume from apiserver, and report latency metric
    			name: "5-5 - delete claim and delete volume report metric",
    			initialVolumes: volumesWithAnnotation(volume.AnnDynamicallyProvisioned, "gcr.io/vendor-csi",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/AggregatingIncrementalAnnotationProcessingIntegrationTest.groovy

        }
    
        def "classes files of generated sources are deleted when annotated file is deleted"() {
            given:
            def a = java "@Service 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: Tue Aug 29 15:12:07 UTC 2023
    - 18.5K bytes
    - Viewed (0)
Back to top