Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 2G (0.02 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    			expectCost: map[string]int64{
    				`isQuantity(self.val1)`: 3,
    				`isQuantity(self.val2)`: 3,
    				`isQuantity("200M")`:    1,
    				`isQuantity("20Mi")`:    1,
    				`quantity("200M") == quantity("0.2G") && quantity("0.2G") == quantity("200M")`:                                           6,
    				`quantity("2M") == quantity("0.002G") && quantity("2000k") == quantity("2M") && quantity("0.002G") == quantity("2000k")`: 9,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  2. plugin/pkg/admission/limitranger/admission_test.go

    	initInputs := []api.ResourceRequirements{getResourceRequirements(getComputeResourceList("200m", "1G"), getComputeResourceList("400m", "2G"))}
    	pod = validPodInit(validPod("limit-memory", 1, input), initInputs...)
    	expected = input
    	mergePodResourceRequirements(&pod, &defaultRequirements)
    	for i := range pod.Spec.Containers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			volumeName:             volumetesting.FailVolumeExpansion,
    			supportRemount:         true,
    			pvSize:                 resource.MustParse("10G"),
    			pvcStatusSize:          resource.MustParse("2G"),
    		},
    	}
    	modes := []v1.PersistentVolumeMode{v1.PersistentVolumeBlock, v1.PersistentVolumeFilesystem}
    
    	for modeIndex := range modes {
    		for tcIndex := range tests {
    			mode := modes[modeIndex]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ppc64/asm.go

    	// restriction for ISA 3.1 unless it becomes problematic.
    	t := ldr.SymAddr(rs) + r.Add()
    	if t < 0 || t >= 1<<31 {
    		ldr.Errorf(s, "relocation for %s is too big (>=2G): 0x%x", ldr.SymName(s), ldr.SymValue(rs))
    	}
    
    	// Note, relocations imported from external objects may not have cleared bits
    	// within a relocatable field. They need cleared before applying the relocation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
Back to top