6 references to ObjectPool
Test.Utilities (6)
ArrayBuilder.cs (1)
365
pool = new
ObjectPool
<ArrayBuilder<T>>(() => new ArrayBuilder<T>(pool), size);
ObjectPool.cs (1)
110
:
this
(factory, Environment.ProcessorCount * 2)
PooledConcurrentDictionary.cs (1)
55
pool = new
ObjectPool
<PooledConcurrentDictionary<K, V>>(() =>
PooledDictionary.cs (1)
87
pool = new
ObjectPool
<PooledDictionary<K, V>>(() => new PooledDictionary<K, V>(pool, keyComparer), 128);
PooledHashSet.cs (1)
68
pool = new
ObjectPool
<PooledHashSet<T>>(() => new PooledHashSet<T>(pool, comparer), 128);
PooledSortedSet.cs (1)
49
pool = new
ObjectPool
<PooledSortedSet<T>>(