Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for Terminate (0.24 sec)

  1. hack/local-up-cluster.sh

        warning_log "kubelet terminated unexpectedly, see ${KUBELET_LOG}"
        KUBELET_PID=
      fi
    
      if [[ -n "${PROXY_PID-}" ]] && ! sudo kill -0 "${PROXY_PID}" 2>/dev/null; then
        warning_log "kube-proxy terminated unexpectedly, see ${PROXY_LOG}"
        PROXY_PID=
      fi
    
      if [[ -n "${SCHEDULER_PID-}" ]] && ! sudo kill -0 "${SCHEDULER_PID}" 2>/dev/null; then
        warning_log "scheduler terminated unexpectedly, see ${SCHEDULER_LOG}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	podName := util.GetUniquePodName(pod)
    
    	//let the pod be terminated
    	podGet, exist := dswp.podManager.(mutablePodManager).GetPodByName(pod.Namespace, pod.Name)
    	if !exist {
    		t.Fatalf("Failed to get pod by pod name: %s and namespace: %s", pod.Name, pod.Namespace)
    	}
    	podGet.Status.Phase = v1.PodFailed
    
    	dswp.findAndRemoveDeletedPods()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types.go

    	// Total number of non-terminated pods targeted by this deployment (their labels match the selector).
    	// +optional
    	Replicas int32 `json:"replicas,omitempty" protobuf:"varint,2,opt,name=replicas"`
    
    	// Total number of non-terminated pods targeted by this deployment that have the desired template spec.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  4. src/syscall/zerrors_solaris_amd64.go

    	7:  "emulation Trap",
    	8:  "arithmetic Exception",
    	9:  "killed",
    	10: "bus Error",
    	11: "segmentation Fault",
    	12: "bad System Call",
    	13: "broken Pipe",
    	14: "alarm Clock",
    	15: "terminated",
    	16: "user Signal 1",
    	17: "user Signal 2",
    	18: "child Status Changed",
    	19: "power-Fail/Restart",
    	20: "window Size Change",
    	21: "urgent Socket Condition",
    	22: "pollable Event",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	for _, pod := range pods {
    		result = append(result, pod)
    	}
    
    	// There are scenarios where multiple pods are running in parallel having
    	// the same name, because one of them have not been fully terminated yet.
    	// To avoid unexpected behavior on container name based search (for example
    	// by calling *Kubelet.findContainer() without specifying a pod ID), we now
    	// return the list of pods ordered by their creation time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	// to recover a previously stored state. It must use [ParseSessionState] to
    	// deserialize the session state.
    	//
    	// If UnwrapSession returns an error, the connection is terminated. If it
    	// returns (nil, nil), the session is ignored. crypto/tls may still choose
    	// not to resume the returned session.
    	UnwrapSession func(identity []byte, cs ConnectionState) (*SessionState, error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. src/runtime/traceback.go

    // pointer to a struct:
    //
    //	struct {
    //		PC      uintptr // program counter to fetch information for
    //		File    *byte   // file name (NUL terminated)
    //		Lineno  uintptr // line number
    //		Func    *byte   // function name (NUL terminated)
    //		Entry   uintptr // function entry point
    //		More    uintptr // set non-zero if more info for this PC
    //		Data    uintptr // unused by runtime, available for function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    ## Changelog since v1.30.0
    
    ## Urgent Upgrade Notes
    
    ### (No, really, you MUST read this before you upgrade)
    
     - Kubelet flag `--keep-terminated-pod-volumes` was removed.  This flag was deprecated in 2017. ([#122082](https://github.com/kubernetes/kubernetes/pull/122082), [@carlory](https://github.com/carlory)) [SIG Apps, Node, Storage and Testing]
     
    ## Changes by Kind
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * Executes an external Java process.
         * <p>
         * The given action configures a {@link org.gradle.process.JavaExecSpec}, which is used to launch the process.
         * This method blocks until the process terminates, with its result being returned.
         *
         * @param action The action for configuring the execution.
         * @return the result of the execution
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/options/options_test.go

    	"--resource-quota-sync-period=10m",
    	"--route-reconciliation-period=30s",
    	"--secondary-node-eviction-rate=0.05",
    	"--service-account-private-key-file=/service-account-private-key",
    	"--terminated-pod-gc-threshold=12000",
    	"--unhealthy-zone-threshold=0.6",
    	"--use-service-account-credentials=true",
    	"--cert-dir=/a/b/c",
    	"--bind-address=192.168.4.21",
    	"--secure-port=10001",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top