Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for not_a_file (0.14 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeBinariesIntegrationTest.groovy

            buildFile << """
    apply plugin: "cpp"
    model {
        components {
            main(NativeLibrarySpec)
        }
        binaries {
            withType(StaticLibraryBinarySpec) {
                staticLibArchiver.args "not_a_file"
            }
        }
    }
    
            """
    
            and:
            file("src/main/cpp/hello.cpp") << """
                void hello() {
                }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      const std::string filepath = GetURIForPath("some/path/to_a_file");
      std::unique_ptr<WritableFile> file;
      status = env_->NewWritableFile(filepath, &file);
      if (!status.ok())
        GTEST_SKIP() << "NewWritableFile() not supported: " << status;
    
      const std::string new_dirpath = GetURIForPath("some/path/to_a_file/error");
      status = env_->RecursivelyCreateDir(new_dirpath);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
Back to top