Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GcsFileStat (0.2 sec)

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

    uint64_t Length(const TF_ReadOnlyMemoryRegion* region);
    }  // namespace tf_read_only_memory_region
    
    namespace tf_gcs_filesystem {
    typedef struct GcsFileStat {
      TF_FileStatistics base;
      int64_t generation_number;
    } GcsFileStat;
    
    typedef struct GCSFile {
      google::cloud::storage::Client gcs_client;  // owned
      bool compose;
      absl::Mutex block_cache_lock;
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Aug 31 04:37:41 GMT 2020
    - 5.2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

        int64_t read = 0;
        if (is_cache_enabled) {
          absl::ReaderMutexLock l(&gcs_file->block_cache_lock);
          GcsFileStat stat;
          gcs_file->stat_cache->LookupOrCompute(
              path, &stat,
              [gcs_file, bucket, object](const std::string& path, GcsFileStat* stat,
                                         TF_Status* status) {
                UncachedStatForObject(bucket, object, stat, &gcs_file->gcs_client,
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Aug 23 06:55:53 GMT 2023
    - 46.9K bytes
    - Viewed (0)
Back to top