Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 284 for fopacity (0.13 sec)

  1. guava/src/com/google/common/collect/Queues.java

       * @since 12.0
       */
      @J2ktIncompatible
      @GwtIncompatible // LinkedBlockingDeque
      public static <E> LinkedBlockingDeque<E> newLinkedBlockingDeque(int capacity) {
        return new LinkedBlockingDeque<>(capacity);
      }
    
      /**
       * Creates a {@code LinkedBlockingDeque} with a capacity of {@link Integer#MAX_VALUE}, containing
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. src/runtime/mgclimit.go

    	test bool
    
    	bucket struct {
    		// Invariants:
    		// - fill >= 0
    		// - capacity >= 0
    		// - fill <= capacity
    		fill, capacity uint64
    	}
    	// overflow is the cumulative amount of GC CPU time that we tried to fill the
    	// bucket with but exceeded its capacity.
    	overflow uint64
    
    	// assistTimePool is the accumulated assist time since the last update.
    	assistTimePool atomic.Int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation.go

    	allErrs = append(allErrs, metav1validation.ValidateLabelSelector(capacity.NodeTopology, labelSelectorValidationOptions, field.NewPath("nodeTopology"))...)
    	for _, msg := range apivalidation.ValidateClassName(capacity.StorageClassName, false) {
    		allErrs = append(allErrs, field.Invalid(field.NewPath("storageClassName"), capacity.StorageClassName, msg))
    	}
    	if capacity.Capacity != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. pkg/kubelet/lifecycle/predicate_test.go

    				Status:     v1.NodeStatus{Capacity: makeResources(10, 20, 32, 0, 0, 0), Allocatable: makeAllocatableResources(10, 20, 32, 0, 0, 0)},
    			},
    			reasons: []PredicateFailureReason{
    				&InsufficientResourceError{ResourceName: v1.ResourceCPU, Requested: 8, Used: 5, Capacity: 10},
    				&InsufficientResourceError{ResourceName: v1.ResourceMemory, Requested: 10, Used: 19, Capacity: 20},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 23:13:50 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/framework_test.go

    // withExpectedCapacity sets the claim.Spec.Capacity of the first claim in the
    // array to given value and returns the array.  Meant to be used to compose
    // claims specified inline in a test.
    func withExpectedCapacity(capacity string, claims []*v1.PersistentVolumeClaim) []*v1.PersistentVolumeClaim {
    	claims[0].Status.Capacity = v1.ResourceList{
    		v1.ResourceName(v1.ResourceStorage): resource.MustParse(capacity),
    	}
    
    	return claims
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  6. cmd/metrics.go

    	totalDisks := offlineDisks.Merge(onlineDisks)
    
    	// Report total capacity
    	ch <- prometheus.MustNewConstMetric(
    		prometheus.NewDesc(
    			prometheus.BuildFQName(minioNamespace, "capacity_raw", "total"),
    			"Total capacity online in the cluster",
    			nil, nil),
    		prometheus.GaugeValue,
    		float64(GetTotalCapacity(server.Disks)),
    	)
    
    	// Report total capacity free
    	ch <- prometheus.MustNewConstMetric(
    		prometheus.NewDesc(
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_node_status.go

    		initialCapacity := initialNode.Status.Capacity[resourceName]
    		initialAllocatable := initialNode.Status.Allocatable[resourceName]
    
    		capacity, resourceIsSupported := existingNode.Status.Capacity[resourceName]
    		allocatable := existingNode.Status.Allocatable[resourceName]
    
    		// Add or update capacity if it the size was previously unsupported or has changed
    		if !resourceIsSupported || capacity.Cmp(initialCapacity) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. pkg/kubelet/images/image_gc_manager.go

    		return err
    	}
    
    	var capacity, available int64
    	if fsStats.CapacityBytes != nil {
    		capacity = int64(*fsStats.CapacityBytes)
    	}
    	if fsStats.AvailableBytes != nil {
    		available = int64(*fsStats.AvailableBytes)
    	}
    
    	if available > capacity {
    		klog.InfoS("Availability is larger than capacity", "available", available, "capacity", capacity)
    		available = capacity
    	}
    
    	// Check valid capacity.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/container_manager_linux.go

    	// Holds all the mounted cgroup subsystems
    	subsystems *CgroupSubsystems
    	nodeInfo   *v1.Node
    	// Interface for cgroup management
    	cgroupManager CgroupManager
    	// Capacity of this node.
    	capacity v1.ResourceList
    	// Capacity of this node, including internal resources.
    	internalCapacity v1.ResourceList
    	// Absolute cgroupfs path to a cgroup that Kubelet needs to place all pods under.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    e=knode-abc123\"\n\nThe following three cases all imply that no capacity is available for a certain combination: - no object exists with suitable topology and storage class name - such an object exists, but the capacity is unset - such an object exists, but the capacity is zero\n\nThe producer of these objects can decide which approach is more suitable.\n\nThey are consumed by the kube-scheduler when a CSI driver opts into capacity-aware scheduling with CSIDriverSpec.StorageCapacity. The scheduler...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
Back to top