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)
1140Assumed.Zero(_activeNodes.Count, "All nodes not yet shut down."); 1327activeNodeCount = _activeNodes?.Count; 1362ActiveNodeCount = _activeNodes.Count, 1398if (_activeNodes.Count > 0) 1400telemetry.ActiveNodeIds = string.Join(",", _activeNodes); 1405var nodeDetails = new List<string>(_activeNodes.Count); 1406foreach (int nodeId in _activeNodes) 2840Assumed.True(_activeNodes.Contains(node), $"Unexpected shutdown from node {node} which shouldn't exist."); 2841_activeNodes.Remove(node); 2930if (_activeNodes.Count == 0) 3015_activeNodes.Add(node.NodeId);