Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for isActive (0.18 sec)

  1. android/guava-tests/test/com/google/common/reflect/InvokableTest.java

        assertTrue(invokable.isAnnotationPresent(Tested.class));
      }
    
      public void testNativeMethod() throws Exception {
        Invokable<?, Object> invokable = A.method("nativeMethod");
        assertTrue(invokable.isNative());
        assertTrue(invokable.isPackagePrivate());
      }
    
      public void testSynchronizedMethod() throws Exception {
        Invokable<?, Object> invokable = A.method("synchronizedMethod");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/reflect/InvokableTest.java

        assertTrue(invokable.isAnnotationPresent(Tested.class));
      }
    
      public void testNativeMethod() throws Exception {
        Invokable<?, Object> invokable = A.method("nativeMethod");
        assertTrue(invokable.isNative());
        assertTrue(invokable.isPackagePrivate());
      }
    
      public void testSynchronizedMethod() throws Exception {
        Invokable<?, Object> invokable = A.method("synchronizedMethod");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. src/runtime/time.go

    // stopTimer stops a timer.
    // It reports whether t was stopped before being run.
    //
    //go:linkname stopTimer time.stopTimer
    func stopTimer(t *timeTimer) bool {
    	return t.stop()
    }
    
    // resetTimer resets an inactive timer, adding it to the timer heap.
    //
    // Reports whether the timer was modified before it was run.
    //
    //go:linkname resetTimer time.resetTimer
    func resetTimer(t *timeTimer, when, period int64) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  4. pkg/controller/deployment/deployment_controller.go

    	podMap := make(map[types.UID][]*v1.Pod, len(rsList))
    	for _, rs := range rsList {
    		podMap[rs.UID] = []*v1.Pod{}
    	}
    	for _, pod := range pods {
    		// Do not ignore inactive Pods because Recreate Deployments need to verify that no
    		// Pods from older versions are running before spinning up new Pods.
    		controllerRef := metav1.GetControllerOf(pod)
    		if controllerRef == nil {
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. cmd/bucket-lifecycle.go

    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/minio/internal/s3select"
    	xnet "github.com/minio/pkg/v3/net"
    	"github.com/zeebo/xxh3"
    )
    
    const (
    	// Disabled means the lifecycle rule is inactive
    	Disabled = "Disabled"
    	// TransitionStatus status of transition
    	TransitionStatus = "transition-status"
    	// TransitionedObjectName name of transitioned object
    	TransitionedObjectName = "transitioned-object"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/cpu_manager_test.go

    			expectStDefaultCPUSet:        cpuset.New(3, 4, 5, 6, 7),
    			expectSucceededContainerName: "",
    			expectFailedContainerName:    "fakeContainerName",
    		},
    		{
    			description: "cpu manager reconcile - state has inactive container",
    			policy:      testPolicy,
    			activePods: []*v1.Pod{
    				{
    					ObjectMeta: metav1.ObjectMeta{
    						Name: "fakePodName",
    						UID:  "fakePodUID",
    					},
    					Spec: v1.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_ru.properties

    labels.scheduledjob_scriptData=Script
    labels.scheduledjob_jobLogging=Logging
    labels.scheduledjob_crawler=Crawler Job
    labels.scheduledjob_running=Running
    labels.scheduledjob_active=Active
    labels.scheduledjob_nojob=Inactive
    labels.scheduledjob_button_start=Start now
    labels.scheduledjob_button_stop=Stop
    labels.joblog_button_back=Back
    labels.joblog_button_delete=Удалить
    labels.joblog_configuration=Журнал задания
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_label.properties

    labels.scheduledjob_scriptData=Script
    labels.scheduledjob_jobLogging=Logging
    labels.scheduledjob_crawler=Crawler Job
    labels.scheduledjob_running=Running
    labels.scheduledjob_active=Active
    labels.scheduledjob_nojob=Inactive
    labels.scheduledjob_button_start=Start now
    labels.scheduledjob_button_stop=Stop
    labels.joblog_button_back=Back
    labels.joblog_button_delete=Delete
    labels.joblog_configuration=Job Log
    labels.joblog_endTime=End Time
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  9. pkg/controller/deployment/deployment_controller_test.go

    	// Add a Pod that has matching labels, but no ControllerRef.
    	pod3 := generatePodFromRS(rs1)
    	pod3.Name = "pod3"
    	pod3.OwnerReferences = nil
    	// Add a Pod that has matching labels and ControllerRef, but is inactive.
    	pod4 := generatePodFromRS(rs1)
    	pod4.Name = "pod4"
    	pod4.Status.Phase = v1.PodFailed
    
    	f.dLister = append(f.dLister, d)
    	f.rsLister = append(f.rsLister, rs1, rs2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/replica_set.go

    	// TODO: Do the List and Filter in a single pass, or use an index.
    	allPods, err := rsc.podLister.Pods(rs.Namespace).List(labels.Everything())
    	if err != nil {
    		return err
    	}
    	// Ignore inactive pods.
    	filteredPods := controller.FilterActivePods(logger, allPods)
    
    	// NOTE: filteredPods are pointing to objects from cache - if you need to
    	// modify them, you need to copy it first.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top