Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,404 for delete1 (0.16 sec)

  1. pkg/kubelet/config/config.go

    		}
    		if len(updates.Pods) > 0 {
    			s.updates <- *updates
    		}
    		if len(deletes.Pods) > 0 {
    			s.updates <- *deletes
    		}
    		if firstSet && len(adds.Pods) == 0 && len(updates.Pods) == 0 && len(deletes.Pods) == 0 {
    			// Send an empty update when first seeing the source and there are
    			// no ADD or UPDATE or DELETE pods from the source. This signals kubelet that
    			// the source is ready.
    			s.updates <- *adds
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. 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)
  3. cmd/storage-datatypes.go

    	// Version of the file.
    	VersionID string `msg:"vid,omitempty"`
    
    	// Indicates if the version is the latest
    	IsLatest bool `msg:"is"`
    
    	// Deleted is set when this FileInfo represents
    	// a deleted marker for a versioned bucket.
    	Deleted bool `msg:"del"`
    
    	// TransitionStatus is set to Pending/Complete for transitioned
    	// entries based on state of transition
    	TransitionStatus string `msg:"ts"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. pkg/controller/podgc/gc_controller_test.go

    			pods: []*v1.Pod{
    				makePod("a", "deleted", v1.PodFailed),
    				makePod("b", "deleted", v1.PodSucceeded),
    			},
    			itemsInQueue:    1,
    			deletedPodNames: sets.New("a", "b"),
    		},
    		{
    			name:  "no nodes with PodDisruptionConditions enabled",
    			delay: 2 * quarantineTime,
    			pods: []*v1.Pod{
    				makePod("a", "deleted", v1.PodFailed),
    				makePod("b", "deleted", v1.PodSucceeded),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  5. pkg/registry/core/pod/storage/eviction_test.go

    			expectedDeleteCount: 3,
    		},
    		// This test case is critical. If it is removed or broken we may
    		// regress and allow a pod to be deleted without checking PDBs when the
    		// pod should not be deleted.
    		{
    			name: "pdbs No disruptions allowed, pod pending, first delete conflict, pod becomes running, continueToPDBs",
    			pdbs: []runtime.Object{&policyv1.PodDisruptionBudget{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  6. 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)
  7. src/main/resources/fess_message_ru.properties

    errors.crud_failed_to_delete_crud_table=Failed to delete the data. ({0})
    errors.crud_could_not_find_crud_table=Could not find the data({0}).
    
    success.update_crawler_params=Updated parameters.
    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.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri May 20 12:12:28 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top