Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 376 for termination (0.25 sec)

  1. pkg/controller/statefulset/stateful_set_test.go

    	if err != nil {
    		t.Error(err)
    	}
    	pods, err = om.podsLister.Pods(set.Namespace).List(selector)
    	if err != nil {
    		t.Error(err)
    	}
    	if len(pods) != 5 {
    		t.Error("StatefulSet does not respect termination")
    	}
    	sort.Sort(ascendingOrdinal(pods))
    	spc.DeleteStatefulPod(set, pods[3])
    	spc.DeleteStatefulPod(set, pods[4])
    	*set.Spec.Replicas = 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react
      // by sending a graceful termination signal to the containers in the pod. After that 30 seconds,
      // the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup,
      // remove the pod from the API. In the presence of network partitions, this object may still
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react
      // by sending a graceful termination signal to the containers in the pod. After that 30 seconds,
      // the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup,
      // remove the pod from the API. In the presence of network partitions, this object may still
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. src/cmd/cover/cover.go

    		}
    		pos = list[0].Pos()
    		insertPos = pos
    	}
    }
    
    // hasFuncLiteral reports the existence and position of the first func literal
    // in the node, if any. If a func literal appears, it usually marks the termination
    // of a basic block because the function body is itself a block.
    // Therefore we draw a line at the start of the body of the first function literal we find.
    // TODO: what if there's more than one? Probably doesn't matter much.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. pkg/features/kube_features.go

    	// beta: v1.29
    	//
    	// Introduces sidecar containers, a new type of init container that starts
    	// before other containers but remains running for the full duration of the
    	// pod's lifecycle and will not block pod termination.
    	SidecarContainers featuregate.Feature = "SidecarContainers"
    
    	// owner: @derekwaynecarr
    	// alpha: v1.20
    	// beta: v1.22
    	//
    	// Enables kubelet support to size memory backed volumes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. CREDITS

    2.1 of this License shall terminate.
    
    5.3. In the event of termination under Sections 5.1 or 5.2 above, all
    end user license agreements (excluding distributors and resellers) which
    have been validly granted by You or Your distributors under this License
    prior to termination shall survive termination.
    
    ************************************************************************
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.28.md

    - Fixed the preStop hook will block the pod termination grace period ([#115835](https://github.com/kubernetes/kubernetes/pull/115835), [@HirazawaUi](https://github.com/HirazawaUi)) [SIG Node and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react
    	// by sending a graceful termination signal to the containers in the pod. After that 30 seconds,
    	// the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup,
    	// remove the pod from the API. In the presence of network partitions, this object may still
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  9. staging/src/k8s.io/apiserver/pkg/server/config.go

    	StorageObjectCountTracker flowcontrolrequest.StorageObjectCountTracker
    
    	// ShutdownSendRetryAfter dictates when to initiate shutdown of the HTTP
    	// Server during the graceful termination of the apiserver. If true, we wait
    	// for non longrunning requests in flight to be drained and then initiate a
    	// shutdown of the HTTP Server. If false, we initiate a shutdown of the HTTP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/edit.go

    	// downgrades. I really want to be able to prove that editRequirements
    	// terminates, and the easiest way to prove it is to add this map.
    	//
    	// Then the proof of termination is this:
    	// On every iteration where we mark the roots as dirty, we add some new module
    	// version to the map. The universe of module versions is finite, so we must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top