Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 672 for fopacity (0.18 sec)

  1. pkg/volume/metrics_du.go

    }
    
    // getFsInfo writes metrics.Capacity and metrics.Available from the filesystem
    // info
    func (md *metricsDu) getFsInfo(metrics *Metrics) error {
    	available, capacity, _, inodes, inodesFree, _, err := fs.Info(md.path)
    	if err != nil {
    		return NewFsInfoFailedError(err)
    	}
    	metrics.Available = resource.NewQuantity(available, resource.BinarySI)
    	metrics.Capacity = resource.NewQuantity(capacity, resource.BinarySI)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 06 12:19:35 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. android/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
    - 16K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1alpha1/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: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. 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)
  5. pkg/volume/metrics_statfs.go

    }
    
    // getFsInfo writes metrics.Capacity, metrics.Used and metrics.Available from the filesystem info
    func (md *metricsStatFS) getFsInfo(metrics *Metrics) error {
    	available, capacity, usage, inodes, inodesFree, inodesUsed, err := fs.Info(md.path)
    	if err != nil {
    		return NewFsInfoFailedError(err)
    	}
    	metrics.Available = resource.NewQuantity(available, resource.BinarySI)
    	metrics.Capacity = resource.NewQuantity(capacity, resource.BinarySI)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 14:33:37 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestDataGenerator.java

                    return new BackgroundColor(index, redComponent(confidencePercentage), greenComponent(confidencePercentage), opacity(confidencePercentage));
                } else {
                    return null;
                }
            }
    
            // See TestDataGeneratorTest for examples
            private static double opacity(double confidencePercentage) {
                return (Math.abs(confidencePercentage) - THRESHOLD) / (100 - THRESHOLD);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio.go

    	rawScoringFunction := helper.BuildBrokenLinearFunction(scoringFunctionShape)
    	resourceScoringFunction := func(requested, capacity int64) int64 {
    		if capacity == 0 || requested > capacity {
    			return rawScoringFunction(maxUtilization)
    		}
    
    		return rawScoringFunction(requested * maxUtilization / capacity)
    	}
    	return func(requested, allocable []int64) int64 {
    		var nodeScore, weightSum int64
    		for i := range requested {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 15:23:47 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/memory_threshold_notifier.go

    	memcgThreshold := capacity.DeepCopy()
    	memcgThreshold.Sub(*evictionThresholdQuantity)
    	memcgThreshold.Add(*inactiveFile)
    
    	klog.V(3).InfoS("Eviction manager: setting notifier to capacity", "notifier", m.Description(), "capacity", memcgThreshold.String())
    	if m.notifier != nil {
    		m.notifier.Stop()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 21 00:36:14 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  9. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

      }
    
      /**
       * Creates an {@code MonitorBasedArrayBlockingQueue} with the given (fixed) capacity and default
       * access policy.
       *
       * @param capacity the capacity of this queue
       * @throws IllegalArgumentException if {@code capacity} is less than 1
       */
      public MonitorBasedArrayBlockingQueue(int capacity) {
        this(capacity, false);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  10. 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)
Back to top