Home
last modified time | relevance | path

Searched refs:fileListCache (Results 1 – 7 of 7) sorted by relevance

/dports/net/evans/evans-0.9.1/vendor/github.com/ktr0731/go-prompt/completer/
H A Dfile.go25 fileListCache map[string][]prompt.Suggest member
58 if c.fileListCache == nil {
59 c.fileListCache = make(map[string][]prompt.Suggest, 4)
69 if cached, ok := c.fileListCache[dir]; ok {
88 c.fileListCache[dir] = suggests
/dports/devel/bit/bit-1.1.2/vendor/github.com/c-bata/go-prompt/completer/
H A Dfile.go25 fileListCache map[string][]prompt.Suggest member
58 if c.fileListCache == nil {
59 c.fileListCache = make(map[string][]prompt.Suggest, 4)
69 if cached, ok := c.fileListCache[dir]; ok {
88 c.fileListCache[dir] = suggests
/dports/games/megaglest/megaglest-source-3.13.0/source/shared_lib/sources/util/
H A Dchecksum.cpp41 std::map<string,uint32> Checksum::fileListCache; member in Shared::Util::Checksum
378 if(Checksum::fileListCache.find(iterMap->first) == Checksum::fileListCache.end()) { in getSum()
382 Checksum::fileListCache[iterMap->first] = fileResult.getSum(); in getSum()
388 newResult.addSum(Checksum::fileListCache[iterMap->first]); in getSum()
422 if(Checksum::fileListCache.find(file) != Checksum::fileListCache.end()) { in removeFileFromCache()
423 Checksum::fileListCache.erase(file); in removeFileFromCache()
429 Checksum::fileListCache.clear(); in clearFileCache()
/dports/sysutils/qdirstat/qdirstat-1.8/src/
H A DPkgReader.cpp194 QSharedPointer<PkgFileListCache> fileListCache( pkgManager->createFileListCache() ); in createCachePkgReadJobs() local
198 if ( ! fileListCache ) in createCachePkgReadJobs()
206 CachePkgReadJob * job = new CachePkgReadJob( _tree, pkg, fileListCache ); in createCachePkgReadJobs()
586 QSharedPointer<PkgFileListCache> fileListCache ): in CachePkgReadJob() argument
588 _fileListCache( fileListCache ) in CachePkgReadJob()
H A DPkgReader.h334 QSharedPointer<PkgFileListCache> fileListCache );
/dports/games/megaglest/megaglest-source-3.13.0/source/shared_lib/include/util/
H A Dchecksum.h39 static std::map<string,uint32> fileListCache; variable
/dports/x11-fm/filerunner/filerunner/
H A Dcmd.tcl699 global fileListCache fileListExpir
705 } elseif {[info exists fileListCache($dir)] && $fileListCache($dir,time) > [clock seconds] + 10} {
706 return $fileListCache($dir)
709 set fileListCache($dir,time) [clock seconds]
713 return [set fileListCache($dir) $list]