3 instantiations of CustomSegment
Microsoft.Extensions.Caching.Hybrid.Tests (3)
DistributedCacheTests.cs (3)
310
CustomSegment first =
new
(10, rand, null); // we'll take the last 3 of this 10
311
CustomSegment second =
new
(size - 7, rand, first); // we'll take all of this one
312
CustomSegment third =
new
(10, rand, second); // we'll take the first 4 of this 10
4 references to CustomSegment
Microsoft.Extensions.Caching.Hybrid.Tests (4)
DistributedCacheTests.cs (4)
310
CustomSegment
first = new(10, rand, null); // we'll take the last 3 of this 10
311
CustomSegment
second = new(size - 7, rand, first); // we'll take all of this one
312
CustomSegment
third = new(10, rand, second); // we'll take the first 4 of this 10
357
public CustomSegment(int size, Random? rand,
CustomSegment
? previous)