1 write to _pendingEvents
Microsoft.ML.Core (1)
Data\ProgressReporter.cs (1)
369_pendingEvents = new ConcurrentQueue<ProgressEvent>();
6 references to _pendingEvents
Microsoft.ML.Core (6)
Data\ProgressReporter.cs (6)
395_pendingEvents.Enqueue(new ProgressEvent(newInfo.Index, newInfo.Name, newInfo.StartTime, ProgressEvent.EventKind.Start)); 413_pendingEvents.Enqueue(new ProgressEvent(info.Index, info.Name, info.StartTime, ProgressEvent.EventKind.Stop)); 419_pendingEvents.Enqueue(new ProgressEvent(info.Index, info.Name, info.StartTime, entry)); 440while (_pendingEvents.TryDequeue(out cur)) 473while (!_pendingEvents.IsEmpty) 474_pendingEvents.TryDequeue(out var res);