Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Terminate (0.18 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store).AllowCreateOnUpdate().ReturnDeletedObject()
    	test.TestDelete(validService())
    }
    
    func TestGenericGet(t *testing.T) {
    	storage, _, server := newStorage(t, []api.IPFamily{api.IPv4Protocol})
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// PodSucceeded means that all containers in the pod have voluntarily terminated
    	// with a container exit code of 0, and the system is not going to restart any of these containers.
    	PodSucceeded PodPhase = "Succeeded"
    	// PodFailed means that all containers in the pod have terminated, and at least one container has
    	// terminated in a failure (exited with a non-zero exit code or was stopped by the system).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    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: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	Running *ContainerStateRunning `json:"running,omitempty" protobuf:"bytes,2,opt,name=running"`
    	// Details about a terminated container
    	// +optional
    	Terminated *ContainerStateTerminated `json:"terminated,omitempty" protobuf:"bytes,3,opt,name=terminated"`
    }
    
    // ContainerStatus contains details for the current status of this container.
    type ContainerStatus struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      // 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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

     "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod's termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers)....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

            "description": "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  9. prow/config/calico.yaml

                              description: "NamespaceSelector is an optional field that
                                contains a selector expression. Only traffic that originates
                                from (or terminates at) endpoints within the selected
                                namespaces will be matched. When both NamespaceSelector
                                and another selector are defined on the same rule, then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    }
    
    // 6.9.1 The Flow Control Window
    // "If a sender receives a WINDOW_UPDATE that causes a flow control
    // window to exceed this maximum it MUST terminate either the stream
    // or the connection, as appropriate. For streams, [...]; for the
    // connection, a GOAWAY frame with a FLOW_CONTROL_ERROR code."
    type http2goAwayFlowError struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top