本文整理汇总了Python中src.build.build_options.OPTIONS.wait_for_goma_ctl方法的典型用法代码示例。如果您正苦于以下问题:Python OPTIONS.wait_for_goma_ctl方法的具体用法?Python OPTIONS.wait_for_goma_ctl怎么用?Python OPTIONS.wait_for_goma_ctl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类src.build.build_options.OPTIONS
的用法示例。
在下文中一共展示了OPTIONS.wait_for_goma_ctl方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _get_ninja_jobs_argument
# 需要导入模块: from src.build.build_options import OPTIONS [as 别名]
# 或者: from src.build.build_options.OPTIONS import wait_for_goma_ctl [as 别名]
def _get_ninja_jobs_argument():
# -j200 might be good because having more tasks doesn't help a
# lot and Z620 doesn't die even if everything runs locally for
# some reason.
if OPTIONS.set_up_goma():
OPTIONS.wait_for_goma_ctl()
return ["-j200", "-l40"]
return []