Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 231 for fopacity (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	newCache := make([]*watchCacheEvent, capacity)
    	if capacity < w.capacity {
    		// adjust startIndex if cache capacity shrink.
    		w.startIndex = w.endIndex - capacity
    	}
    	for i := w.startIndex; i < w.endIndex; i++ {
    		newCache[i%capacity] = w.cache[i%w.capacity]
    	}
    	w.cache = newCache
    	metrics.RecordsWatchCacheCapacityChange(w.groupResource.String(), w.capacity, capacity)
    	w.capacity = capacity
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    	// To preserve behavior of tests that assume a given capacity,
    	// resize it to th expected size.
    	wc.capacity = capacity
    	wc.cache = make([]*watchCacheEvent, capacity)
    	wc.lowerBoundCapacity = min(capacity, defaultLowerBoundCapacity)
    	wc.upperBoundCapacity = max(capacity, defaultUpperBoundCapacity)
    
    	return wc
    }
    
    type immediateTickerFactory struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval_test.go

    			eventsAddedToWatchcache: capacity + bufferSize,
    			intervalStartIndex:      0,
    		},
    		{
    			name:                    "watchCache over propagated, eventsAddedToWatchcache > capacity, intervalStartIndex at some offset",
    			eventsAddedToWatchcache: capacity + bufferSize,
    			intervalStartIndex:      5,
    		},
    	}
    
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			wantInsufficientResources: []InsufficientResource{
    				{ResourceName: v1.ResourceCPU, Reason: getErrReason(v1.ResourceCPU), Requested: 1, Used: 10, Capacity: 10},
    				{ResourceName: v1.ResourceMemory, Reason: getErrReason(v1.ResourceMemory), Requested: 1, Used: 20, Capacity: 20},
    			},
    		},
    		{
    			pod: newResourceInitPod(newResourcePod(framework.Resource{MilliCPU: 1, Memory: 1}), framework.Resource{MilliCPU: 3, Memory: 1}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  5. pkg/kubelet/server/stats/volume_stat_calculator_test.go

    }
    
    func expectedMetrics() *volume.Metrics {
    	vMetrics := &volume.Metrics{
    		Available:  resource.NewQuantity(available, resource.BinarySI),
    		Capacity:   resource.NewQuantity(capacity, resource.BinarySI),
    		Used:       resource.NewQuantity(available-capacity, resource.BinarySI),
    		Inodes:     resource.NewQuantity(inodesTotal, resource.BinarySI),
    		InodesFree: resource.NewQuantity(inodesFree, resource.BinarySI),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. pkg/controller/volume/expand/expand_controller.go

    }
    
    // isNodeExpandComplete returns true if  pvc.Status.Capacity >= pv.Spec.Capacity
    func (expc *expandController) isNodeExpandComplete(logger klog.Logger, pvc *v1.PersistentVolumeClaim, pv *v1.PersistentVolume) bool {
    	logger.V(4).Info("pv and pvc capacity", "PV", klog.KObj(pv), "pvCapacity", pv.Spec.Capacity[v1.ResourceStorage], "PVC", klog.KObj(pvc), "pvcCapacity", pvc.Status.Capacity[v1.ResourceStorage])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/javadoc.css

          </svg>');
    }
    /*
     * Styles for header/section anchor links
     */
    a.anchor-link {
        opacity: 0;
        transition: opacity 0.1s;
    }
    :hover > a.anchor-link {
        opacity: 80%;
    }
    a.anchor-link:hover,
    a.anchor-link:focus-visible,
    a.anchor-link.visible {
        opacity: 100%;
    }
    a.anchor-link > img {
        width: 0.9em;
        height: 0.9em;
    }
    /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  8. pkg/kubelet/nodestatus/setters.go

    			for k, v := range devicePluginCapacity {
    				if old, ok := node.Status.Capacity[k]; !ok || old.Value() != v.Value() {
    					klog.V(2).InfoS("Updated capacity for device plugin", "plugin", k, "capacity", v.Value())
    				}
    				node.Status.Capacity[k] = v
    			}
    
    			for _, removedResource := range removedDevicePlugins {
    				klog.V(2).InfoS("Set capacity for removed resource to 0 on device removal", "device", removedResource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. pkg/volume/util/operationexecutor/node_expander_test.go

    	var tests = []struct {
    		name string
    		pvc  *v1.PersistentVolumeClaim
    		pv   *v1.PersistentVolume
    
    		// desired size, defaults to pv.Spec.Capacity
    		desiredSize *resource.Quantity
    		// actualSize, defaults to pvc.Status.Capacity
    		actualSize *resource.Quantity
    
    		// expectations of test
    		expectedResizeStatus     v1.ClaimResourceStatus
    		expectedStatusSize       resource.Quantity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/node_container_manager_linux.go

    func (cm *containerManagerImpl) GetNodeAllocatableAbsolute() v1.ResourceList {
    	return cm.getNodeAllocatableAbsoluteImpl(cm.capacity)
    }
    
    func (cm *containerManagerImpl) getNodeAllocatableAbsoluteImpl(capacity v1.ResourceList) v1.ResourceList {
    	result := make(v1.ResourceList)
    	for k, v := range capacity {
    		value := v.DeepCopy()
    		if cm.NodeConfig.SystemReserved != nil {
    			value.Sub(cm.NodeConfig.SystemReserved[k])
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top