Home
last modified time | relevance | path

Searched refs:file_block_cache (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/tensorflow/tensorflow/core/platform/cloud/
H A DBUILD36 name = "file_block_cache",
37 hdrs = ["file_block_cache.h"],
52 ":file_block_cache",
91 ":file_block_cache",
128 ":file_block_cache",
H A Dgcs_file_system.cc1033 std::unique_ptr<FileBlockCache> file_block_cache(new RamFileBlockCache( in MakeFileBlockCache() local
1042 cache_enabled_ = file_block_cache->IsCacheEnabled(); in MakeFileBlockCache()
1043 return file_block_cache; in MakeFileBlockCache()
/aosp_15_r20/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/gcs/
H A Dgcs_filesystem.cc455 file_block_cache = std::make_unique<RamFileBlockCache>( in GCSFile()
486 file_block_cache = std::make_unique<RamFileBlockCache>( in GCSFile()
560 is_cache_enabled = gcs_file->file_block_cache->IsCacheEnabled(); in NewRandomAccessFile()
578 if (!gcs_file->file_block_cache->ValidateAndUpdateFileSignature( in NewRandomAccessFile()
585 read = gcs_file->file_block_cache->Read(path, offset, n, buffer, status); in NewRandomAccessFile()
823 gcs_file->file_block_cache->RemoveFile(path); in ClearFileCaches()
1140 gcs_file->file_block_cache->Flush(); in FlushCaches()
H A Dgcs_filesystem.h59 std::shared_ptr<RamFileBlockCache> file_block_cache