Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for fopacity (0.19 sec)

  1. test/fixedbugs/issue30116.out

                           slice[-9876543210:4] runtime error: slice bounds out of range [:4] with capacity 3
                  slice[-9876543210:9876543210] runtime error: slice bounds out of range [:9876543210] with capacity 3
                          slice[-1:-9876543210] runtime error: slice bounds out of range [:-9876543210]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 17:33:38 UTC 2019
    - 53.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/kubelet/cm/devicemanager/manager_test.go

    				t.Fatalf("timeout while waiting for manager update")
    			}
    			capacity, allocatable, _ := m.GetCapacity()
    			resourceCapacity := capacity[v1.ResourceName(testResourceName)]
    			resourceAllocatable := allocatable[v1.ResourceName(testResourceName)]
    			require.Equal(t, resourceCapacity.Value(), resourceAllocatable.Value(), "capacity should equal to allocatable")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. pkg/apis/storage/validation/validation_test.go

    			capacity: func() *storage.CSIStorageCapacity {
    				capacity := goodCapacity
    				capacity.StorageClassName = invalidName
    				return &capacity
    			}(),
    		},
    		"good-capacity-value": {
    			capacity: func() *storage.CSIStorageCapacity {
    				capacity := goodCapacity
    				capacity.Capacity = resource.NewQuantity(1, resource.BinarySI)
    				return &capacity
    			}(),
    		},
    		"bad-capacity-value": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  6. pkg/kubelet/nodestatus/setters_test.go

    					},
    				},
    			},
    		},
    		{
    			desc: "hugepages reservation greater than node memory capacity should result in memory capacity set to 0",
    			node: &v1.Node{
    				Status: v1.NodeStatus{
    					Capacity: v1.ResourceList{
    						v1.ResourceHugePagesPrefix + "test": *resource.NewQuantity(1025, resource.BinarySI),
    					},
    				},
    			},
    			maxPods: 110,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/helpers.go

    			klogV.InfoS("Eviction manager:", "log", logPrefix, "signal", k, "resourceName", signalToResource[k], "available", v.available, "capacity", v.capacity, "time", v.time)
    		} else {
    			klogV.InfoS("Eviction manager:", "log", logPrefix, "signal", k, "resourceName", signalToResource[k], "available", v.available, "capacity", v.capacity)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	}
    }
    
    func TestCheckVolumeFSResize(t *testing.T) {
    	setCapacity := func(pv *v1.PersistentVolume, pvc *v1.PersistentVolumeClaim, capacity int) {
    		pv.Spec.Capacity = volumeCapacity(capacity)
    		pvc.Spec.Resources.Requests = volumeCapacity(capacity)
    	}
    
    	testcases := []struct {
    		resize      func(*testing.T, *v1.PersistentVolume, *v1.PersistentVolumeClaim, *desiredStateOfWorldPopulator)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    		Spec: v1.PersistentVolumeClaimSpec{
    			VolumeName: "volume-name",
    			VolumeMode: &mode,
    		},
    		Status: v1.PersistentVolumeClaimStatus{
    			Phase:    v1.ClaimBound,
    			Capacity: gcepv.Spec.Capacity,
    		},
    	}
    
    	// Arrange
    	volumePluginMgr, fakePlugin := volumetesting.GetTestKubeletVolumePluginMgr(t)
    	seLinuxTranslator := util.NewFakeSELinuxLabelTranslator()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			},
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(nodeRes).Obj(),
    				st.MakeNode().Name("node2").Capacity(nodeRes).Obj(),
    				st.MakeNode().Name("node3").Capacity(nodeRes).Obj(),
    				st.MakeNode().Name("node4").Capacity(nodeRes).Obj(),
    			},
    			filteredNodesStatuses: framework.NodeToStatusMap{
    				"node1": framework.NewStatus(framework.Unschedulable),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top