(self, data_input_coordinator)
| 249 | continue |
| 250 | |
| 251 | def _enqueue_batch_direct(self, data_input_coordinator): |
| 252 | data = self._get(data_input_coordinator) |
| 253 | if data is None: |
| 254 | return |
| 255 | if data_input_coordinator.is_active(): |
| 256 | for b, q, c in zip(self._input_blob_names, self._queues, data): |
| 257 | self._enqueue(b, q, c) |
| 258 | |
| 259 | def _enqueue_batch(self, data_input_coordinator): |
| 260 | ''' |
no test coverage detected