1 write to _activeNodes
Microsoft.Build (1)
BackEnd\BuildManager\BuildManager.cs (1)
306
_activeNodes
= new HashSet<int>();
11 references to _activeNodes
Microsoft.Build (11)
BackEnd\BuildManager\BuildManager.cs (11)
1140
Assumed.Zero(
_activeNodes
.Count, "All nodes not yet shut down.");
1327
activeNodeCount =
_activeNodes
?.Count;
1362
ActiveNodeCount =
_activeNodes
.Count,
1398
if (
_activeNodes
.Count > 0)
1400
telemetry.ActiveNodeIds = string.Join(",",
_activeNodes
);
1405
var nodeDetails = new List<string>(
_activeNodes
.Count);
1406
foreach (int nodeId in
_activeNodes
)
2840
Assumed.True(
_activeNodes
.Contains(node), $"Unexpected shutdown from node {node} which shouldn't exist.");
2841
_activeNodes
.Remove(node);
2930
if (
_activeNodes
.Count == 0)
3015
_activeNodes
.Add(node.NodeId);