1 instantiation of ResultsCacheResponse
Microsoft.Build (1)
BackEnd\Components\Caching\ResultsCache.cs (1)
169ResultsCacheResponse response = new(ResultsCacheResponseType.NotSatisfied);
14 references to ResultsCacheResponse
Microsoft.Build (8)
BackEnd\Components\BuildRequestEngine\BuildRequestEngine.cs (2)
538var cacheResponse = resultsCache.SatisfyRequest( 1210var response = resultsCache.SatisfyRequest(
BackEnd\Components\Caching\IResultsCache.cs (1)
57ResultsCacheResponse SatisfyRequest(BuildRequest request, List<string> configInitialTargets, List<string> configDefaultTargets, bool skippedResultsDoNotCauseCacheMiss);
BackEnd\Components\Caching\ResultsCache.cs (2)
166public ResultsCacheResponse SatisfyRequest(BuildRequest request, List<string> configInitialTargets, List<string> configDefaultTargets, bool skippedResultsDoNotCauseCacheMiss) 169ResultsCacheResponse response = new(ResultsCacheResponseType.NotSatisfied);
BackEnd\Components\Caching\ResultsCacheWithOverride.cs (2)
78public ResultsCacheResponse SatisfyRequest( 84var overrideRequest = _override.SatisfyRequest(
BackEnd\Components\Scheduler\Scheduler.cs (1)
1950ResultsCacheResponse resultsResponse = _resultsCache.SatisfyRequest(request, config.ProjectInitialTargets, config.ProjectDefaultTargets, skippedResultsDoNotCauseCacheMiss);
Microsoft.Build.Engine.UnitTests (6)
BackEnd\ResultsCache_Tests.cs (6)
186ResultsCacheResponse response = cache.SatisfyRequest(request, new List<string>(), new List<string>(new string[] { "testTarget2" }), skippedResultsDoNotCauseCacheMiss: false); 238ResultsCacheResponse cacheResponseForRequestWithNoBuildDataFlags = cache.SatisfyRequest( 244ResultsCacheResponse cachedResponseForProjectState = cache.SatisfyRequest( 250ResultsCacheResponse cacheResponseForNoBuildDataFlags2 = cache.SatisfyRequest( 319ResultsCacheResponse cachedResponseWithSubsetFlag1 = cache.SatisfyRequest( 325ResultsCacheResponse cachedResponseWithSubsetFlag2 = cache.SatisfyRequest(