Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,123 for Terminated (0.15 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/ServiceTest.java

        assertLessThan(NEW, STARTING);
        assertLessThan(NEW, TERMINATED);
    
        assertLessThan(STARTING, RUNNING);
        assertLessThan(STARTING, STOPPING);
        assertLessThan(STARTING, FAILED);
    
        assertLessThan(RUNNING, STOPPING);
        assertLessThan(RUNNING, FAILED);
    
        assertLessThan(STOPPING, FAILED);
        assertLessThan(STOPPING, TERMINATED);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/podgccontroller.go

    func (o *PodGCControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    	fs.Int32Var(&o.TerminatedPodGCThreshold, "terminated-pod-gc-threshold", o.TerminatedPodGCThreshold, "Number of terminated pods that can exist before the terminated pod garbage collector starts deleting terminated pods. If <= 0, the terminated pod garbage collector is disabled.")
    }
    
    // ApplyTo fills up PodGCController config with options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  3. pkg/controller/podgc/doc.go

    // in terminated phases (right now either Failed or Succeeded) surpasses a
    // configurable threshold, the controller will delete pods in terminated state
    // until the system reaches the allowed threshold again. The PodGCController
    // prioritizes pods to delete by sorting by creation timestamp and deleting the
    // oldest objects first. The PodGCController will not delete non-terminated
    // pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AbstractService.java

        return new ListenerCallQueue.Event<Listener>() {
          @Override
          public void call(Listener listener) {
            listener.terminated(from);
          }
    
          @Override
          public String toString() {
            return "terminated({from = " + from + "})";
          }
        };
      }
    
      private static ListenerCallQueue.Event<Listener> stoppingEvent(final State from) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  5. pkg/controller/job/pod_failure_policy.go

    		if containerStatus.State.Terminated == nil {
    			// This container is still be terminating. There is no exit code to match.
    			continue
    		}
    		if requirement.ContainerName == nil || *requirement.ContainerName == containerStatus.Name {
    			if containerStatus.State.Terminated.ExitCode != 0 {
    				if isOnExitCodesOperatorMatching(containerStatus.State.Terminated.ExitCode, requirement) {
    					return &containerStatus
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 20:44:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/scanner_test.go

    		{`'xx`, "rune literal not terminated", 0, 0},
    		{`'xx'`, "more than one character in rune literal", 0, 0},
    
    		{"\n   \"foo\n", "newline in string", 1, 7},
    		{`"`, "string not terminated", 0, 0},
    		{`"foo`, "string not terminated", 0, 0},
    		{"`", "string not terminated", 0, 0},
    		{"`foo", "string not terminated", 0, 0},
    		{"/*/", "comment not terminated", 0, 0},
    		{"/*\n\nfoo", "comment not terminated", 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.json

              "waiting": {
                "reason": "reasonValue",
                "message": "messageValue"
              },
              "running": {
                "startedAt": "2001-01-01T01:01:01Z"
              },
              "terminated": {
                "exitCode": 1,
                "signal": 2,
                "reason": "reasonValue",
                "message": "messageValue",
                "startedAt": "2005-01-01T01:01:01Z",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. pkg/kubelet/status/status_manager.go

    		if c.Running != nil {
    			normalizeTimeStamp(&c.Running.StartedAt)
    		}
    		if c.Terminated != nil {
    			normalizeTimeStamp(&c.Terminated.StartedAt)
    			normalizeTimeStamp(&c.Terminated.FinishedAt)
    			if len(c.Terminated.Message) > bytesPerStatus {
    				c.Terminated.Message = c.Terminated.Message[:bytesPerStatus]
    			}
    		}
    	}
    
    	if status.StartTime != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/ServiceTest.java

        assertLessThan(NEW, STARTING);
        assertLessThan(NEW, TERMINATED);
    
        assertLessThan(STARTING, RUNNING);
        assertLessThan(STARTING, STOPPING);
        assertLessThan(STARTING, FAILED);
    
        assertLessThan(RUNNING, STOPPING);
        assertLessThan(RUNNING, FAILED);
    
        assertLessThan(STOPPING, FAILED);
        assertLessThan(STOPPING, TERMINATED);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/ServiceManager.java

         * State#FAILED fail}/{@linkplain State#TERMINATED terminate} before all other services have
         * started {@linkplain State#RUNNING running} then this method will not be called.
         */
        public void healthy() {}
    
        /**
         * Called when the all of the component services have reached a terminal state, either
         * {@linkplain State#TERMINATED terminated} or {@linkplain State#FAILED failed}.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top