Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for calculations (0.17 sec)

  1. pilot/pkg/networking/core/cluster.go

    	"istio.io/istio/pkg/security"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // deltaConfigTypes are used to detect changes and trigger delta calculations. When config updates has ONLY entries
    // in this map, then delta calculation is triggered.
    var deltaConfigTypes = sets.New(kind.ServiceEntry.String(), kind.DestinationRule.String())
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // We need constant input shape to perform padding calculations later.
        DenseIntElementsAttr input_shape_attr;
        if (!matchPattern(op.getShape(), m_Constant(&input_shape_attr)))
          return failure();
    
        // We also need constant begin/end indices and strides to perform padding
        // calculations.
        // Bounded shape after performing strided slice
        SmallVector<int64_t, 4> shape;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (1)
  3. pkg/controller/job/job_controller.go

    	// When adopting Pods, this operation adds an ownerRef and finalizers.
    	pods, err = cm.ClaimPods(ctx, pods)
    	if err != nil {
    		return pods, err
    	}
    	// Set finalizer on adopted pods for the remaining calculations.
    	for i, p := range pods {
    		adopted := true
    		for _, r := range p.OwnerReferences {
    			if r.UID == j.UID {
    				adopted = false
    				break
    			}
    		}
    		if adopted && !hasJobTrackingFinalizer(p) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (1)
  4. cmd/signature-v4-utils.go

    		case "content-length":
    			// Signature-V4 spec excludes Content-Length from signed headers list for signature calculation.
    			// But some clients deviate from this rule. Hence we consider Content-Length for signature
    			// calculation to be compatible with such clients.
    			extractedSignedHeaders.Set(header, strconv.FormatInt(r.ContentLength, 10))
    		default:
    			return nil, ErrUnsignedHeaders
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 9.1K bytes
    - Viewed (1)
  5. src/cmd/link/internal/ld/data.go

    //
    // The same applies to Darwin/ARM64, with 2^27 byte threshold.
    //
    // Similarly for ARM, we split sections (at 2^25 bytes) to avoid
    // inconsistencies between the Go linker's reachability calculations
    // (e.g. will direct call from X to Y need a trampoline) and similar
    // machinery in the external linker; see #58425 for more on the
    // history here.
    func splitTextSections(ctxt *Link) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  6. manifests/addons/dashboards/lib/panels.libsonnet

        base(title, targets, desc=''):
          heatmap.new(title)
          + heatmap.queryOptions.withTargets(targets)
          + heatmap.queryOptions.withInterval('1m')
          + options.calculation.xBuckets.withMode('size')
          + options.calculation.xBuckets.withValue('1min')
          + options.withCellGap(0)
          + options.color.withMode('scheme')
          + options.color.withScheme('Spectral')
          + options.color.withSteps(128)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (2)
  7. CHANGELOG/CHANGELOG-1.29.md

    - Optimized `NodeUnschedulable` Filter to avoid unnecessary calculations. ([#119399](https://github.com/kubernetes/kubernetes/pull/119399), [@wackxu](https://github.com/wackxu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/pilot-dashboard.gen.json

             "gridPos": {
                "h": 10,
                "w": 8,
                "x": 8,
                "y": 14
             },
             "id": 13,
             "interval": "1m",
             "options": {
                "calculation": {
                   "xBuckets": {
                      "mode": "size",
                      "value": "1min"
                   }
                },
                "cellGap": 0,
                "color": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

    private class BuilderCache<From, To : KaSymbol> {
        private val cache = ContainerUtil.createConcurrentWeakKeySoftValueMap<From, To>()
    
        inline fun <reified S : To> cache(key: From, calculation: () -> S): S {
            val value = cache.getOrPut(key, calculation)
            return value as? S
                ?: errorWithAttachment("Cannot cast ${value::class} to ${S::class}") {
                    withEntry("value", value.toString())
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    Dequantize the 'input' tensor into a float or bfloat16 Tensor.
      }];
    
      let description = [{
    [min_range, max_range] are scalar floats that specify the range for
    the output. The 'mode' attribute controls exactly which calculations are
    used to convert the float values to their quantized equivalents.
    
    In 'MIN_COMBINED' mode, each value of the tensor will undergo the following:
    
    ```
    if T == qint8: in[i] += (range(T) + 1)/ 2.0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top