Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Position (0.16 sec)

  1. tensorflow/c/experimental/filesystem/plugins/gcs/expiring_lru_cache.h

      struct Entry {
        /// The timestamp (seconds) at which the entry was added to the cache.
        uint64_t timestamp;
    
        /// The entry's value.
        T value;
    
        /// A list iterator pointing to the entry's position in the LRU list.
        std::list<std::string>::iterator lru_iterator;
      };
    
      bool LookupLocked(const std::string& key, T* value)
          ABSL_EXCLUSIVE_LOCKS_REQUIRED(mu_) {
        auto it = cache_.find(key);
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Jul 09 19:31:22 GMT 2020
    - 6.3K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.h

      /// mu_.
      struct Block {
        /// The block data.
        std::vector<char> data;
        /// A list iterator pointing to the block's position in the LRU list.
        std::list<Key>::iterator lru_iterator;
        /// A list iterator pointing to the block's position in the LRA list.
        std::list<Key>::iterator lra_iterator;
        /// The timestamp (seconds since epoch) at which the block was cached.
        uint64_t timestamp;
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Aug 31 04:46:34 GMT 2020
    - 10.6K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/modular_filesystem.h

      Status Append(StringPiece data) override;
      Status Close() override;
      Status Flush() override;
      Status Sync() override;
      Status Name(StringPiece* result) const override;
      Status Tell(int64_t* position) override;
    
     private:
      std::string filename_;
      std::unique_ptr<TF_WritableFile> file_;
      const TF_WritableFileOps* ops_;  // not owned
      ModularWritableFile(const ModularWritableFile&) = delete;
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Oct 12 08:49:52 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/filesystem_interface.h

                     TF_Status* status);
    
      /// Returns the current write position in `*file`.
      ///
      /// Plugins should ensure that the implementation is idempotent, 2 identical
      /// calls result in the same answer.
      ///
      /// Plugins:
      ///   * Must set `status` to `TF_OK` and return current position if no error.
      ///   * Must set `status` to any other value and return -1 in case of error.
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
Back to top