Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 284 for fopacity (0.22 sec)

  1. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.css

        max-width: 320px;
        text-align: center;
        filter: grayscale(1);
        -webkit-filter: grayscale(1);
        opacity: 0.7;
    }
    
    .multi-language-selector .language-option.selected {
        background-color: #f7f7f8;
        color: #02303a;
        filter: none;
        -webkit-filter: none;
        opacity: 1;
    }
    
    .multi-language-text.hidden,
    .multi-language-selector ~ .multi-language-sample.hidden {
        display: none;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:27:34 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/index_test.go

    	return len(c.volumes)
    }
    
    // matchStorageCapacity is a matchPredicate used to sort and find volumes
    func matchStorageCapacity(pvA, pvB *v1.PersistentVolume) bool {
    	aQty := pvA.Spec.Capacity[v1.ResourceStorage]
    	bQty := pvB.Spec.Capacity[v1.ResourceStorage]
    	return aQty.Cmp(bQty) <= 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 44K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1alpha1/generated.proto

    //
    // 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: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  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. 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)
  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. 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