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