Home
last modified time | relevance | path

Searched refs:log_entry_queue_ (Results 1 – 1 of 1) sorted by relevance

/external/tensorflow/tensorflow/core/platform/default/
Dlogging.cc93 std::queue<TFLogEntry> log_entry_queue_; member in tensorflow::internal::__anon2b7d55170111::TFLogSinks
120 while (!log_entry_queue_.empty()) { in Add()
122 SendToSink(*sink, log_entry_queue_.front()); in Add()
124 log_entry_queue_.pop(); in Add()
148 while (log_entry_queue_.size() >= kMaxLogEntryQueueSize) { in Send()
149 log_entry_queue_.pop(); in Send()
151 log_entry_queue_.push(entry); in Send()
156 while (!log_entry_queue_.empty()) { in Send()
158 SendToSink(*sink, log_entry_queue_.front()); in Send()
160 log_entry_queue_.pop(); in Send()