Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,123 for Terminated (0.12 sec)

  1. guava/src/com/google/common/util/concurrent/Service.java

         */
        public void stopping(State from) {}
    
        /**
         * Called when the service transitions to the {@linkplain State#TERMINATED TERMINATED} state.
         * The {@linkplain State#TERMINATED TERMINATED} state is a terminal state in the transition
         * diagram. Therefore, if this method is called, no other methods will be called on the {@link
         * Listener}.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. pkg/controller/podgc/config/types.go

    // PodGCControllerConfiguration contains elements describing PodGCController.
    type PodGCControllerConfiguration struct {
    	// terminatedPodGCThreshold is the 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.
    	TerminatedPodGCThreshold int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 963 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PodStatusResult.yaml

          allocatedResourcesKey: "0"
        containerID: containerIDValue
        image: imageValue
        imageID: imageIDValue
        lastState:
          running:
            startedAt: "2001-01-01T01:01:01Z"
          terminated:
            containerID: containerIDValue
            exitCode: 1
            finishedAt: "2006-01-01T01:01:01Z"
            message: messageValue
            reason: reasonValue
            signal: 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/Service.java

         */
        public void stopping(State from) {}
    
        /**
         * Called when the service transitions to the {@linkplain State#TERMINATED TERMINATED} state.
         * The {@linkplain State#TERMINATED TERMINATED} state is a terminal state in the transition
         * diagram. Therefore, if this method is called, no other methods will be called on the {@link
         * Listener}.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fuzz_non_crash_signal.txt

    # FuzzKill sends itself a signal that cannot be caught by the worker process
    # and does not appear to be a crash.
    # We should not save a crasher.
    ! go test -fuzz=FuzzKill
    ! exists testdata
    ! stdout unreachable
    ! stderr unreachable
    stdout 'fuzzing process terminated by unexpected signal; no crash will be recorded: signal: killed'
    
    # FuzzCrash sends itself a signal that looks like a crash.
    # We should save a crasher.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.yaml

          allocatedResourcesKey: "0"
        containerID: containerIDValue
        image: imageValue
        imageID: imageIDValue
        lastState:
          running:
            startedAt: "2001-01-01T01:01:01Z"
          terminated:
            containerID: containerIDValue
            exitCode: 1
            finishedAt: "2006-01-01T01:01:01Z"
            message: messageValue
            reason: reasonValue
            signal: 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. pkg/kubelet/status/status_manager_test.go

    		t.Helper()
    		if state.Terminated == nil || state.Running != nil || state.Waiting != nil {
    			t.Fatalf("unexpected state: %#v", state)
    		}
    		if state.Terminated.ExitCode != 137 || state.Terminated.Reason != kubecontainer.ContainerReasonStatusUnknown || len(state.Terminated.Message) == 0 {
    			t.Fatalf("unexpected terminated state: %#v", state.Terminated)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_termination_order.go

    // expires, or all dependent containers have finished terminating.
    type terminationOrdering struct {
    	// terminated is a map from container name to a channel, that if closed
    	// indicates that the container with that name was terminated
    	terminated map[string]chan struct{}
    	// prereqs is a map from container name to a list of channel that the container
    	// must wait on to ensure termination ordering
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 00:07:21 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. pkg/controller/job/pod_failure_policy_test.go

    						{
    							Name: "init-container",
    							State: v1.ContainerState{
    								Terminated: &v1.ContainerStateTerminated{
    									ExitCode: 0,
    								},
    							},
    						},
    					},
    					ContainerStatuses: []v1.ContainerStatus{
    						{
    							Name: "main-container",
    							State: v1.ContainerState{
    								Terminated: &v1.ContainerStateTerminated{
    									ExitCode: 111,
    								},
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. pkg/kubelet/prober/prober_manager_test.go

    		State: v1.ContainerState{
    			Running: &v1.ContainerStateRunning{},
    		},
    	}
    	terminated := v1.ContainerStatus{
    		Name:        "terminated_container",
    		ContainerID: "test://terminated_container_id",
    		State: v1.ContainerState{
    			Terminated: &v1.ContainerStateTerminated{},
    		},
    	}
    	podStatus := v1.PodStatus{
    		Phase: v1.PodRunning,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top