Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for recursively (0.16 sec)

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

                                                   TransactionToken* token) {
      if (ops_->recursively_create_dir == nullptr)
        return FileSystem::RecursivelyCreateDir(dirname, token);
    
      UniquePtrTo_TF_Status plugin_status(TF_NewStatus(), TF_DeleteStatus);
      std::string translated_name = TranslateName(dirname);
      ops_->recursively_create_dir(filesystem_.get(), translated_name.c_str(),
                                   plugin_status.get());
    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/plugins/gcs/gcs_filesystem.cc

        GCSFile* gcs_file, std::string dir, uint64_t max_results, bool recursive,
        bool include_self_directory_marker, TF_Status* status) {
      std::string bucket, prefix;
      MaybeAppendSlash(&dir);
      ParseGCSPath(dir, true, &bucket, &prefix, status);
    
      std::vector<std::string> result;
      uint64_t count = 0;
      std::string delimiter = recursive ? "" : "/";
    
      for (auto&& item : gcs_file->gcs_client.ListObjectsAndPrefixes(
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Aug 23 06:55:53 GMT 2023
    - 46.9K bytes
    - Viewed (0)
Back to top