Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for vol7 (0.04 sec)

  1. pkg/kubelet/kubelet_pods.go

    			for _, vol := range container.VolumeMounts {
    				volStatus := v1.VolumeMountStatus{
    					Name:      vol.Name,
    					MountPath: vol.MountPath,
    					ReadOnly:  vol.ReadOnly,
    				}
    				if vol.ReadOnly {
    					rroMode := v1.RecursiveReadOnlyDisabled
    					if b, err := resolveRecursiveReadOnly(vol, supportsRRO); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				// which is how integer literals are parsed from JSON for custom resources.
    				"double(self.val1) < self.val7",
    				"double(self.val2) == self.val7",
    				"double(self.val3) > self.val7",
    
    				"self.val1 < int(self.val7)",
    				"self.val2 == int(self.val7)",
    				"self.val3 > int(self.val7)",
    
    				"double(self.val1) < self.val8",
    				"double(self.val2) == self.val8",
    				"double(self.val3) > self.val8",
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_node_status_test.go

    			existingVolumes: []v1.UniqueVolumeName{"vol1"},
    			existingNode: &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{Name: testKubeletHostname, Labels: map[string]string{v1.LabelOSStable: goruntime.GOOS, v1.LabelArchStable: goruntime.GOARCH}},
    				Status: v1.NodeStatus{
    					VolumesInUse: []v1.UniqueVolumeName{"vol1"},
    				},
    			},
    			expectedReportedInUse: []v1.UniqueVolumeName{"vol1"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  4. 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),
    	}, vols)
    
    	var podStats statsapi.PodStats
    	switch name {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_generator.go

    type InTreeToCSITranslator interface {
    	IsPVMigratable(pv *v1.PersistentVolume) bool
    	IsInlineMigratable(vol *v1.Volume) bool
    	IsMigratableIntreePluginByName(inTreePluginName string) bool
    	GetInTreePluginNameFromSpec(pv *v1.PersistentVolume, vol *v1.Volume) (string, error)
    	GetCSINameFromInTreeName(pluginName string) (string, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/_aws/fess.json

            },
            "hungarian_keywords": {
              "type":       "keyword_marker",
              "keywords": ["Helló", "világ", "keresés"]
            },
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 23 12:38:28 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/_cloud/fess.json

            },
            "hungarian_keywords": {
              "type":       "keyword_marker",
              "keywords": ["Helló", "világ", "keresés"]
            },
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  8. cmd/site-replication.go

    type SRBucketDeleteOp string
    
    const (
    	// MarkDelete creates .minio.sys/buckets/.deleted/<bucket> vol entry to hold onto deleted bucket's state
    	// until peers are synced in site replication setup.
    	MarkDelete SRBucketDeleteOp = "MarkDelete"
    
    	// Purge deletes the .minio.sys/buckets/.deleted/<bucket> vol entry
    	Purge SRBucketDeleteOp = "Purge"
    	// NoOp no action needed
    	NoOp SRBucketDeleteOp = "NoOp"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top