Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 737 for dilation (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. tensorflow/compiler/mlir/lite/quantization/tensorflow/tests/fallback_to_flex_ops_default.mlir

      %3 = "tf.AddV2"(%2, %1): (tensor<15x28x28x1xf32>, tensor<1xf32>) -> tensor<15x28x28x1xf32>
      func.return %2 : tensor<15x28x28x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/core.go

    		controllerContext.ClientBuilder.ClientOrDie("node-controller"),
    		controllerContext.ComponentConfig.KubeCloudShared.NodeMonitorPeriod.Duration,
    		controllerContext.ComponentConfig.NodeLifecycleController.NodeStartupGracePeriod.Duration,
    		controllerContext.ComponentConfig.NodeLifecycleController.NodeMonitorGracePeriod.Duration,
    		controllerContext.ComponentConfig.NodeLifecycleController.NodeEvictionRate,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    	if job.Spec.ActiveDeadlineSeconds == nil || job.Status.StartTime == nil || jobSuspended(job) {
    		return false
    	}
    	duration := jm.clock.Since(job.Status.StartTime.Time)
    	allowedDuration := time.Duration(*job.Spec.ActiveDeadlineSeconds) * time.Second
    	return duration >= allowedDuration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. pkg/proxy/apis/config/validation/validation_test.go

    				UDPTimeout:    metav1.Duration{Duration: 0 * time.Second},
    			},
    			expectedErrs: field.ErrorList{},
    		},
    		"IPVS Timeout > 0": {
    			config: kubeproxyconfig.KubeProxyIPVSConfiguration{
    				SyncPeriod:    metav1.Duration{Duration: 5 * time.Second},
    				TCPTimeout:    metav1.Duration{Duration: 1 * time.Second},
    				TCPFinTimeout: metav1.Duration{Duration: 2 * time.Second},
    				UDPTimeout:    metav1.Duration{Duration: 3 * time.Second},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/tensorflow/tests/fallback_to_flex_ops_legacy.mlir

      %3 = "tf.AddV2"(%2, %1): (tensor<15x28x28x1xf32>, tensor<1xf32>) -> tensor<15x28x28x1xf32>
      func.return %2 : tensor<15x28x28x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. pkg/controller/servicecidrs/servicecidrs_controller.go

    		c.queue.Add(key)
    	}
    }
    
    // addIPAddress may block a ServiceCIDR deletion
    func (c *Controller) addIPAddress(obj interface{}) {
    	ip, ok := obj.(*networkingapiv1alpha1.IPAddress)
    	if !ok {
    		return
    	}
    
    	for _, cidr := range c.containingServiceCIDRs(ip) {
    		c.queue.Add(cidr)
    	}
    }
    
    // deleteIPAddress may unblock a ServiceCIDR deletion
    func (c *Controller) deleteIPAddress(obj interface{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top