1 write to _activeNodes
Microsoft.Build (1)
BackEnd\BuildManager\BuildManager.cs (1)
305_activeNodes = new HashSet<int>();
11 references to _activeNodes
Microsoft.Build (11)
BackEnd\BuildManager\BuildManager.cs (11)
1091Assumed.Zero(_activeNodes.Count, "All nodes not yet shut down."); 1266activeNodeCount = _activeNodes?.Count; 1301ActiveNodeCount = _activeNodes.Count, 1337if (_activeNodes.Count > 0) 1339telemetry.ActiveNodeIds = string.Join(",", _activeNodes); 1344var nodeDetails = new List<string>(_activeNodes.Count); 1345foreach (int nodeId in _activeNodes) 2763Assumed.True(_activeNodes.Contains(node), $"Unexpected shutdown from node {node} which shouldn't exist."); 2764_activeNodes.Remove(node); 2853if (_activeNodes.Count == 0) 2938_activeNodes.Add(node.NodeId);