Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 623 for fopacity (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/api/storage/v1alpha1/types.go

    //
    // The 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
    //
    // The producer of these objects can decide which approach is more suitable.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 13.4K 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