Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 60 for terminator (0.31 sec)

  1. pkg/kubelet/kubelet.go

    	// notify the secretManager when pods are started and terminated, and the secretManager must
    	// then keep the needed secrets up-to-date as they change.
    	secretManager secret.Manager
    
    	// configMapManager caches the set of config maps used by running pods on this node. The
    	// podWorkers notify the configMapManager when pods are started and terminated, and the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    created. At least one container is still running, or is in the process of starting or restarting. Succeeded: All containers in the pod have terminated in success, and will not be restarted. Failed: All containers in the pod have terminated, and at least one container has terminated in failure. The container either exited with non-zero status or was terminated by the system. Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    				"running": {Terminated: &v1.ContainerStateTerminated{
    					ExitCode:    1,
    					ContainerID: emptyContainerID,
    				}},
    			},
    		},
    		// For terminated container:
    		// * If there is no recent start error record, State should be Terminated, LastTerminationState should be retrieved from
    		// second latest terminated status;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      }
    
      for (Node* control_ret : control_ret_nodes) {
        auto* inst = node_values_[control_ret->id()];
        inst_to_return.push_back(*std::prev(inst->result_end()));
      }
    
      // Terminate the function by adding a Fetch operation to terminate the graph
      // and a return operation to return the Graph results.
      builder_.setInsertionPointToEnd(&graph_op.getBody().front());
      builder_.create<mlir::tf_executor::FetchOp>(graph_op.getLoc(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers.go

    				reason = container.State.Terminated.Reason
    			} else if container.State.Terminated != nil && container.State.Terminated.Reason == "" {
    				if container.State.Terminated.Signal != 0 {
    					reason = fmt.Sprintf("Signal:%d", container.State.Terminated.Signal)
    				} else {
    					reason = fmt.Sprintf("ExitCode:%d", container.State.Terminated.ExitCode)
    				}
    			} else if container.Ready && container.State.Running != nil {
    				hasRunning = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    						{
    							Ready: false,
    							State: api.ContainerState{Terminated: &api.ContainerStateTerminated{}},
    						},
    						{
    							Ready:                false,
    							RestartCount:         3,
    							State:                api.ContainerState{Running: &api.ContainerStateRunning{}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller_test.go

    							{
    								Name: "monitoring-container",
    								State: v1.ContainerState{
    									Terminated: &v1.ContainerStateTerminated{
    										ExitCode: 5,
    									},
    								},
    							},
    							{
    								Name: "main-container",
    								State: v1.ContainerState{
    									Terminated: &v1.ContainerStateTerminated{
    										ExitCode:   42,
    										FinishedAt: testFinishedAt,
    									},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/gateway_test.go

    						wellknown.TCPProxy,
    					},
    					HTTPFilters: []string{},
    					TotalMatch:  true,
    				},
    			}},
    		},
    		{
    			name: "terminated-tls server",
    			configs: []config.Config{
    				{
    					Meta: config.Meta{Name: "terminated-tls-gateway", Namespace: "testns", GroupVersionKind: gvk.Gateway},
    					Spec: &networking.Gateway{
    						Servers: []*networking.Server{
    							{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  9. src/debug/elf/elf.go

    	DT_FINI_ARRAY   DynTag = 26 /* Address of the array of pointers to termination functions */
    	DT_INIT_ARRAYSZ DynTag = 27 /* Size in bytes of the array of initialization functions. */
    	DT_FINI_ARRAYSZ DynTag = 28 /* Size in bytes of the array of termination functions. */
    	DT_RUNPATH      DynTag = 29 /* String table offset of a null-terminated library search path string. */
    	DT_FLAGS        DynTag = 30 /* Object specific flag values. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.5.md

        * The specific behavior of the podGC controller to clean up terminated pods is still governed by the flag, but the podGC's responsibilities have evolved beyond just cleaning up terminated pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
Back to top