Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for volumeID (0.22 sec)

  1. pkg/apis/apps/validation/validation_test.go

    		Containers:    []api.Container{{Name: "abc", Image: "image", ImagePullPolicy: "IfNotPresent", TerminationMessagePolicy: api.TerminationMessageReadFile}},
    	}
    	validPodSpecVolume := api.PodSpec{
    		Volumes:       []api.Volume{{Name: "gcepd", VolumeSource: api.VolumeSource{GCEPersistentDisk: &api.GCEPersistentDiskVolumeSource{PDName: "my-PD", FSType: "ext4", Partition: 1, ReadOnly: false}}}},
    		RestartPolicy: api.RestartPolicyAlways,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/eviction_manager_test.go

    }
    
    func makePodWithDiskStats(name string, priority int32, requests v1.ResourceList, limits v1.ResourceList, rootFsUsed, logsUsed, perLocalVolumeUsed string, volumes []v1.Volume) (*v1.Pod, statsapi.PodStats) {
    	pod := newPod(name, priority, []v1.Container{
    		newContainer(name, requests, limits),
    	}, volumes)
    	podStats := newPodDiskStats(pod, parseQuantity(rootFsUsed), parseQuantity(logsUsed), parseQuantity(perLocalVolumeUsed))
    	return pod, podStats
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. pkg/registry/batch/job/strategy_test.go

    							DNSPolicy:     api.DNSClusterFirst,
    							Containers:    []api.Container{{Name: "abc", Image: "image", ImagePullPolicy: "IfNotPresent", TerminationMessagePolicy: api.TerminationMessageReadFile}},
    							Volumes:       []api.Volume{{Name: "volume-name"}},
    						},
    					},
    				},
    			},
    			wantJob: &batch.Job{
    				ObjectMeta: validObjectMeta,
    				Spec: batch.JobSpec{
    					Selector:       defaultSelector,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one_test.go

    	queuedPodStore := clientcache.NewFIFO(clientcache.MetaNamespaceKeyFunc)
    	pod := podWithID("foo", "")
    	pod.Namespace = "foo-ns"
    	pod.Spec.Volumes = append(pod.Spec.Volumes, v1.Volume{Name: "testVol",
    		VolumeSource: v1.VolumeSource{PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{ClaimName: "testPVC"}}})
    	queuedPodStore.Add(pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status_test.go

    		existingVolumes       []v1.UniqueVolumeName // volumes to initially populate volumeManager
    		existingNode          *v1.Node              // existing node object
    		expectedNode          *v1.Node              // new node object after patch
    		expectedReportedInUse []v1.UniqueVolumeName // expected volumes reported in use in volumeManager
    	}{
    		{
    			desc:         "no volumes and no update",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  6. cmd/admin-handlers.go

    		return
    	}
    
    	if err := parseForm(r); err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    	volume := r.Form.Get("volume")
    	if len(volume) == 0 {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrInvalidBucketName), r.URL)
    		return
    	}
    	file := r.Form.Get("file")
    	if len(file) == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * resource refers to a workgroup in a <code>smb1://workgroup/</code> URL,
     * <li> all browseable shares of a server including printers, IPC
     * services, or disk volumes if this resource is a server URL in the form
     * <code>smb1://server/</code>,
     * <li> or <code>null</code> if the resource cannot be resolved.
     * </ul>
     *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  8. pkg/apis/core/zz_generated.deepcopy.go

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

    func (in *Volume) DeepCopyInto(out *Volume) {
    	*out = *in
    	in.VolumeSource.DeepCopyInto(&out.VolumeSource)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Volume.
    func (in *Volume) DeepCopy() *Volume {
    	if in == nil {
    		return nil
    	}
    	out := new(Volume)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers_test.go

    		},
    		{
    			// Test name, num of containers, restarts, container ready status
    			pvc: api.PersistentVolumeClaim{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "test4",
    				},
    				Spec: api.PersistentVolumeClaimSpec{
    					VolumeName:       "my-volume",
    					StorageClassName: &myScn,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top