当前位置: 首页>>代码示例>>Python>>正文


Python EnvBase.get_children方法代码示例

本文整理汇总了Python中CIME.XML.env_base.EnvBase.get_children方法的典型用法代码示例。如果您正苦于以下问题:Python EnvBase.get_children方法的具体用法?Python EnvBase.get_children怎么用?Python EnvBase.get_children使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CIME.XML.env_base.EnvBase的用法示例。


在下文中一共展示了EnvBase.get_children方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: get_children

# 需要导入模块: from CIME.XML.env_base import EnvBase [as 别名]
# 或者: from CIME.XML.env_base.EnvBase import get_children [as 别名]
    def get_children(self, name=None, attributes=None, root=None):
        if name in ("JOB_WALLCLOCK_TIME", "PROJECT", "CHARGE_ACCOUNT",
                        "PROJECT_REQUIRED", "JOB_QUEUE", "BATCH_COMMAND_FLAGS"):
            nodes = EnvBase.get_children(self, "entry", attributes={"id":name}, root=root)
        else:
            nodes = EnvBase.scan_children(self, name, attributes=attributes, root=root)

        return nodes
开发者ID:Katetc,项目名称:cime,代码行数:10,代码来源:env_batch.py

示例2: create_job_groups

# 需要导入模块: from CIME.XML.env_base import EnvBase [as 别名]
# 或者: from CIME.XML.env_base.EnvBase import get_children [as 别名]
    def create_job_groups(self, batch_jobs):
        # Subtle: in order to support dynamic batch jobs, we need to remove the
        # job_submission group and replace with job-based groups

        orig_group = self.get_child("group", {"id":"job_submission"},
                                    err_msg="Looks like job groups have already been created")
        orig_group_children = EnvBase.get_children(self, root=orig_group)

        childnodes = []
        for child in reversed(orig_group_children):
            childnodes.append(child)

        self.remove_child(orig_group)

        for name, jdict in batch_jobs:
            new_job_group = self.make_child("group", {"id":name})
            for field in jdict.keys():
                val = jdict[field]
                node = self.make_child("entry", {"id":field,"value":val}, root=new_job_group)
                self.make_child("type", root=node, text="char")

            for child in childnodes:
                self.add_child(self.copy(child), root=new_job_group)
开发者ID:Katetc,项目名称:cime,代码行数:25,代码来源:env_batch.py


注:本文中的CIME.XML.env_base.EnvBase.get_children方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。