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


Python Target.maybe_readable_combine_ids方法代码示例

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


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

示例1: combine_cache_keys

# 需要导入模块: from twitter.pants.base.target import Target [as 别名]
# 或者: from twitter.pants.base.target.Target import maybe_readable_combine_ids [as 别名]
  def combine_cache_keys(cache_keys):
    """Returns a cache key for a list of target sets that already have cache keys.

    This operation is 'idempotent' in the sense that if cache_keys contains a single key
    then that key is returned.

    Note that this operation is commutative but not associative.  We use the term 'combine' rather
    than 'merge' or 'union' to remind the user of this. Associativity is not a necessary property,
    in practice.
    """
    if len(cache_keys) == 1:
      return cache_keys[0]
    else:
      combined_id = Target.maybe_readable_combine_ids(cache_key.id for cache_key in cache_keys)
      combined_hash = hash_all(sorted(cache_key.hash for cache_key in cache_keys))
      combined_num_sources = sum(cache_key.num_sources for cache_key in cache_keys)
      return CacheKey(combined_id, combined_hash, combined_num_sources)
开发者ID:steliokontos,项目名称:commons,代码行数:19,代码来源:build_invalidator.py


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