Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 20G (0.18 sec)

  1. pkg/registry/core/persistentvolume/storage/storage_test.go

    		// updateFunc
    		func(obj runtime.Object) runtime.Object {
    			object := obj.(*api.PersistentVolume)
    			object.Spec.Capacity = api.ResourceList{
    				api.ResourceName(api.ResourceStorage): resource.MustParse("20G"),
    			}
    			return object
    		},
    	)
    }
    
    func TestDelete(t *testing.T) {
    	storage, _, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. src/strconv/testdata/testfp.txt

    # input with the given format.
    #
    # The formats are as in C's printf, except that %b means print
    # binary scientific notation: NpE = N x 2^E.
    
    # TODO:
    #	Powers of 10.
    #	Powers of 2.
    #	%.20g versions.
    #	random sources
    #	random targets
    #	random targets ± half a ULP
    
    # Difficult boundary cases, derived from tables given in
    #	Vern Paxson, A Program for Testing IEEE Decimal-Binary Conversion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 7.9K bytes
    - Viewed (0)
  3. src/fmt/fmt_test.go

    	{"%+20X", negInf, "                -Inf"},
    	{"% +20g", negInf, "                -Inf"},
    	{"%+-20G", posInf, "+Inf                "},
    	{"%20e", NaN, "                 NaN"},
    	{"%20x", NaN, "                 NaN"},
    	{"% +20E", NaN, "                +NaN"},
    	{"% +20X", NaN, "                +NaN"},
    	{"% -20g", NaN, " NaN                "},
    	{"%+-20G", NaN, "+NaN                "},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  4. hack/lib/golang.sh

    # Gigabytes necessary for parallel platform builds.
    # As of March 2021 (go 1.16/amd64), the RSS usage is 2GiB by using cached
    # memory of 15GiB.
    # This variable can be overwritten at your own risk.
    # It's defaulting to 20G to provide some headroom.
    readonly KUBE_PARALLEL_BUILD_MEMORY=${KUBE_PARALLEL_BUILD_MEMORY:-20}
    
    readonly KUBE_ALL_TARGETS=(
      "${KUBE_SERVER_TARGETS[@]}"
      "${KUBE_CLIENT_TARGETS[@]}"
      "${KUBE_TEST_TARGETS[@]}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/index_test.go

    			ObjectMeta: metav1.ObjectMeta{
    				UID:  "gce-pd-20",
    				Name: "gce004",
    			},
    			Spec: v1.PersistentVolumeSpec{
    				Capacity: v1.ResourceList{
    					v1.ResourceName(v1.ResourceStorage): resource.MustParse("20G"),
    				},
    				PersistentVolumeSource: v1.PersistentVolumeSource{
    					GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{},
    				},
    				AccessModes: []v1.PersistentVolumeAccessMode{
    					v1.ReadWriteOnce,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 44K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation_test.go

    			core.ReadWriteOnce,
    			core.ReadOnlyMany,
    		},
    		Resources: core.VolumeResourceRequirements{
    			Requests: core.ResourceList{
    				core.ResourceName(core.ResourceStorage): resource.MustParse("20G"),
    			},
    		},
    		VolumeName: "volume",
    	})
    	invalidUpdateClaimAccessModes := testVolumeClaim("foo", "ns", core.PersistentVolumeClaimSpec{
    		AccessModes: []core.PersistentVolumeAccessMode{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top