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