Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for stops (0.06 sec)

  1. pkg/kubelet/kubelet_pods.go

    // terminate newly created containers and sandboxes.
    func (kl *Kubelet) killPod(ctx context.Context, pod *v1.Pod, p kubecontainer.Pod, gracePeriodOverride *int64) error {
    	// Call the container runtime KillPod method which stops all known running containers of the pod
    	if err := kl.containerRuntime.KillPod(ctx, pod, p, gracePeriodOverride); err != nil {
    		return err
    	}
    	if err := kl.containerManager.UpdateQOSCgroups(); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. samples/addons/grafana.yaml

    terpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"short"},"overrides":[]},"gridPos":{"h":8,"w":12,"x":0,"y":8},"id":4,"links":[],"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom","showLegend":true},"tool...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //	.swig, .swigcxx
    //		SWIG definition files.
    //	.syso
    //		System object files.
    //
    // Files of each of these types except .syso may contain build
    // constraints, but the go command stops scanning for build constraints
    // at the first item in the file that is not a blank line or //-style
    // line comment. See the go/build package documentation for
    // more details.
    //
    // # The go.mod file
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    		Duration: initialDuration,
    		Factor:   3,
    		Jitter:   0,
    		Steps:    6,
    	}
    	return wait.ExponentialBackoff(backoff, fn)
    }
    
    func simulateVolumeInUseUpdate(
    	volumeName v1.UniqueVolumeName,
    	stopCh <-chan struct{},
    	volumeManager kubeletvolume.VolumeManager) {
    	ticker := time.NewTicker(100 * time.Millisecond)
    	defer ticker.Stop()
    	for {
    		select {
    		case <-ticker.C:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	// that need to be sync'd. A one-second period is sufficient because the
    	// sync interval is defaulted to 10s.
    	syncTicker := time.NewTicker(time.Second)
    	defer syncTicker.Stop()
    	housekeepingTicker := time.NewTicker(housekeepingPeriod)
    	defer housekeepingTicker.Stop()
    	plegCh := kl.pleg.Watch()
    	const (
    		base   = 100 * time.Millisecond
    		max    = 5 * time.Second
    		factor = 2
    	)
    	duration := base
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	watcher, err := registry.WatchPredicate(testContext, matchPodName("foo"), podCreated.ResourceVersion, nil)
    	if err != nil {
    		t.Fatalf("Unexpected error: %v", err)
    	}
    	defer watcher.Stop()
    
    	if _, err := registry.DeleteCollection(testContext, rest.ValidateAllObjectFunc, nil, &metainternalversion.ListOptions{}); err != nil {
    		t.Fatalf("Unexpected error: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  7. cmd/object-handlers_test.go

    		// if object upload fails stop the test.
    		if err != nil {
    			t.Fatalf("Put Object case %d:  Error uploading object: <ERROR> %v", i+1, err)
    		}
    	}
    
    	// test cases with inputs and expected result for HeadObject.
    	testCases := []struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

        # And if somebody will start docker to build or pull something, logging will also be set up
        log-wrap 'AssembleDockerFlags' assemble-docker-flags
        # stop docker if it is present as we want to use just containerd
        log-wrap 'StopDocker' systemctl stop docker || echo "unable to stop docker"
      fi
    
      if [[ ! -e "/etc/profile.d/containerd_env.sh" ]]; then
        log-wrap 'SetupContainerd' setup-containerd
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. cmd/bucket-replication.go

    func (s *replicationResyncer) PersistToDisk(ctx context.Context, objectAPI ObjectLayer) {
    	resyncTimer := time.NewTimer(resyncTimeInterval)
    	defer resyncTimer.Stop()
    
    	// For each bucket name, store the last timestamp of the
    	// successful save of replication status in the backend disks.
    	lastResyncStatusSave := make(map[string]time.Time)
    
    	for {
    		select {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	cl := testingclock.NewFakeClock(time.Now())
    	logger, ctx := ktesting.NewTestContext(t)
    	ctx, cancel := context.WithCancel(ctx)
    	defer cancel()
    	q := NewTestQueue(ctx, newDefaultQueueSort(), WithClock(cl))
    	steps := []struct {
    		wantBackoff time.Duration
    	}{
    		{wantBackoff: time.Second},
    		{wantBackoff: 2 * time.Second},
    		{wantBackoff: 4 * time.Second},
    		{wantBackoff: 8 * time.Second},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top