本文整理匯總了Python中zeroinstall.injector.policy.Policy.recalculate方法的典型用法代碼示例。如果您正苦於以下問題:Python Policy.recalculate方法的具體用法?Python Policy.recalculate怎麽用?Python Policy.recalculate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類zeroinstall.injector.policy.Policy
的用法示例。
在下文中一共展示了Policy.recalculate方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: testSource
# 需要導入模塊: from zeroinstall.injector.policy import Policy [as 別名]
# 或者: from zeroinstall.injector.policy.Policy import recalculate [as 別名]
def testSource(self):
iface_cache = self.config.iface_cache
warnings.filterwarnings("ignore", category=DeprecationWarning)
foo = iface_cache.get_interface("http://foo/Binary.xml")
self.import_feed(foo.uri, "Binary.xml")
foo_src = iface_cache.get_interface("http://foo/Source.xml")
self.import_feed(foo_src.uri, "Source.xml")
compiler = iface_cache.get_interface("http://foo/Compiler.xml")
self.import_feed(compiler.uri, "Compiler.xml")
p = Policy("http://foo/Binary.xml", config=self.config)
p.freshness = 0
p.network_use = model.network_full
p.recalculate() # Deprecated
assert p.implementation[foo].id == "sha1=123"
# Now ask for source instead
p.requirements.source = True
p.requirements.command = "compile"
p.recalculate()
assert p.solver.ready, p.solver.get_failure_reason()
assert p.implementation[foo].id == "sha1=234" # The source
assert p.implementation[compiler].id == "sha1=345" # A binary needed to compile it