Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for vol0 (0.05 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. 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)
  3. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %true = "tf.Const"() {value = dense<true> : tensor<i1>} : () -> tensor<i1>
    
      // CHECK: [[Val0:%.*]] = "tf.Mul"(%arg0, %arg1)
      // CHECK-SAME: device = "/job:localhost/replica:0/task:0/device:GPU:0"
      // CHECK-NEXT: [[Cast:%.*]] = "tf.Cast"([[Val0]])
      // CHECK-NEXT: return [[Cast]]
      %0 = "tf.IfRegion"(%true) ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          if (!c->Dim(s0, i).SameHandle(c->Dim(s1, i))) {
            int64_t val0 = c->Value(c->Dim(s0, i));
            int64_t val1 = c->Value(c->Dim(s1, i));
            // Negative value is treated as unknown so all negative values indicate
            // the same dimension.
            if (val0 >= 0 && val1 >= 0 && val0 != val1) return false;
          }
        }
        return true;
      };
    
      bool changed = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K 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