Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 73 for rduration (0.22 sec)

  1. pkg/controller/garbagecollector/garbagecollector_test.go

    		pendingMap: map[T]struct{}{},
    	}
    }
    
    func (t *trackingWorkqueue[T]) Add(item T) {
    	t.queue(item)
    	t.limiter.Add(item)
    }
    func (t *trackingWorkqueue[T]) AddAfter(item T, duration time.Duration) {
    	t.Add(item)
    }
    func (t *trackingWorkqueue[T]) AddRateLimited(item T) {
    	t.Add(item)
    }
    func (t *trackingWorkqueue[T]) Get() (T, bool) {
    	item, shutdown := t.limiter.Get()
    	t.dequeue(item)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier_test.go

    	return nil
    }
    func (f *fakeIpvs) UpdateRealServer(*utilipvs.VirtualServer, *utilipvs.RealServer) error {
    	return nil
    }
    func (f *fakeIpvs) ConfigureTimeouts(time.Duration, time.Duration, time.Duration) error {
    	return nil
    }
    
    // fakeIPSetVersioner implements IPSetVersioner.
    type fakeIPSetVersioner struct {
    	version string
    	err     error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_control_test.go

    func TestStatefulSetAvailability(t *testing.T) {
    	tests := []struct {
    		name                   string
    		inputSTS               *apps.StatefulSet
    		expectedActiveReplicas int32
    		readyDuration          time.Duration
    	}{
    		{
    			name:                   "replicas running for required time, when minReadySeconds is enabled",
    			inputSTS:               setMinReadySeconds(newStatefulSet(1), int32(3600)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    // This function is executed by the main sync loop, so it must execute quickly
    // and all nested calls should be asynchronous. Any slow reconciliation actions
    // should be performed by other components (like the volume manager). The duration
    // of this call is the minimum latency for static pods to be restarted if they
    // are updated with a fixed UID (most should use a dynamic UID), and no config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller_test.go

    		}
    		var readyLast time.Time
    		ready := podutil.IsPodReady(pod)
    		if ready {
    			if c := podutil.GetPodReadyCondition(pod.Status); c != nil {
    				readyLast = c.LastTransitionTime.Time.Add(time.Duration(ds.Spec.MinReadySeconds) * time.Second)
    			}
    		}
    		nodeName, _ := util.GetTargetNodeName(pod)
    
    		lines = append(lines, fmt.Sprintf("node=%s current=%-5t ready=%-5t age=%-4d pod=%s now=%d available=%d",
    			nodeName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.4.md

    * Don't evict static pods ([#39059](https://github.com/kubernetes/kubernetes/pull/39059), [@bprashanth](https://github.com/bprashanth))
    * Provide kubernetes-controller-manager flags to control volume attach/detach reconciler sync.  The duration of the syncs can be controlled, and the syncs can be shut off as well.  ([#39551](https://github.com/kubernetes/kubernetes/pull/39551), [@chrislovecnm](https://github.com/chrislovecnm))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.5.md

    * Update fluentd-gcp addon to 1.28.1 ([#39706](https://github.com/kubernetes/kubernetes/pull/39706), [@ixdy](https://github.com/ixdy))
    * Provide kubernetes-controller-manager flags to control volume attach/detach reconciler sync.  The duration of the syncs can be controlled, and the syncs can be shut off as well.  ([#39551](https://github.com/kubernetes/kubernetes/pull/39551), [@chrislovecnm](https://github.com/chrislovecnm))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

      fi
      if [[ -n "${VOLUME_PLUGIN_DIR:-}" ]]; then
        params+=("--flex-volume-plugin-dir=${VOLUME_PLUGIN_DIR}")
      fi
      if [[ -n "${CLUSTER_SIGNING_DURATION:-}" ]]; then
        params+=("--cluster-signing-duration=$CLUSTER_SIGNING_DURATION")
      fi
      if [[ -n "${PV_RECYCLER_OVERRIDE_TEMPLATE:-}" ]]; then
        params+=("--pv-recycler-pod-template-filepath-nfs=$PV_RECYCLER_OVERRIDE_TEMPLATE")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
Back to top