1 write to _activeNodes
Microsoft.Build (1)
BackEnd\BuildManager\BuildManager.cs (1)
303
_activeNodes
= new HashSet<int>();
11 references to _activeNodes
Microsoft.Build (11)
BackEnd\BuildManager\BuildManager.cs (11)
1068
ErrorUtilities.VerifyThrow(
_activeNodes
.Count == 0, "All nodes not yet shut down.");
1241
activeNodeCount =
_activeNodes
?.Count;
1276
ActiveNodeCount =
_activeNodes
.Count,
1312
if (
_activeNodes
.Count > 0)
1314
telemetry.ActiveNodeIds = string.Join(",",
_activeNodes
);
1319
var nodeDetails = new List<string>(
_activeNodes
.Count);
1320
foreach (int nodeId in
_activeNodes
)
2738
ErrorUtilities.VerifyThrow(
_activeNodes
.Contains(node), "Unexpected shutdown from node {0} which shouldn't exist.", node);
2739
_activeNodes
.Remove(node);
2828
if (
_activeNodes
.Count == 0)
2913
_activeNodes
.Add(node.NodeId);