Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,094 for allocations (0.18 sec)

  1. manifests/addons/dashboards/pilot-dashboard.gen.json

             "type": "timeseries"
          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
             "description": "Details about memory allocations",
             "fieldConfig": {
                "defaults": {
                   "custom": {
                      "fillOpacity": 10,
                      "gradientMode": "hue",
                      "showPoints": "never"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. pkg/registry/core/service/allocator/storage/storage.go

    var _ allocator.Interface = &Etcd{}
    var _ rangeallocation.RangeRegistry = &Etcd{}
    
    // NewEtcd returns an allocator that is backed by Etcd and can manage
    // persisting the snapshot state of allocation after each allocation is made.
    func NewEtcd(alloc allocator.Snapshottable, baseKey string, config *storagebackend.ConfigForResource) (*Etcd, error) {
    	// note that newFunc, newListFunc and resourcePrefix
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/fiat/p256.go

    func (e *P256Element) Set(t *P256Element) *P256Element {
    	e.x = t.x
    	return e
    }
    
    // Bytes returns the 32-byte big-endian encoding of e.
    func (e *P256Element) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [p256ElementLen]byte
    	return e.bytes(&out)
    }
    
    func (e *P256Element) bytes(out *[p256ElementLen]byte) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    	// allocations. Where the page size is less than the physical page
    	// size, we already manage to do this by default.
    	needPhysPageAlign := physPageAlignedStacks && typ == spanAllocStack && pageSize < physPageSize
    
    	// If the allocation is small enough, try the page cache!
    	// The page cache does not support aligned allocations, so we cannot use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof.go

    // garbage collection; it elides more recent allocation to avoid skewing
    // the profile away from live data and toward garbage.
    // If there has been no garbage collection at all, the heap profile reports
    // all known allocations. This exception helps mainly in programs running
    // without garbage collection enabled, usually for debugging purposes.
    //
    // The heap profile tracks both the allocation sites for all live objects in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. pkg/scheduler/metrics/resources/resources.go

    // total container resource requests and to the total container limits which have a
    // non-zero quantity. The caller may avoid allocations of resource lists by passing
    // a requests and limits list to the function, which will be cleared before use.
    // This method is the same as v1resource.PodRequestsAndLimits but avoids allocating in several
    // scenarios for efficiency.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 23:15:53 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

    option go_package = "k8s.io/api/networking/v1alpha1";
    
    // ClusterCIDR represents a single configuration for per-Node Pod CIDR
    // allocations when the MultiCIDRRangeAllocator is enabled (see the config for
    // kube-controller-manager).  A cluster may have any number of ClusterCIDR
    // resources, all of which will be considered when allocating a CIDR for a
    // Node.  A ClusterCIDR is eligible to be used for a given Node when the node
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. pkg/kubelet/metrics/metrics.go

    			Name:           CPUManagerPinningRequestsTotalKey,
    			Help:           "The number of cpu core allocations which required pinning.",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	// CPUManagerPinningErrorsTotal tracks the number of times the pod spec required the cpu manager to pin cores, but the allocation failed
    	CPUManagerPinningErrorsTotal = metrics.NewCounter(
    		&metrics.CounterOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  9. pilot/pkg/xds/monitoring.go

    	xdsClientTracker[version] += delta
    	xdsClients.With(versionTag.Value(version)).Record(xdsClientTracker[version])
    }
    
    // triggerMetric is a precomputed monitoring.Metric for each trigger type. This saves on a lot of allocations
    var triggerMetric = map[model.TriggerReason]monitoring.Metric{
    	model.EndpointUpdate:  pushTriggers.With(typeTag.Value(string(model.EndpointUpdate))),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/cache_test.go

    		for i := 0; i < 100; i++ {
    			wg.Add(1)
    			go func() {
    				f()
    				wg.Done()
    			}()
    		}
    		wg.Wait()
    
    		allocs := testing.AllocsPerRun(100, f)
    		if allocs > 1 {
    			t.Errorf("Expected 1 allocations, got %v", allocs)
    		}
    	})
    }
    
    func TestSimpleCache(t *testing.T) {
    	fakeClock := testingclock.NewFakeClock(time.Now())
    	cache := newSimpleCache(fakeClock, 5*time.Second, "providerName")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 31 20:26:58 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top