Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ABSL_GUARDED_BY (0.23 sec)

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

      /// fetched from the underlying block store.
      std::list<Key> lra_list_ ABSL_GUARDED_BY(mu_);
    
      /// The combined number of bytes in all of the cached blocks.
      size_t cache_size_ ABSL_GUARDED_BY(mu_) = 0;
    
      // A filename->file_signature map.
      std::map<std::string, int64_t> file_signature_map_ ABSL_GUARDED_BY(mu_);
    };
    
    }  // namespace tf_gcs_filesystem
    
    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)
  2. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

      const std::string path;
      const bool is_cache_enable;
      const uint64_t buffer_size;
      ReadFn read_fn;
      absl::Mutex buffer_mutex;
      uint64_t buffer_start ABSL_GUARDED_BY(buffer_mutex);
      bool buffer_end_is_past_eof ABSL_GUARDED_BY(buffer_mutex);
      std::string buffer ABSL_GUARDED_BY(buffer_mutex);
    
      GCSFile(std::string path, bool is_cache_enable, uint64_t buffer_size,
              ReadFn read_fn)
          : path(path),
    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