Lines Matching full:script
69 """Runs a console script repeatedly.
73 script_path: string, the path to the script.
83 logging.warning("Script execution time is longer than loop "
108 parser.add_argument("--script",
110 help="The path to a script file in .py format")
120 help="The interval of repeating the script. "
123 "If this option is unspecified, the script will "
127 "a script.")
208 if args.script:
210 main_console.ProcessScript(args.script)
212 _ScriptLoop(main_console, args.script, args.loop)
218 else: # if not script, the default is console mode.