Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 132 for read_only (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

                                              bool read_only) {
      VLOG(4) << "    Updating access for resource " << resource_id;
      op_to_resource_ids_[op].push_back({resource_id, read_only});
    
      // For unknown ID case, first update access info for all other resource IDs.
      if (resource_id == kUnknownResourceId) {
        if (read_only) {
          // New unknown read is not tracked by any other access.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

                                    bool read_only);
    
      // Updates resource access for given `resource_id` and `op` in
      // `per_resource_access_info_` and `op_to_resource_ids_`.
      void UpdateAccess(ResourceId resource_id, Operation* op, bool read_only);
    
      // Returns true iff the last unknown resource access is already indirectly
      // tracked by a previous `resource` access. `read_only` specifies the type of
      // access considered.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/Files.java

       * @see FileChannel#map(MapMode, long, long)
       * @since 2.0
       */
      public static MappedByteBuffer map(File file) throws IOException {
        checkNotNull(file);
        return map(file, MapMode.READ_ONLY);
      }
    
      /**
       * Fully maps a file in to memory as per {@link
       * FileChannel#map(java.nio.channels.FileChannel.MapMode, long, long)} using the requested {@link
       * MapMode}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/Files.java

       * @see FileChannel#map(MapMode, long, long)
       * @since 2.0
       */
      public static MappedByteBuffer map(File file) throws IOException {
        checkNotNull(file);
        return map(file, MapMode.READ_ONLY);
      }
    
      /**
       * Fully maps a file in to memory as per {@link
       * FileChannel#map(java.nio.channels.FileChannel.MapMode, long, long)} using the requested {@link
       * MapMode}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/controlplane/volumes_test.go

    			}
    			if volMount.MountPath != hostMount.MountPath {
    				t.Errorf("Expected container path %q", hostMount.MountPath)
    			}
    			if volMount.ReadOnly != hostMount.ReadOnly {
    				t.Errorf("Expected volume readOnly setting %t", hostMount.ReadOnly)
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_linux_test.go

    						Name:             "disk",
    						ReadOnly:         false,
    						MountPropagation: &propagationHostToContainer,
    					},
    					{
    						MountPath:        "/mnt/path3",
    						Name:             "disk",
    						ReadOnly:         true,
    						MountPropagation: &propagationNone,
    					},
    					{
    						MountPath: "/mnt/path4",
    						Name:      "disk4",
    						ReadOnly:  false,
    					},
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml

      - awsElasticBlockStore:
          fsType: fsTypeValue
          partition: 3
          readOnly: true
          volumeID: volumeIDValue
        azureDisk:
          cachingMode: cachingModeValue
          diskName: diskNameValue
          diskURI: diskURIValue
          fsType: fsTypeValue
          kind: kindValue
          readOnly: true
        azureFile:
          readOnly: true
          secretName: secretNameValue
          shareName: shareNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.yaml

              fsType: fsTypeValue
              partition: 3
              readOnly: true
              volumeID: volumeIDValue
            azureDisk:
              cachingMode: cachingModeValue
              diskName: diskNameValue
              diskURI: diskURIValue
              fsType: fsTypeValue
              kind: kindValue
              readOnly: true
            azureFile:
              readOnly: true
              secretName: secretNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.yaml

            fsType: fsTypeValue
            partition: 3
            readOnly: true
            volumeID: volumeIDValue
          azureDisk:
            cachingMode: cachingModeValue
            diskName: diskNameValue
            diskURI: diskURIValue
            fsType: fsTypeValue
            kind: kindValue
            readOnly: true
          azureFile:
            readOnly: true
            secretName: secretNameValue
            shareName: shareNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/core.v1.ReplicationController.yaml

              fsType: fsTypeValue
              partition: 3
              readOnly: true
              volumeID: volumeIDValue
            azureDisk:
              cachingMode: cachingModeValue
              diskName: diskNameValue
              diskURI: diskURIValue
              fsType: fsTypeValue
              kind: kindValue
              readOnly: true
            azureFile:
              readOnly: true
              secretName: secretNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 34.7K bytes
    - Viewed (0)
Back to top