本文整理汇总了Python中CIME.XML.env_base.EnvBase.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python EnvBase.__init__方法的具体用法?Python EnvBase.__init__怎么用?Python EnvBase.__init__使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CIME.XML.env_base.EnvBase
的用法示例。
在下文中一共展示了EnvBase.__init__方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from CIME.XML.env_base import EnvBase [as 别名]
# 或者: from CIME.XML.env_base.EnvBase import __init__ [as 别名]
def __init__(self, case_root=None, infile="env_batch.xml"):
"""
initialize an object interface to file env_batch.xml in the case directory
"""
EnvBase.__init__(self, case_root, infile)
self.prereq_jobid = None
self.batchtype = None
示例2: __init__
# 需要导入模块: from CIME.XML.env_base import EnvBase [as 别名]
# 或者: from CIME.XML.env_base.EnvBase import __init__ [as 别名]
def __init__(self, case_root=None, infile="env_mach_pes.xml", components=None):
"""
initialize an object interface to file env_mach_pes.xml in the case directory
"""
self._components = components
schema = os.path.join(get_cime_root(), "config", "xml_schemas", "env_mach_pes.xsd")
EnvBase.__init__(self, case_root, infile, schema=schema)
示例3: __init__
# 需要导入模块: from CIME.XML.env_base import EnvBase [as 别名]
# 或者: from CIME.XML.env_base.EnvBase import __init__ [as 别名]
def __init__(self, case_root=None, infile="env_run.xml", components=None, read_only=False):
"""
initialize an object interface to file env_run.xml in the case directory
"""
self._components = components
schema = os.path.join(get_cime_root(), "config", "xml_schemas", "env_entry_id.xsd")
EnvBase.__init__(self, case_root, infile, schema=schema, read_only=read_only)
示例4: __init__
# 需要导入模块: from CIME.XML.env_base import EnvBase [as 别名]
# 或者: from CIME.XML.env_base.EnvBase import __init__ [as 别名]
def __init__(self, caseroot, infile="env_mach_specific.xml"):
"""
initialize an object interface to file env_mach_specific.xml in the case directory
"""
fullpath = infile if os.path.isabs(infile) else os.path.join(caseroot, infile)
EnvBase.__init__(self, caseroot, fullpath)
self._cshscript = []
self._shscript = []
示例5: __init__
# 需要导入模块: from CIME.XML.env_base import EnvBase [as 别名]
# 或者: from CIME.XML.env_base.EnvBase import __init__ [as 别名]
def __init__(self, case_root=None, infile="env_batch.xml"):
"""
initialize an object interface to file env_batch.xml in the case directory
"""
self._batchtype = None
# This arbitrary setting should always be overwritten
self._default_walltime = "00:20:00"
schema = os.path.join(get_cime_root(), "config", "xml_schemas", "env_batch.xsd")
EnvBase.__init__(self, case_root, infile, schema=schema)
示例6: __init__
# 需要导入模块: from CIME.XML.env_base import EnvBase [as 别名]
# 或者: from CIME.XML.env_base.EnvBase import __init__ [as 别名]
def __init__(self, caseroot=None, infile="env_mach_specific.xml",
components=None, unit_testing=False):
"""
initialize an object interface to file env_mach_specific.xml in the case directory
"""
schema = os.path.join(get_cime_root(), "config", "xml_schemas", "env_mach_specific.xsd")
EnvBase.__init__(self, caseroot, infile, schema=schema)
self._allowed_mpi_attributes = ("compiler", "mpilib", "threaded", "unit_testing")
self._unit_testing = unit_testing
示例7: __init__
# 需要导入模块: from CIME.XML.env_base import EnvBase [as 别名]
# 或者: from CIME.XML.env_base.EnvBase import __init__ [as 别名]
def __init__(self, case_root=None, infile="env_batch.xml"):
"""
initialize an object interface to file env_batch.xml in the case directory
"""
EnvBase.__init__(self, case_root, infile)
self.prereq_jobid = None
self.batchtype = None
# This arbitrary setting should always be overwritten
self._default_walltime = "00:20:00"
示例8: __init__
# 需要导入模块: from CIME.XML.env_base import EnvBase [as 别名]
# 或者: from CIME.XML.env_base.EnvBase import __init__ [as 别名]
def __init__(self, case_root=None, infile="env_build.xml"):
"""
initialize an object interface to file env_build.xml in the case directory
"""
EnvBase.__init__(self, case_root, infile)
示例9: __init__
# 需要导入模块: from CIME.XML.env_base import EnvBase [as 别名]
# 或者: from CIME.XML.env_base.EnvBase import __init__ [as 别名]
def __init__(self, case_root=None, infile="env_archive.xml"):
"""
initialize an object interface to file env_archive.xml in the case directory
"""
schema = os.path.join(get_cime_root(), "config", "xml_schemas", "env_archive.xsd")
EnvBase.__init__(self, case_root, infile, schema=schema)
示例10: __init__
# 需要导入模块: from CIME.XML.env_base import EnvBase [as 别名]
# 或者: from CIME.XML.env_base.EnvBase import __init__ [as 别名]
def __init__(self, case_root=None, infile="env_test.xml", components=None, read_only=False):
"""
initialize an object interface to file env_test.xml in the case directory
"""
EnvBase.__init__(self, case_root, infile, read_only=read_only)