Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ModularRandomAccessFile (0.59 sec)

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

    };
    
    class ModularRandomAccessFile final : public RandomAccessFile {
     public:
      ModularRandomAccessFile(const std::string& filename,
                              std::unique_ptr<TF_RandomAccessFile> file,
                              const TF_RandomAccessFileOps* ops)
          : filename_(filename), file_(std::move(file)), ops_(ops) {}
    
      ~ModularRandomAccessFile() override { ops_->cleanup(file_.get()); }
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 12 08:49:52 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/modular_filesystem.cc

      ops_->new_random_access_file(filesystem_.get(), translated_name.c_str(),
                                   file.get(), plugin_status.get());
    
      if (TF_GetCode(plugin_status.get()) == TF_OK)
        *result = std::make_unique<ModularRandomAccessFile>(
            translated_name, std::move(file), random_access_file_ops_.get());
    
      return StatusFromTF_Status(plugin_status.get());
    }
    
    Status ModularFileSystem::NewWritableFile(
    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)
Back to top