Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for dirname (0.18 sec)

  1. tensorflow/c/env.cc

      std::vector<::tensorflow::string>* list;
      size_t position;
    };
    
    void TF_CreateDir(const char* dirname, TF_Status* status) {
      TF_SetStatus(status, TF_OK, "");
      ::tensorflow::Set_TF_Status_from_Status(
          status, ::tensorflow::Env::Default()->CreateDir(dirname));
    }
    
    void TF_DeleteDir(const char* dirname, TF_Status* status) {
      TF_SetStatus(status, TF_OK, "");
      ::tensorflow::Set_TF_Status_from_Status(
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Aug 11 01:20:50 GMT 2021
    - 7K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/modular_filesystem.cc

      ops_->delete_dir(filesystem_.get(), translated_name.c_str(),
                       plugin_status.get());
      return StatusFromTF_Status(plugin_status.get());
    }
    
    Status ModularFileSystem::RecursivelyCreateDir(const std::string& dirname,
                                                   TransactionToken* token) {
      if (ops_->recursively_create_dir == nullptr)
        return FileSystem::RecursivelyCreateDir(dirname, token);
    
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Sep 06 19:12:29 GMT 2023
    - 23.1K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      }
    
      // If updating, make sure to update expected_children below.
      const std::vector<std::string> dirnames = {
          GetURIForPath("dir/a_dir"),
          GetURIForPath("dir/another_dir"),
      };
      for (const auto& dirname : dirnames) {
        status = env_->CreateDir(dirname);
        if (!status.ok()) GTEST_SKIP() << "CreateDir() not supported: " << status;
      }
    
      std::vector<std::string> children;
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 20:25:58 GMT 2022
    - 71K bytes
    - Viewed (0)
Back to top