Searched refs:ts_file (Results 1 – 3 of 3) sorted by relevance
234 void StartFile(WritableFile* ts_file) { in StartFile() argument260 TF_CHECK_OK(ts_file->Append(header)); in StartFile()269 std::unique_ptr<WritableFile> ts_file = nullptr; in WriteTSOps() local270 TF_CHECK_OK(env->NewWritableFile(ts_filename, &ts_file)); in WriteTSOps()272 StartFile(ts_file.get()); in WriteTSOps()283 WriteTSOp(op_def, *api_def, ts_file.get()); in WriteTSOps()287 TF_CHECK_OK(ts_file->Close()); in WriteTSOps()
162 def append_to_aggregated_file(ts_file, ag_file): argument170 next(ts_file) # Skip fist line (the header) of timestamped file.171 for line in ts_file:
198 def _append_to_aggregated_file(self, ts_file, ag_file): argument204 next(ts_file) # Skip fist line (the header) of timestamped file.205 for line in ts_file: