Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,133 for allocm (0.24 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/odml-to-stablehlo-allow-tf.mlir

    // RUN: odml_to_stablehlo %s --allow-tf=false -o /tmp/temp.mlir; [ -f /tmp/temp.mlir ]; [ -f /tmp/debug_stablehlo.mlir ]
    // RUN: odml_to_stablehlo %s --allow-tf=true -o /tmp/temp2.mlir; [ -f /tmp/temp2.mlir ]
    
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 975 : i32}, tf_saved_model.semantics}  {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 18:33:43 UTC 2024
    - 914 bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/bitmap.go

    		return a
    	}
    	return b
    }
    
    // Free returns the count of IP addresses left in the range.
    func (r *Range) Free() int {
    	return r.alloc.Free()
    }
    
    // Used returns the count of IP addresses used in the range.
    func (r *Range) Used() int {
    	return r.max - r.alloc.Free()
    }
    
    // CIDR returns the CIDR covered by the range.
    func (r *Range) CIDR() net.IPNet {
    	return *r.net
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. test/fixedbugs/issue15277.go

    	if delta := inuse() - start; delta < 9<<20 {
    		println("after alloc: expected delta at least 9MB, got: ", delta)
    	}
    	runtime.KeepAlive(x)
    	x = nil
    	if delta := inuse() - start; delta > 1<<20 {
    		println("after drop: expected delta below 1MB, got: ", delta)
    	}
    	x = new(big)
    	if delta := inuse() - start; delta < 9<<20 {
    		println("second alloc: expected delta at least 9MB, got: ", delta)
    	}
    	runtime.KeepAlive(x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 851 bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge_test.go

    	"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
    			// handle this case.
    			continue
    		}
    		b.AllocRange(v.I, v.N)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. pkg/kubelet/status/state/state.go

    func (pr PodResourceAllocation) Clone() PodResourceAllocation {
    	prCopy := make(PodResourceAllocation)
    	for pod := range pr {
    		prCopy[pod] = make(map[string]v1.ResourceList)
    		for container, alloc := range pr[pod] {
    			prCopy[pod][container] = alloc.DeepCopy()
    		}
    	}
    	return prCopy
    }
    
    // Reader interface used to read current pod resource allocation state
    type Reader interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/tcp/allow-both-http-tcp-in.yaml

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: httpbin-deny
      namespace: foo
    spec:
      action: ALLOW
      rules:
        - from:
            - source:
                requestPrincipals: ["id-1"]
          to:
            - operation:
                methods: ["GET"]
        - from:
            - source:
                namespaces: ["ns-1"]
          to:
            - operation:
                ports: ["8080"]
                methods: ["GET"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 12 19:47:37 UTC 2022
    - 706 bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/http/allow-host-before-111-in.yaml

    jacob-delgado <******@****.***> 1631293376 -0600
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 10 17:02:56 UTC 2021
    - 390 bytes
    - Viewed (0)
  8. hack/grab-profiles.sh

            ;;
          mem)
            # There are different kinds of memory profiles that are available that
            # had to be grabbed separately: --inuse-space, --inuse-objects,
            # --alloc-space, --alloc-objects. We need to iterate over all requested
            # kinds.
            for flag in ${mem_pprof_flags}; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 17 06:47:05 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc.go

    // computeConcurrencyAllocation returns the unique `allocs []float64`, and
    // an associated `fairProp float64`, that jointly have
    // all of the following properties (to the degree that floating point calculations allow)
    // if possible otherwise returns an error saying why it is impossible.
    // `allocs` sums to `requiredSum`.
    // For each J in [0, len(classes)):
    //  1. `classes[J].lowerBound <= allocs[J] <= classes[J].upperBound` and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  10. pkg/controller/nodeipam/ipam/cidrset/cidr_set_test.go

    		}
    		em := testMetrics{
    			usage:      float64(i) / float64(256),
    			allocs:     float64(i),
    			releases:   0,
    			allocTries: 0,
    			max:        float64(max),
    		}
    		expectMetrics(t, cidr, em)
    	}
    	// Release all
    	a.Release(clusterCIDR)
    	em = testMetrics{
    		usage:      0,
    		allocs:     256,
    		releases:   256,
    		allocTries: 0,
    		max:        float64(max),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 08:53:03 UTC 2023
    - 29.5K bytes
    - Viewed (0)
Back to top