Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cc (0.11 sec)

  1. tensorflow/BUILD

            "//tensorflow/cc:cc_ops",
            "//tensorflow/cc:client_session",
            "//tensorflow/cc:scope",
            "//tensorflow/core:tensorflow",
            "//tensorflow/core/data:standalone",
            # Exports for pywrap_tensorflow_internal. Many of these are transitive
            # depedencies of the above, but must be explicitly listed for
            # cc_shared_library to work.
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (8)
  2. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        // Confirm a successful cache trim now allows edits.
        filesystem.setFaultyDelete(cacheDir / "a.0", false)
        assertThat(cache.edit("c")).isNull()
        taskFaker.runNextTask()
        set("c", "cc", "cc")
        assertValue("c", "cc", "cc")
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
      fun cleanupTrimFailureWithInFlightEditor(parameters: Pair<FileSystem, Boolean>) {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 14:55:09 GMT 2024
    - 75.8K bytes
    - Viewed (0)
  3. .bazelrc

    # Disable AWS/HDFS support by default
    build --define=no_aws_support=true
    build --define=no_hdfs_support=true
    
    # TF now has `cc_shared_library` targets, so it needs the experimental flag
    # TODO(rostam): Remove when `cc_shared_library` is enabled by default
    build --experimental_cc_shared_library
    
    # cc_shared_library ensures no library is linked statically more than once.
    build --experimental_link_static_libraries_once=false
    
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Thu May 02 19:34:20 GMT 2024
    - 52.8K bytes
    - Viewed (2)
Back to top