Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 231 for RangeTs (0.74 sec)

  1. tensorflow/compiler/mlir/lite/tests/prepare-tf-fake-quant-4bit.mlir

      func.return %0 : tensor<8x4xf32>
    
    // CHECK:  %[[fq:.*]] = "tf.FakeQuantWithMinMaxVarsPerChannel"(%arg0, %cst, %cst_0)
    // The last channel tests the code in quantization utils that expands very small ranges to be at least 1e-6.
    // CHECK:  %[[q:.*]] = "tfl.quantize"(%[[fq]]) <{qtype = tensor<8x4x!quant.uniform<u4:f32:1, {1.000000e+00,1.000000e+00:1,1.000000e+00,6.6666666666666668E-8:7}>>}>
    // CHECK:  %[[dq:.*]] = "tfl.dequantize"(%[[q]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. cluster/gce/config-default.sh

    NODE_IPAM_MODE=${KUBE_GCE_NODE_IPAM_MODE:-RangeAllocator}
    if [ "${ENABLE_IP_ALIASES}" = true ]; then
      # Number of Pods that can run on this node.
      MAX_PODS_PER_NODE=${MAX_PODS_PER_NODE:-110}
      # Size of ranges allocated to each node.
      IP_ALIAS_SIZE="/$(get-alias-range-size "${MAX_PODS_PER_NODE}")"
      export IP_ALIAS_SIZE
      IP_ALIAS_SUBNETWORK=${KUBE_GCE_IP_ALIAS_SUBNETWORK:-${INSTANCE_PREFIX}-subnet-default}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. pkg/util/iptree/iptree.go

    // is not the network address and also, if IPv4, is not the broadcast address.
    // This is required because the Kubernetes allocators reserve these addresses
    // so IPAddresses can not block deletion of this ranges.
    func prefixContainIP(prefix netip.Prefix, ip netip.Addr) bool {
    	// if the IP is the network address is not contained
    	if prefix.Masked().Addr() == ip {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/values.yaml

          # https://istio.io/docs/tasks/traffic-management/egress.html#calling-external-services-directly
          # example: includeIPRanges: "172.30.0.0/16,172.20.0.0/16"
          # would only capture egress traffic on those two IP Ranges, all other outbound traffic would
          # be allowed by the sidecar
          includeIPRanges: "*"
          excludeIPRanges: ""
          includeOutboundPorts: ""
          excludeOutboundPorts: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

            // for the resolution result to be stable
            // and for dynamic selectors, only the "stable" ones work, which is currently
            // only ranges because those are the only ones which accept a selection without
            // upgrading
            boolean accept = false;
            for (SelectorState selector : selectors) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge_test.go

    import (
    	"fmt"
    	"internal/goos"
    	"internal/runtime/atomic"
    	"math"
    	"math/rand"
    	. "runtime"
    	"testing"
    	"time"
    )
    
    // makePallocData produces an initialized PallocData by setting
    // the ranges of described in alloc and scavenge.
    func makePallocData(alloc, scavenged []BitRange) *PallocData {
    	b := new(PallocData)
    	for _, v := range alloc {
    		if v.N == 0 {
    			// Skip N==0. It's harmless and allocRange doesn't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. cluster/gce/config-test.sh

    export NODE_IPAM_MODE=${KUBE_GCE_NODE_IPAM_MODE:-RangeAllocator}
    if [ "${ENABLE_IP_ALIASES}" = true ]; then
      # Number of Pods that can run on this node.
      MAX_PODS_PER_NODE=${MAX_PODS_PER_NODE:-110}
      # Size of ranges allocated to each node.
      IP_ALIAS_SIZE="/$(get-alias-range-size "${MAX_PODS_PER_NODE}")"
      IP_ALIAS_SUBNETWORK=${KUBE_GCE_IP_ALIAS_SUBNETWORK:-${INSTANCE_PREFIX}-subnet-default}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  8. plugin/pkg/admission/limitranger/admission.go

    	items, err := l.lister.LimitRanges(a.GetNamespace()).List(labels.Everything())
    	if err != nil {
    		return nil, admission.NewForbidden(a, fmt.Errorf("unable to %s %v at this time because there was an error enforcing limit ranges", a.GetOperation(), a.GetResource()))
    	}
    
    	// if there are no items held in our indexer, check our live-lookup LRU, if that misses, do the live lookup to prime it.
    	if len(items) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 13:04:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  9. src/debug/elf/file.go

    		}
    		return b, nil
    	}
    
    	// There are many DWARf sections, but these are the ones
    	// the debug/dwarf package started with.
    	var dat = map[string][]byte{"abbrev": nil, "info": nil, "str": nil, "line": nil, "ranges": nil}
    	for i, s := range f.Sections {
    		suffix := dwarfSuffix(s)
    		if suffix == "" {
    			continue
    		}
    		if _, ok := dat[suffix]; !ok {
    			continue
    		}
    		b, err := sectionData(i, s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  10. src/runtime/mpagealloc_test.go

    				MakeAddrRange(PageBase(BaseChunkIdx+0x21, 0), PageBase(BaseChunkIdx+0x22, 0)),
    			},
    		},
    		"ManyDiscontiguous": {
    			// The initial cap is 16. Test 33 ranges, to exercise the growth path (twice).
    			chunks: []ChunkIdx{
    				BaseChunkIdx, BaseChunkIdx + 2, BaseChunkIdx + 4, BaseChunkIdx + 6,
    				BaseChunkIdx + 8, BaseChunkIdx + 10, BaseChunkIdx + 12, BaseChunkIdx + 14,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 19:16:48 UTC 2021
    - 32.6K bytes
    - Viewed (0)
Back to top