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));
440
while (
_pendingEvents
.TryDequeue(out cur))
473
while (!
_pendingEvents
.IsEmpty)
474
_pendingEvents
.TryDequeue(out var res);