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)
1135Assumed.Zero(_activeNodes.Count, "All nodes not yet shut down."); 1310activeNodeCount = _activeNodes?.Count; 1345ActiveNodeCount = _activeNodes.Count, 1381if (_activeNodes.Count > 0) 1383telemetry.ActiveNodeIds = string.Join(",", _activeNodes); 1388var nodeDetails = new List<string>(_activeNodes.Count); 1389foreach (int nodeId in _activeNodes) 2823Assumed.True(_activeNodes.Contains(node), $"Unexpected shutdown from node {node} which shouldn't exist."); 2824_activeNodes.Remove(node); 2913if (_activeNodes.Count == 0) 2998_activeNodes.Add(node.NodeId);