本文整理汇总了Python中infrasim.workspace.Workspace.check_node方法的典型用法代码示例。如果您正苦于以下问题:Python Workspace.check_node方法的具体用法?Python Workspace.check_node怎么用?Python Workspace.check_node使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类infrasim.workspace.Workspace
的用法示例。
在下文中一共展示了Workspace.check_node方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: init
# 需要导入模块: from infrasim.workspace import Workspace [as 别名]
# 或者: from infrasim.workspace.Workspace import check_node [as 别名]
def init(self):
node = get_dir_list(infrasim_home)
# remove the file whose name starts from "."
for nd in node:
if nd[0] is not '.' and Workspace.check_node(nd):
nd_status = NodeStatus(nd)
self.__node_list.append(nd_status)
示例2: destroy_existing_nodes
# 需要导入模块: from infrasim.workspace import Workspace [as 别名]
# 或者: from infrasim.workspace.Workspace import check_node [as 别名]
def destroy_existing_nodes():
nodes = os.listdir(config.infrasim_home)
if os.path.exists(config.infrasim_node_config_map):
nodes.remove('.node_map')
if os.path.exists(config.infrasim_chassis_config_map):
nodes.remove('.chassis_map')
for node in nodes:
if Workspace.check_node(node):
os.system("infrasim node destroy {}".format(node))
else:
os.system("infrasim chassis destroy {}".format(node))