本文整理匯總了Python中stage.Stage.set_gc_time方法的典型用法代碼示例。如果您正苦於以下問題:Python Stage.set_gc_time方法的具體用法?Python Stage.set_gc_time怎麽用?Python Stage.set_gc_time使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類stage.Stage
的用法示例。
在下文中一共展示了Stage.set_gc_time方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: get_stages
# 需要導入模塊: from stage import Stage [as 別名]
# 或者: from stage.Stage import set_gc_time [as 別名]
def get_stages(trs, stage_url, has_gc):
final_stages = []
for tr in trs:
tds = tr.find_all("td")
temp_stage = Stage()
temp_stage.set_stage_id(int(tds[0].string.strip()))
temp_stage.set_submit_time(tds[2].string.strip())
temp_stage.set_duration(tds[3].string.strip())
temp_stage.set_tasks_percent(tds[4].find("span").string.strip())
temp_stage.set_input("0MB" if tds[5].string is None else tds[5].string)
temp_stage.set_shuffle_read("0MB" if tds[7].string is None else tds[6].string)
temp_stage.set_shuffle_write("0MB" if tds[8].string is None else tds[7].string)
gc_total = 0.0
try:
if has_gc is True:
gc_html = Worm.get_html(
stage_url + "stage/?id=" + str(temp_stage.get_stage_id()) + "&attempt=0", True, 6
)
print stage_url + "stage/?id=" + str(temp_stage.get_stage_id()) + "&attempt=0"
gc_soup = BeautifulSoup(gc_html, "html.parser")
tables = gc_soup.find_all("table", "table table-bordered table-condensed sortable table-striped")
trs = tables[1].find_all("tr")
for i in range(0, len(trs)):
tds = trs[i].find_all("td")
gc_str = tds[10].string.strip()
if gc_str != "":
# print gc_str
gc_total += Util.format_second(gc_str)
except Exception, e:
print e
gc_total = 0.0
temp_stage.set_gc_time(gc_total)
final_stages.append(temp_stage)