本文整理汇总了Python中pants.cache.cache_setup.CacheSetup.create_cache_factory_for_task方法的典型用法代码示例。如果您正苦于以下问题:Python CacheSetup.create_cache_factory_for_task方法的具体用法?Python CacheSetup.create_cache_factory_for_task怎么用?Python CacheSetup.create_cache_factory_for_task使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pants.cache.cache_setup.CacheSetup
的用法示例。
在下文中一共展示了CacheSetup.create_cache_factory_for_task方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from pants.cache.cache_setup import CacheSetup [as 别名]
# 或者: from pants.cache.cache_setup.CacheSetup import create_cache_factory_for_task [as 别名]
def __init__(self, context, workdir):
"""Subclass __init__ methods, if defined, *must* follow this idiom:
class MyTask(Task):
def __init__(self, *args, **kwargs):
super(MyTask, self).__init__(*args, **kwargs)
...
This allows us to change Task.__init__()'s arguments without
changing every subclass. If the subclass does not need its own
initialization, this method can (and should) be omitted entirely.
:API: public
"""
super(TaskBase, self).__init__()
self.context = context
self._workdir = workdir
self._cache_key_errors = set()
self._build_invalidator_dir = os.path.join(
self.context.options.for_global_scope().pants_workdir,
'build_invalidator',
self.stable_name())
self._cache_factory = CacheSetup.create_cache_factory_for_task(self)
self._options_fingerprinter = OptionsFingerprinter(self.context.build_graph)
示例2: __init__
# 需要导入模块: from pants.cache.cache_setup import CacheSetup [as 别名]
# 或者: from pants.cache.cache_setup.CacheSetup import create_cache_factory_for_task [as 别名]
def __init__(self, context, workdir):
"""Subclass __init__ methods, if defined, *must* follow this idiom:
class MyTask(Task):
def __init__(self, *args, **kwargs):
super(MyTask, self).__init__(*args, **kwargs)
...
This allows us to change Task.__init__()'s arguments without
changing every subclass. If the subclass does not need its own
initialization, this method can (and should) be omitted entirely.
"""
super(TaskBase, self).__init__()
self.context = context
self._workdir = workdir
# TODO: It would be nice to use self.get_options().cache_key_gen_version here, because then
# we could have a separate value for each scope if we really wanted to. However we can't
# access per-task options in Task.__init__ because GroupTask.__init__ calls it with the
# group task's scope, which isn't currently in the known scopes we generate options for.
self._cache_key_generator = CacheKeyGenerator(self.context.options.for_global_scope().cache_key_gen_version)
self._cache_key_errors = set()
self._build_invalidator_dir = os.path.join(
self.context.options.for_global_scope().pants_workdir, "build_invalidator", self.stable_name()
)
self._cache_factory = CacheSetup.create_cache_factory_for_task(self)