3 instantiations of ConcurrentLruCache
Microsoft.CodeAnalysis (1)
DiagnosticAnalyzer\AnalyzerOptionsExtensions.cs (1)
17private static readonly ConcurrentLruCache<string, string> s_categoryToSeverityKeyMap = new ConcurrentLruCache<string, string>(50);
Microsoft.CodeAnalysis.UnitTests (1)
InternalUtilities\ConcurrentLruCacheTests.cs (1)
44return new ConcurrentLruCache<K, V>(_store);
VBCSCompiler (1)
src\Compilers\Server\VBCSCompiler\MetadataCache.cs (1)
21new ConcurrentLruCache<FileKey, Metadata>(CacheSize);
7 references to ConcurrentLruCache
Microsoft.CodeAnalysis (1)
DiagnosticAnalyzer\AnalyzerOptionsExtensions.cs (1)
17private static readonly ConcurrentLruCache<string, string> s_categoryToSeverityKeyMap = new ConcurrentLruCache<string, string>(50);
Microsoft.CodeAnalysis.UnitTests (5)
InternalUtilities\ConcurrentLruCacheTests.cs (5)
42public ConcurrentLruCache<K, V> MakeCache() 56var clc = new OrderedTestDictionary<int, int>(3) 68var clc = new OrderedTestDictionary<int, int>(3) 81var clc = new OrderedTestDictionary<int, int>(3) 94var clc = new OrderedTestDictionary<int, int>(3)
VBCSCompiler (1)
src\Compilers\Server\VBCSCompiler\MetadataCache.cs (1)
20private readonly ConcurrentLruCache<FileKey, Metadata> _metadataCache =