Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 672 for fopacity (0.2 sec)

  1. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceReport.js

    }
    
    function enableSectionSign() {
        $('.data-row').mouseenter(function () {
            $('#section-sign-' + $(this).attr('scenario')).css('opacity', '1');
        }).mouseleave(function () {
            $('#section-sign-' + $(this).attr('scenario')).css('opacity', '0');
        });
    
        $('.section-sign').click(function () {
            var $temp = $("<input>");
            $("body").append($temp);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. 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)
  4. pkg/volume/csi/nodeinfomanager/nodeinfomanager_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			Name:        "node1",
    			Annotations: annotations,
    			Labels:      labels,
    		},
    	}
    
    	if len(capacity) > 0 {
    		node.Status.Capacity = v1.ResourceList(capacity)
    		node.Status.Allocatable = v1.ResourceList(capacity)
    	}
    	return node
    }
    
    func marshall(nodeIDs nodeIDMap) string {
    	b, _ := json.Marshal(nodeIDs)
    	return string(b)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 17 02:02:59 UTC 2022
    - 34.3K bytes
    - Viewed (0)
  5. 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)
  6. pkg/kubelet/cm/container_manager_windows.go

    	machineInfo, err := cadvisorInterface.MachineInfo()
    	if err != nil {
    		return nil, err
    	}
    	capacity := cadvisor.CapacityFromMachineInfo(machineInfo)
    
    	cm := &containerManagerImpl{
    		capacity:          capacity,
    		nodeConfig:        nodeConfig,
    		cadvisorInterface: cadvisorInterface,
    	}
    
    	cm.topologyManager = topologymanager.NewFakeManager()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 11:25:36 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. plugin/pkg/admission/storage/persistentvolume/resize/admission_test.go

    					Resources: api.VolumeResourceRequirements{
    						Requests: getResourceList("1Gi"),
    					},
    					StorageClassName: &goldClassName,
    				},
    				Status: api.PersistentVolumeClaimStatus{
    					Capacity: getResourceList("1Gi"),
    					Phase:    api.ClaimBound,
    				},
    			},
    			newObj: &api.PersistentVolumeClaim{
    				Spec: api.PersistentVolumeClaimSpec{
    					VolumeName: "volume1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top