3 writes to NodeId
Microsoft.Build (3)
BackEnd\Components\Scheduler\ScheduleResponse.cs (3)
134
NodeId
= nodeId;
147
NodeId
= node;
159
NodeId
= node;
13 references to NodeId
Microsoft.Build (12)
BackEnd\BuildManager\BuildManager.cs (4)
2625
_nodeManager!.SendData(response.
NodeId
, response.Unblocker);
2658
if (!_nodeIdToKnownConfigurations.TryGetValue(response.
NodeId
, out HashSet<int>? configurationsOnNode) ||
2662
_nodeManager!.SendData(response.
NodeId
, configCache[response.BuildRequest.ConfigurationId]);
2666
_nodeManager!.SendData(response.
NodeId
, response.BuildRequest);
BackEnd\Components\Scheduler\Scheduler.cs (4)
1867
TraceScheduler("Reporting results for request {0} with parent {1} to node {2} from cache.", request.BuildRequest.GlobalRequestId, request.BuildRequest.ParentGlobalRequestId, response.
NodeId
);
1868
if (response.
NodeId
!= InvalidNodeId)
1874
if (!_schedulingData.IsNodeWorking(response.
NodeId
))
1876
ResumeReadyRequestIfAny(response.
NodeId
, responses);
BackEnd\Components\Scheduler\ScheduleResponse.cs (4)
240
return String.Format(CultureInfo.CurrentCulture, "Act: {0} Node: {1} Request: {2}", Action,
NodeId
, Unblocker.BlockedRequestId);
243
return String.Format(CultureInfo.CurrentCulture, "Act: {0} Node: {1} Request: {2} Parent {3}", Action,
NodeId
, BuildRequest.GlobalRequestId, BuildRequest.ParentGlobalRequestId);
246
return String.Format(CultureInfo.CurrentCulture, "Act: {0} Node: {1} Request: {2} Parent {3} Configuration: {4}", Action,
NodeId
, BuildRequest.GlobalRequestId, BuildRequest.ParentGlobalRequestId, BuildRequest.ConfigurationId);
249
return String.Format(CultureInfo.CurrentCulture, "Act: {0} Node: {1} Request: {2} Parent {3} Configuration: {4}", Action,
NodeId
, BuildRequest.GlobalRequestId, BuildRequest.ParentGlobalRequestId, BuildRequest.ConfigurationId);
Microsoft.Build.Engine.UnitTests (1)
BackEnd\Scheduler_Tests.cs (1)
557
Assert.Equal(Scheduler.InProcNodeId, response[0].
NodeId
);