Searched defs:logdir (Results 1 - 9 of 9) sorted by relevance

/external/autotest/client/bin/
H A Dsysinfo.py13 logdir = site_sysinfo.logdir variable
H A Dautotestd10 logdir = sys.argv[1] variable
20 stdout = open(os.path.join(logdir, 'stdout'), 'a', 0)
21 stderr = open(os.path.join(logdir, 'stderr'), 'a', 0)
39 exit_file = open(os.path.join(logdir, 'exit_code'), 'w', 0)
43 open(os.path.join(logdir, 'started'), 'w').close()
H A Dautotestd_monitor6 logdir = sys.argv[1] variable
10 stderr = open(os.path.join(logdir, 'stderr'), 'a', 0)
22 path = os.path.join(logdir, filename)
34 # wait for logdir/started to exist to be sure autotestd is started
36 started_file_path = os.path.join(logdir, 'started')
40 raise Exception("autotestd failed to start in %s" % logdir)
45 exit_code_file = open(os.path.join(logdir, 'exit_code'))
H A Dsite_sysinfo.py22 class logdir(base_sysinfo.loggable): class in inherits:base_sysinfo.loggable
28 super(logdir, self).__init__(directory, log_in_keyval=False)
52 return "site_sysinfo.logdir(%r, %s)" % (self.dir,
57 if isinstance(other, logdir):
103 A logdir object is pickled on server-side and unpickled on
106 logdir pickled from a newer version of the class.
137 class diffable_logdir(logdir):
147 def __init__(self, directory, excludes=logdir.DEFAULT_EXCLUDES,
267 logdir_temp = logdir(self.dir)
271 class purgeable_logdir(logdir)
[all...]
/external/tensorflow/tensorflow/contrib/tensorboard/db/
H A Dsummary_file_writer.cc39 Status Initialize(const string& logdir, const string& filename_suffix) { argument
40 const Status is_dir = env_->IsDirectory(logdir);
45 TF_RETURN_IF_ERROR(env_->RecursivelyCreateDir(logdir));
49 tensorflow::MakeUnique<EventsWriter>(io::JoinPath(logdir, "events"));
176 const string& logdir,
180 const Status s = w->Initialize(logdir, filename_suffix);
175 CreateSummaryFileWriter(int max_queue, int flush_millis, const string& logdir, const string& filename_suffix, Env* env, SummaryWriterInterface** result) argument
/external/autotest/contrib/
H A Dlog_distiller.py25 logdir = os.path.join('/usr/local/autotest', 'logs') variable
/external/tensorflow/tensorflow/contrib/tpu/profiler/
H A Ddump_tpu_profile.cc109 Status DumpGraphEvents(const string& logdir, const string& run, argument
120 // The graph plugin expects the graph in <logdir>/<run>/<event.file>.
121 string run_dir = JoinPath(logdir, strings::StrCat(kGraphRunPrefix, run));
146 Status WriteTensorboardTPUProfile(const string& logdir, const string& run, argument
149 // Dumps profile data to <logdir>/plugins/profile/<run>/.
150 string profile_run_dir = JoinPath(logdir, kProfilePluginDirectory, run);
/external/tensorflow/tensorflow/core/kernels/
H A Dsummary_kernels.cc37 OP_REQUIRES_OK(ctx, ctx->input("logdir", &tmp));
38 const string logdir = tmp->scalar<string>()(); variable
49 [max_queue, flush_millis, logdir, filename_suffix,
52 max_queue, flush_millis, logdir,
/external/autotest/server/lib/
H A Dstatus_history.py103 @property logdir Relative path to the logs for the event's job.
116 def get_log_url(cls, afe_hostname, logdir):
124 @param logdir Relative path of the results log directory.
131 logdir,
136 def get_gs_url(cls, logdir):
143 @param logdir Relative path of the results log directory.
148 return os.path.join(utils.get_offload_gsuri(), logdir)
187 def logdir(self): member in class:_JobEvent
317 def logdir(self): member in class:_SpecialTaskEvent
325 return _SpecialTaskEvent.get_log_url(self._afe_hostname, self.logdir)
413 def logdir(self): member in class:_TestJobEvent
[all...]

Completed in 262 milliseconds