本文整理汇总了Python中job.Job.resources方法的典型用法代码示例。如果您正苦于以下问题:Python Job.resources方法的具体用法?Python Job.resources怎么用?Python Job.resources使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类job.Job
的用法示例。
在下文中一共展示了Job.resources方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Exception
# 需要导入模块: from job import Job [as 别名]
# 或者: from job.Job import resources [as 别名]
raise Exception('Invalid event order')
# Let's traverse the list of events to associate resources to jobs
available_res = SortedSet(range(args.nb_res))
for event in events:
print('nb_res_available : ', len(available_res))
(date, state, job_id) = event
job = jobs[job_id]
if state == '1:start':
prev_len = len(available_res)
(new_available, alloc) = take_first_resources(
available_res, job.nb_res)
available_res = new_available
job.resources = alloc
if len(job.resources) != job.nb_res:
raise Exception('Invalid number of resources ({}, expected {})'
.format(job.resources, job.nb_res))
if len(available_res) != prev_len - job.nb_res:
raise Exception('Invalid number of available resources '
'({}, expected {})'
.formta(len(available_res), prev_len - job.nb_res))
elif state == '0:finish':
available_res.update(job.resources)
##############
# Export CSV #
##############