Home
last modified time | relevance | path

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

/test/framework/harnesses/host_controller/command_processor/
Dcommand_release.py112 if args.schedule_for == "now":
113 self.ReleaseCallback(args.schedule_for, args.account_id,
118 elif len(args.schedule_for.split(":")) != 2:
122 if (int(args.schedule_for.split(":")[0]) not in range(24)
123 or int(args.schedule_for.split(":")[-1]) not in range(60)):
128 if not args.schedule_for in self._timers:
130 hour=int(args.schedule_for.split(":")[0]),
131 minute=int(args.schedule_for.split(":")[-1]),
138 self._timers[args.schedule_for] = threading.Timer(
140 (args.schedule_for, args.account_id, args.branch,
[all …]