Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 288 for read_only (0.19 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. tensorflow/compiler/mlir/tensorflow/transforms/check_control_dependencies.cc

                                   const ResourceIdVec& other_resource_ids) {
      for (const auto& [resource_id, read_only] : resource_ids) {
        for (const auto& [other_resource_id, other_read_only] :
             other_resource_ids) {
          if (IsPotentiallySameResource(resource_id, other_resource_id) &&
              !(read_only && other_read_only)) {
            return true;
          }
        }
      }
      return false;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. cluster/gce/windows/common.psm1

          return
        }
      }
    }
    
    # Downloads a file via HTTP/HTTPS.
    # If the file is stored in GCS and this is running on a GCE node with a service account
    # with credentials that have the devstore.read_only auth scope the bearer token will be
    # automatically added to download the file.
    function Get-RemoteFile {
      param (
        [parameter(Mandatory = $true)] [string]$OutFile,
        [parameter(Mandatory = $true)] [string]$Url,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/ClassInspectorTest.groovy

            details.propertyNames == ['class', 'metaClass', 'prop', 'readOnly', 'writeOnly'] as Set
    
            def prop = details.getProperty('prop')
            prop.getters.size() == 1
            prop.setters.size() == 1
    
            def readOnly = details.getProperty('readOnly')
            readOnly.getters.size() == 1
            readOnly.setters.size() == 0
    
            def writeOnly = details.getProperty('writeOnly')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 23:46:06 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top