Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 97 of 97 for zero (0.08 sec)

  1. cluster/gce/gci/configure-helper.sh

    # NOTE: this function is duplicated in configure.sh, any changes here should be
    # duplicated there as well.
    function log-error {
      local bootstep="$1"
    
      log-proto "${bootstep}" "${LOG_STATUS_ERROR}" "encountered non-zero exit code"
    }
    
    # Wraps a command with bootstrap logging.
    # Args:
    #   $1    : bootstrap step name.
    #   $2... : the command to run.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	// we kill the pod directly since we have lost all other information about the pod.
    	klog.V(4).InfoS("Orphaned running pod terminating without grace period", "pod", klog.KObj(pod), "podUID", pod.UID)
    	// TODO: this should probably be zero, to bypass any waiting (needs fixes in container runtime)
    	gracePeriod := int64(1)
    	if err := kl.killPod(ctx, pod, *runningPod, &gracePeriod); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

      local machine_type="$6"
    
      # First, ensure the template doesn't exist.
      # TODO(zmerlynn): To make this really robust, we need to parse the output and
      #                 add retries. Just relying on a non-zero exit code doesn't
      #                 distinguish an ephemeral failed call from a "not-exists".
      if gcloud compute instance-templates describe "${template_name}" --project "${PROJECT}" &>/dev/null; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.29.md

    - Fixed CEL estimated cost of `replace()` to handle a zero length replacement string correctly.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    					},
    				},
    			},
    			[]metav1.TableRow{{Cells: []interface{}{"test2", "1/3", "Running", "7 (10s ago)", "<unknown>"}}},
    		},
    		{
    			// Test pod has 2 restartable init containers completed with non-zero and 1 container completed
    			api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "test3"},
    				Spec: api.PodSpec{
    					InitContainers: []api.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. internal/grid/handlers.go

    	recycleReq  func(Req)
    	recycleResp func(Resp)
    }
    
    func recycleFunc[RT RoundTripper](newRT func() RT) (newFn func() RT, recycle func(r RT)) {
    	rAny := any(newRT())
    	var rZero RT
    	if _, ok := rAny.(Recycler); ok {
    		return newRT, func(r RT) {
    			if r != rZero {
    				if rc, ok := any(r).(Recycler); ok {
    					rc.Recycle()
    				}
    			}
    		}
    	}
    	pool := sync.Pool{
    		New: func() interface{} {
    			return newRT()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    - The `WaitFor` and `WaitForWithContext` functions in the wait package have now been marked private. Callers should use the equivalent `Poll*` method with a zero duration interval. ([#115116](https://github.com/kubernetes/kubernetes/pull/115116), [@smarterclayton](https://github.com/smarterclayton))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top