Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 20G (0.14 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. 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)
  3. 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