Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for runfinq (0.46 sec)

  1. prow/config/calico.yaml

                  the cluster.
                properties:
                  calicoVersion:
                    description: CalicoVersion is the version of Calico that the cluster
                      is running
                    type: string
                  clusterGUID:
                    description: ClusterGUID is the GUID of the cluster
                    type: string
                  clusterType:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"waiting":    "Details about a waiting container",
    	"running":    "Details about a running container",
    	"terminated": "Details about a terminated container",
    }
    
    func (ContainerState) SwaggerDoc() map[string]string {
    	return map_ContainerState
    }
    
    var map_ContainerStateRunning = map[string]string{
    	"":          "ContainerStateRunning is a running state of a container.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	PodPending PodPhase = "Pending"
    	// PodRunning means the pod has been bound to a node and all of the containers have been started.
    	// At least one container is still running or is in the process of being restarted.
    	PodRunning PodPhase = "Running"
    	// 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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	Waiting *ContainerStateWaiting `json:"waiting,omitempty" protobuf:"bytes,1,opt,name=waiting"`
    	// Details about a running container
    	// +optional
    	Running *ContainerStateRunning `json:"running,omitempty" protobuf:"bytes,2,opt,name=running"`
    	// Details about a terminated container
    	// +optional
    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. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional ContainerStateWaiting waiting = 1;
    
      // Details about a running container
      // +optional
      optional ContainerStateRunning running = 2;
    
      // Details about a terminated container
      // +optional
      optional ContainerStateTerminated terminated = 3;
    }
    
    // ContainerStateRunning is a running state of a container.
    message ContainerStateRunning {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "properties": {
              "labelSelector": {
                "allOf": [
                  {
    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. src/net/http/h2_bundle.go

    	if !http2DebugGoroutines {
    		return
    	}
    	if http2curGoroutineID() != uint64(g) {
    		panic("running on the wrong goroutine")
    	}
    }
    
    func (g http2goroutineLock) checkNotOn() {
    	if !http2DebugGoroutines {
    		return
    	}
    	if http2curGoroutineID() == uint64(g) {
    		panic("running on the wrong goroutine")
    	}
    }
    
    var http2goroutineSpace = []byte("goroutine ")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.27.md

    ### Bug or Regression
    
    - Fixed a regression since 1.27.0 in scheduler framework when running score plugins. 
      The `skippedScorePlugins` number might be greater than `enabledScorePlugins`, 
      so when initializing a slice the cap(len(skippedScorePlugins) - len(enabledScorePlugins)) is negative, 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - `NodeStageVolume` calls will now be retried if the CSI node driver is not running. ([#120330](https://github.com/kubernetes/kubernetes/pull/120330), [@rohitssingh](https://github.com/rohitssingh))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.30.md

    - kubeadm: added the `WaitForAllControlPlaneComponents` feature gate. It could be used to tell kubeadm to wait for all control plane components to be ready when running "kubeadm init" or "kubeadm join --control-plane". Previously, kubeadm only waited for the kube-apiserver. The "kubeadm join" workflow now includes a new experimental phase called "wait-control-plane". This phase was marked as non-experimental when...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top