Trees | Indices | Help |
|
---|
|
|
|||
StageJob A "Job" that is used by Pipeline to run a Stage. |
|||
Pipeline A controller responsible for running the stages in the correct order. |
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|
|||
__doc__ =
|
|||
DEBUG = log.get_environ_log_level() <= log.DEBUG
|
|||
WAITING = 'WAITING'
|
|||
RUNNING = 'RUNNING'
|
|||
COMPLETED = 'COMPLETED'
|
|||
FAILED = 'FAILED'
|
|||
RESTARTING = 'RESTARTING'
|
|||
updated_from_dump = {}
|
|||
old_stage_classes = {"merge.MergeStage": "glide.MergeStage", "
|
|||
global_logfh = sys.stdout
|
|||
_job_objects = {}
|
|
Print the specified text to the log pipe with no newline. This is especially useful when printing progress periods. |
Append hosts in list2 to list1. Example: list1 = a:5,b:10 list2 = a:2,c:12 output = a:7,b:10,c:12 The order of hosts is retained (first list is given priority). |
Return available (not used) hosts. This function subtracts the host
dict
|
Import a named object from a module in the context of this function. For example, if you would like to create an instance of the Foo class from the bar.py module: foo_class = importName("bar", "Foo") foo_instance = foo_class()
|
Recover a saved Pipeline instance. Specify new options only if the settings need to change. Returns a Pipeline instance recovered from the restart_file. You need
to call
|
|
__doc__
|
old_stage_classes
|
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Thu Aug 6 04:50:19 2015 | http://epydoc.sourceforge.net |