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