Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for 50Mi (0.02 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/volume_binding_test.go

    				makeNode("node-a").Node,
    				makeNode("node-b").Node,
    				makeNode("node-c").Node,
    			},
    			pvcs: []*v1.PersistentVolumeClaim{
    				makePVC("pvc-a", waitSC.Name).withRequestStorage(resource.MustParse("50Gi")).PersistentVolumeClaim,
    			},
    			pvs: []*v1.PersistentVolume{
    				makePV("pv-a-0", waitSC.Name).
    					withPhase(v1.VolumeAvailable).
    					withCapacity(resource.MustParse("200Gi")).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 32K bytes
    - Viewed (0)
  2. plugin/pkg/admission/resourcequota/admission_test.go

    				corev1.ResourcePods:   resource.MustParse("5"),
    			},
    			Used: corev1.ResourceList{
    				corev1.ResourceCPU:    resource.MustParse("1"),
    				corev1.ResourceMemory: resource.MustParse("50Gi"),
    				corev1.ResourcePods:   resource.MustParse("3"),
    			},
    		},
    	}
    	stopCh := make(chan struct{})
    	defer close(stopCh)
    
    	kubeClient := fake.NewSimpleClientset(resourceQuota)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  3. src/fmt/example_test.go

    	// after the imaginary part.
    	point := 110.7 + 22.5i
    	fmt.Printf("%v %g %.2f %.2e\n", point, point, point, point)
    	// Result: (110.7+22.5i) (110.7+22.5i) (110.70+22.50i) (1.11e+02+2.25e+01i)
    
    	// Runes are integers but when printed with %c show the character with that
    	// Unicode value. The %q verb shows them as quoted characters, %U as a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 21:03:10 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  4. pkg/controller/resourcequota/resource_quota_controller_test.go

    			Spec: v1.PodSpec{
    				Volumes:           []v1.Volume{{Name: "vol"}},
    				Containers:        []v1.Container{{Name: "ctr", Image: "image", Resources: getResourceRequirements(getResourceList("500m", "50Gi"), getResourceList("", ""))}},
    				PriorityClassName: "high",
    			},
    		},
    		&v1.Pod{
    			ObjectMeta: metav1.ObjectMeta{Name: "pod-running-2", Namespace: "testing"},
    			Status:     v1.PodStatus{Phase: v1.PodRunning},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
Back to top