Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,191 for dilation (0.14 sec)

  1. security/pkg/k8s/chiron/utils.go

    	dnsName, caFilePath string, approveCsr, appendCaCert bool, requestedLifetime time.Duration,
    ) ([]byte, []byte, error) {
    	// 1. Submit the CSR
    	csr, err := submitCSR(client, csrData, signerName, usages, requestedLifetime)
    	if err != nil {
    		return nil, nil, err
    	}
    	log.Debugf("CSR (%v) has been created", csr.Name)
    
    	// clean up certificate request after deletion
    	defer func() {
    		_ = cleanupCSR(client, csr)
    	}()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 18:11:22 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set.go

    func (ssc *StatefulSetController) enqueueSSAfter(ss *apps.StatefulSet, duration time.Duration) {
    	key, err := controller.KeyFunc(ss)
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("couldn't get key for object %#v: %v", ss, err))
    		return
    	}
    	ssc.queue.AddAfter(key, duration)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. pkg/controller/podgc/gc_controller.go

    	nodeLister       corelisters.NodeLister
    	nodeListerSynced cache.InformerSynced
    
    	nodeQueue workqueue.TypedDelayingInterface[string]
    
    	terminatedPodThreshold int
    	gcCheckPeriod          time.Duration
    	quarantineTime         time.Duration
    }
    
    func NewPodGC(ctx context.Context, kubeClient clientset.Interface, podInformer coreinformers.PodInformer,
    	nodeInformer coreinformers.NodeInformer, terminatedPodThreshold int) *PodGCController {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. pkg/controller/replicaset/replica_set.go

    	}
    
    	rsc.queue.Add(key)
    }
    
    func (rsc *ReplicaSetController) enqueueRSAfter(rs *apps.ReplicaSet, duration time.Duration) {
    	key, err := controller.KeyFunc(rs)
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("couldn't get key for object %#v: %v", rs, err))
    		return
    	}
    
    	rsc.queue.AddAfter(key, duration)
    }
    
    func (rsc *ReplicaSetController) addRS(logger klog.Logger, obj interface{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // packet size to a virtual time, in our version this corresponds to
    // adding a service time (i.e., duration) to virtual time.
    //
    // The third difference is handled by modifying the algorithm to
    // dispatch based on an initial guess at the request’s service time
    // (duration) and then make the corresponding adjustments once the
    // request’s actual service time is known. This is similar, although
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. pkg/controller/serviceaccount/serviceaccounts_controller.go

    	ServiceAccountResync time.Duration
    
    	// NamespaceResync is the interval between full resyncs of Namespaces.
    	// If non-zero, all namespaces will be re-listed this often.
    	// Otherwise, re-list will be delayed as long as possible (until the watch is closed or times out).
    	NamespaceResync time.Duration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. pkg/controller/endpointslice/endpointslice_controller_test.go

    func TestPodAddsBatching(t *testing.T) {
    	t.Parallel()
    
    	type podAdd struct {
    		delay time.Duration
    	}
    
    	tests := []struct {
    		name             string
    		batchPeriod      time.Duration
    		adds             []podAdd
    		finalDelay       time.Duration
    		wantRequestCount int
    	}{
    		{
    			name:        "three adds with no batching",
    			batchPeriod: 0 * time.Second,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/lift_quantizable_spots_as_functions.mlir

    // CHECK-NEXT: %[[CONV2D_0:.*]] = "tf.Conv2D"(%arg0, %arg1)
    // CHECK-SAME: data_format = "NHWC", dilations = [1, 1, 1, 1], explicit_paddings = [], padding = "SAME", strides = [1, 1, 2, 1], use_cudnn_on_gpu = true
    // CHECK-SAME: attr_map = "0:strides,1:use_cudnn_on_gpu,2:padding,3:explicit_paddings,4:dilations"
    // CHECK-NEXT: %[[BIASADD_0:.*]] = "tf.BiasAdd"(%[[CONV2D_0]], %arg2)
    // CHECK-NEXT: %[[RELU6_0:.*]] = "tf.Relu6"(%[[BIASADD_0]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. pkg/controller/tainteviction/taint_eviction.go

    		}
    	}
    	return result
    }
    
    // getMinTolerationTime returns minimal toleration time from the given slice, or -1 if it's infinite.
    func getMinTolerationTime(tolerations []v1.Toleration) time.Duration {
    	minTolerationTime := int64(math.MaxInt64)
    	if len(tolerations) == 0 {
    		return 0
    	}
    
    	for i := range tolerations {
    		if tolerations[i].TolerationSeconds != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	logger := klog.FromContext(ctx)
    	if err := ctrl.volumes.store.Delete(volume); err != nil {
    		logger.Error(err, "Volume deletion encountered", "volumeName", volume.Name)
    	} else {
    		logger.V(4).Info("volume deleted", "volumeName", volume.Name)
    	}
    	// record deletion metric if a deletion start timestamp is in the cache
    	// the following calls will be a no-op if there is nothing for this volume in the cache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
Back to top