Home
last modified time | relevance | path

Searched refs:CacheService (Results 1 – 11 of 11) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/cache/
Dcache_service.cc25 CacheService::CacheService(uint64_t mem_sz, const std::string &root, bool generate_id) in CacheService() function in mindspore::dataset::CacheService
34 CacheService::~CacheService() { (void)ServiceStop(); } in ~CacheService()
36 Status CacheService::DoServiceStart() { in DoServiceStart()
63 Status CacheService::DoServiceStop() { in DoServiceStop()
70 Status CacheService::CacheRow(const std::vector<const void *> &buf, row_id_type *row_id_generated) { in CacheRow()
144 Status CacheService::FastCacheRow(const ReadableSlice &src, row_id_type *row_id_generated) { in FastCacheRow()
198 std::ostream &operator<<(std::ostream &out, const CacheService &cs) { in operator <<()
210 Path CacheService::GetSpillPath() const { return cp_->GetSpillPath(); } in GetSpillPath()
212 Status CacheService::FindKeysMiss(std::vector<row_id_type> *out) { in FindKeysMiss()
227 Status CacheService::GetStat(CacheService::ServiceStat *out) { in GetStat()
[all …]
Dcache_service.h43 class CacheService : public Service {
52 CacheService(uint64_t mem_sz, const std::string &root, bool generate_id);
53 ~CacheService() override;
112 friend std::ostream &operator<<(std::ostream &out, const CacheService &cs);
Dcache_server.cc140 CacheService *CacheServer::GetService(connection_id_type id) const { in GetService()
157 CacheService::ServiceStat stat; in GlobalMemoryCheck()
220 CacheService *curr_cs = GetService(connection_id); in CreateService()
234 std::unique_ptr<CacheService> cs; in CreateService()
236 cs = std::make_unique<CacheService>(cache_mem_sz, spill ? top_ : "", generate_id); in CreateService()
276 CacheService *cs = GetService(id); in DestroyCache()
296 CacheService *cs = GetService(connection_id); in CacheRow()
331 CacheService *cs = GetService(connection_id); in FastCacheRow()
407 CacheService *cs = GetService(connection_id); in InternalFetchRow()
491 CacheService *cs = GetService(connection_id); in BatchFetchRows()
[all …]
Dcache_request.h99 friend class CacheService; variable
233 friend class CacheService; variable
292 friend class CacheService; variable
Dcache_grpc_server.h40 friend class CacheService; variable
Dcache_server.h59 using cache_index = std::map<connection_id_type, std::unique_ptr<CacheService>>;
310 CacheService *GetService(connection_id_type id) const;
/third_party/typescript/tests/baselines/reference/
DsigantureIsSubTypeIfTheyAreIdentical.js5 class CacheService implements ICache { // Should not error that property type of get are incomaptib… class
12 var CacheService = /** @class */ (function () {
13 function CacheService() { class in CacheService
15 CacheService.prototype.get = function (key) {
18 return CacheService;
DsigantureIsSubTypeIfTheyAreIdentical.symbols11 class CacheService implements ICache { // Should not error that property type of get are incomaptib…
12 >CacheService : Symbol(CacheService, Decl(sigantureIsSubTypeIfTheyAreIdentical.ts, 2, 1))
16 >get : Symbol(CacheService.get, Decl(sigantureIsSubTypeIfTheyAreIdentical.ts, 3, 38))
DsigantureIsSubTypeIfTheyAreIdentical.types7 class CacheService implements ICache { // Should not error that property type of get are incomaptib…
8 >CacheService : CacheService
/third_party/typescript/tests/cases/compiler/
DsigantureIsSubTypeIfTheyAreIdentical.ts4 class CacheService implements ICache { // Should not error that property type of get are incomaptib… class
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/util/
Dslice.h94 friend class CacheService; variable