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


Python Stage.check方法代码示例

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


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

示例1: join_path

# 需要导入模块: from spack.stage import Stage [as 别名]
# 或者: from spack.stage.Stage import check [as 别名]
            mirror_file = join_path(args.directory, mirror_path)
            if os.path.exists(mirror_file):
                tty.msg("Already fetched %s." % mirror_file)
                num_mirrored += 1
                continue

            # Get the URL for the version and set up a stage to download it.
            url = pkg.url_for_version(version)
            stage = Stage(url)
            try:
                # fetch changes directory into the stage
                stage.fetch()

                if not args.no_checksum and version in pkg.versions:
                    digest = pkg.versions[version]
                    stage.check(digest)
                    tty.msg("Checksum passed for %[email protected]%s" % (pkg.name, version))

                # change back and move the new archive into place.
                os.chdir(working_dir)
                shutil.move(stage.archive_file, mirror_file)
                tty.msg("Added %s to mirror" % mirror_file)
                num_mirrored += 1

            except Exception, e:
                 tty.warn("Error while fetching %s." % url, e.message)
                 num_error += 1

            finally:
                stage.destroy()
开发者ID:scrobey,项目名称:spack,代码行数:32,代码来源:mirror.py


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