本文整理匯總了Python中scripts.core.base.Paths.without_ext方法的典型用法代碼示例。如果您正苦於以下問題:Python Paths.without_ext方法的具體用法?Python Paths.without_ext怎麽用?Python Paths.without_ext使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類scripts.core.base.Paths
的用法示例。
在下文中一共展示了Paths.without_ext方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: as_string
# 需要導入模塊: from scripts.core.base import Paths [as 別名]
# 或者: from scripts.core.base.Paths import without_ext [as 別名]
def as_string(self):
if self.file:
return '{} x {}'.format(
self.proc,
Paths.path_end(Paths.without_ext(self.file), level=2)
)
return 'process'
示例2: __init__
# 需要導入模塊: from scripts.core.base import Paths [as 別名]
# 或者: from scripts.core.base.Paths import without_ext [as 別名]
def __init__(self, o, config):
o = ConfigBase.merge(DEFAULTS, deepcopy(o))
self.file = o.get('file', None)
self.proc = int(o.get('proc', None))
self.time_limit = float(o.get('time_limit', None))
self.memory_limit = float(o.get('memory_limit', None))
self.tags = set(o.get('tags', None))
self.check_rules = o.get('check_rules', None)
self.config = config
if self.config:
self.file = Paths.join(self.config.root, self.file)
self.without_ext = Paths.basename(Paths.without_ext(self.file))
self.shortname = '{name}.{proc}'.format(name=self.without_ext, proc=self.proc)
self.fs = ConfigCaseFiles(
root=self.config.root,
ref_output=Paths.join(self.config.root, 'ref_output', self.without_ext),
output=Paths.join(
self.config.root,
'test_results',
self.shortname
))
else:
# create temp folder where files will be
tmp_folder = Paths.temp_file(o.get('tmp') + '-{date}-{time}-{rnd}')
Paths.ensure_path(tmp_folder, is_file=False)
self.fs = ConfigCaseFiles(
root=tmp_folder,
ref_output=tmp_folder,
output=tmp_folder
)
示例3: __init__
# 需要導入模塊: from scripts.core.base import Paths [as 別名]
# 或者: from scripts.core.base.Paths import without_ext [as 別名]
def __init__(self, o, config):
o = ConfigBase.merge(yamlc.DEFAULTS, deepcopy(o))
self.file = o.get(yamlc.TAG_FILES, None)
self.proc = int(o.get(yamlc.TAG_PROC, None))
self.time_limit = float(o.get(yamlc.TAG_TIME_LIMIT, None))
self.memory_limit = float(o.get(yamlc.TAG_MEMORY_LIMIT, None))
self.tags = set(o.get(yamlc.TAG_TAGS, None))
self.check_rules = o.get(yamlc.TAG_CHECK_RULES, None)
self.config = config
if self.config:
self.file = Paths.join(self.config.root, Paths.basename(self.file))
self.without_ext = Paths.basename(Paths.without_ext(self.file))
self.shortname = '{name}.{proc}'.format(
name=self.without_ext, proc=self.proc)
self.fs = yamlc.ConfigCaseFiles(
root=self.config.root,
ref_output=Paths.join(
self.config.root, yamlc.REF_OUTPUT_DIR, self.without_ext),
output=Paths.join(
self.config.root,
yamlc.TEST_RESULTS,
self.shortname
))
else:
# create temp folder where files will be
tmp_folder = Paths.temp_file(o.get('tmp') + '-{date}-{time}-{rnd}')
Paths.ensure_path(tmp_folder, is_file=False)
self.fs = yamlc.ConfigCaseFiles(
root=tmp_folder,
ref_output=tmp_folder,
output=tmp_folder
)