Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for sizeLimit (0.1 sec)

  1. pkg/kubelet/eviction/eviction_manager_test.go

    	vol := newVolume("local-volume", v1.VolumeSource{
    		EmptyDir: &v1.EmptyDirVolumeSource{
    			SizeLimit: resource.NewQuantity(requests.Memory().Value(), resource.BinarySI),
    		},
    	})
    	var vols []v1.Volume
    	vols = append(vols, vol)
    	pod := newPod(name, priority, []v1.Container{
    		newContainer(name, requests, limits),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. pkg/apis/core/zz_generated.deepcopy.go

    func (in *EmptyDirVolumeSource) DeepCopyInto(out *EmptyDirVolumeSource) {
    	*out = *in
    	if in.SizeLimit != nil {
    		in, out := &in.SizeLimit, &out.SizeLimit
    		x := (*in).DeepCopy()
    		*out = &x
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EmptyDirVolumeSource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *EmptyDirVolumeSource) DeepCopyInto(out *EmptyDirVolumeSource) {
    	*out = *in
    	if in.SizeLimit != nil {
    		in, out := &in.SizeLimit, &out.SizeLimit
    		x := (*in).DeepCopy()
    		*out = &x
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EmptyDirVolumeSource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
Back to top