Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for paths_exist (0.17 sec)

  1. tensorflow/c/experimental/filesystem/modular_filesystem.cc

      if (ops_->paths_exist == nullptr)
        return FileSystem::FilesExist(files, token, status);
    
      std::vector<char*> translated_names;
      translated_names.reserve(files.size());
      for (int i = 0; i < files.size(); i++)
        translated_names.push_back(strdup(TranslateName(files[i]).c_str()));
    
      bool result;
      if (status == nullptr) {
        result = ops_->paths_exist(filesystem_.get(), translated_names.data(),
    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)
  2. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// `TF_SetStatus` to set each element instead of directly assigning.
      ///
      /// DEFAULT IMPLEMENTATION: Checks existence of every file. Needs
      /// `path_exists`.
      bool (*paths_exist)(const TF_Filesystem* filesystem, char** paths,
                          int num_files, TF_Status** statuses);
    
      /// Obtains statistics for the given `path`.
      ///
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
Back to top