本文整理匯總了Python中gc3libs.workflow.RetryableTask類的典型用法代碼示例。如果您正苦於以下問題:Python RetryableTask類的具體用法?Python RetryableTask怎麽用?Python RetryableTask使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了RetryableTask類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __init__
def __init__(self, input_dir, working_dir, output_container, **extra_args):
RetryableTask.__init__(
self,
# actual computational job
GeoSphereApplication(input_dir, working_dir, output_container, **extra_args),
# keyword arguments
**extra_args)
示例2: __init__
def __init__(self, input_model, output_model, **extra_args):
RetryableTask.__init__(
self,
# actual computational job
GeoSphereApplication(input_model, output_model, **extra_args),
# keyword arguments
**extra_args)
示例3: __init__
def __init__(self, executable, **extra_args):
RetryableTask.__init__(
self,
# actual computational job
GGenericApplication(executable, **extra_args),
# keyword arguments
**extra_args)
示例4: __init__
def __init__(self, network_data_file, run_script, **extra_args):
RetryableTask.__init__(
self,
# actual computational job
GbenchmarkApplication(network_data_file, run_script, **extra_args),
**extra_args
)
示例5: __init__
def __init__(self, **extra_args):
RetryableTask.__init__(
self,
# actual computational job
GSMD_ProjectionsApplication(**extra_args),
# keyword arguments
**extra_args)
示例6: __init__
def __init__(self, input_file, **extra_args):
RetryableTask.__init__(
self,
# actual computational job
GpyradApplication(input_file, **extra_args),
# keyword arguments
**extra_args)
示例7: __init__
def __init__(self, simulation_dir, executable=None, **extra_args):
RetryableTask.__init__(
self,
# actual computational job
GeotopApplication(simulation_dir, executable, **extra_args),
# keyword arguments
**extra_args)
示例8: __init__
def __init__(self, inp_file_path, *other_input_files, **extra_args):
"""Constructor. Interface compatible with `GamessApplication`:class:"""
if extra_args.has_key('tags'):
extra_args['tags'].append('ENV/CPU/OPTERON-2350')
else:
extra_args['tags'] = [ 'ENV/CPU/OPTERON-2350' ]
task = GamessApplication(inp_file_path, *other_input_files, **extra_args)
RetryableTask.__init__(self, task, max_retries=3, **extra_args)
示例9: __init__
def __init__(self, sim_no, executable=None, restart=None, **extra_args):
self.sim_no = sim_no
RetryableTask.__init__(
self,
# actual computational job
GCellJunctionApplication(sim_no, executable, restart, **extra_args),
# keyword arguments
**extra_args)
示例10: __init__
def __init__(self, input_file, **extra_args):
RetryableTask.__init__(
self,
# actual computational job
GmodisApplication(
input_file,
**extra_args),
**extra_args
)
示例11: __init__
def __init__(self, start, extent, gnfs_location, input_files_archive, output, **extra_args):
RetryableTask.__init__(
self,
# actual computational job
CryptoApplication(start, extent, gnfs_location, input_files_archive, output, **extra_args),
# XXX: should decide which policy to use here for max_retries
max_retries = 2,
# keyword arguments
**extra_args)
示例12: __init__
def __init__(self, id_times_filename, **extra_args):
RetryableTask.__init__(
self,
# actual computational job
GnwApplication(
id_times_filename,
**extra_args),
**extra_args
)
示例13: __init__
def __init__(self, edges_data_filename, **extra_args):
RetryableTask.__init__(
self,
# actual computational job
GWeightApplication(
edges_data_filename,
**extra_args),
**extra_args
)
示例14: test_persisted_change
def test_persisted_change():
app = TestApplication()
task = RetryableTask(app)
# task.execution.state = 'RUNNING'
# This is supposed to alter the state of the task
# thus mark it as 'changed'
task.update_state()
# We expect task.changed to be true
assert(task.changed == False)
示例15: __init__
def __init__(self, command, src_dir, result_dir, input_dir, **extra_args):
RetryableTask.__init__(
self,
# actual computational job
GcgpsApplication(
command,
src_dir,
result_dir,
input_dir,
**extra_args),
**extra_args
)