Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,207 for dilation (0.32 sec)

  1. 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)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.td

          (NamedAttr<"explicit_paddings"> $explicit_paddings),
          (NamedAttr<"dilations"> $dilations))),
      [(IsNotInLiftedFunc $res)], [], (addBenefit 1)>;
    
    def LiftDepthwiseConv : Pat<
      (TF_DepthwiseConv2dNativeOp:$res $input, $filter, $strides, $padding,
        $explicit_paddings, IsDataFormatNHWC:$data_format, $dilations),
      (LiftAsTFPartitionedCall<"composite_depthwise_conv2d_fn">
        (ArgumentList $input, $filter),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions_drq.td

          (NamedAttr<"explicit_paddings"> $explicit_paddings),
          (NamedAttr<"dilations"> $dilations))),
      [(IsNotInLiftedFunc $res), (IsConstTensor $filter)], [], (addBenefit 1)>;
    
    def LiftDepthwiseConv : Pat<
      (TF_DepthwiseConv2dNativeOp:$res $input, $filter, $strides, $padding,
        $explicit_paddings, IsDataFormatNHWC:$data_format, $dilations),
      (LiftAsTFPartitionedCall<"composite_depthwise_conv2d_fn">
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/controller/namespace/deletion/namespaced_resources_deleter.go

    	}
    	if err != nil {
    		return 0, err
    	}
    	// determine if the estimate is greater than the deletion timestamp
    	duration := time.Since(namespaceDeletedAt.Time)
    	allowedEstimate := time.Duration(estimate) * time.Second
    	if duration >= allowedEstimate {
    		estimate = int64(0)
    	}
    	return estimate, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  7. 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)
  8. pkg/kubelet/prober/worker.go

    	ctx := context.Background()
    	probeTickerPeriod := time.Duration(w.spec.PeriodSeconds) * time.Second
    
    	// If kubelet restarted the probes could be started in rapid succession.
    	// Let the worker wait for a random portion of tickerPeriod before probing.
    	// Do it only if the kubelet has started recently.
    	if probeTickerPeriod > time.Since(w.probeManager.start) {
    		time.Sleep(time.Duration(rand.Float64() * float64(probeTickerPeriod)))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. pkg/serviceaccount/claims.go

    		Audience:  jwt.Audience(audience),
    		IssuedAt:  jwt.NewNumericDate(now),
    		NotBefore: jwt.NewNumericDate(now),
    		Expiry:    jwt.NewNumericDate(now.Add(time.Duration(expirationSeconds) * time.Second)),
    	}
    	if utilfeature.DefaultFeatureGate.Enabled(features.ServiceAccountTokenJTI) {
    		sc.ID = newUUID()
    	}
    	pc := &privateClaims{
    		Kubernetes: kubernetes{
    			Namespace: sa.Namespace,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.td

        (TF_CastOp (TF_IdentityOp $filter), $truncate1),
        $strides, $use_cudnn, $padding, $explicit_padding,
        IsDataFormatNHWC:$data_format, $dilations),
      (CreateXLAConvOpFromTFConv2DOp
        $input, $filter, $input_zp, $conv, $strides,
        $dilations, $padding, $explicit_padding),
      [(IsInt8ElementType $input),
       (IsInt8ElementType $filter),
       (IsConstTensor $input_zp),
       (IsConstTensor $filter),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 21.1K bytes
    - Viewed (0)
Back to top