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


Python Commands.checksources方法代码示例

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


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

示例1: main

# 需要导入模块: from commands import Commands [as 别名]
# 或者: from commands.Commands import checksources [as 别名]
def main(conffile=None):
    commands = Commands(conffile)

    commands.logger.info ('> Getting modified client source')
    if commands.checksources(0):
        commands.gathermd5s(0, True)
        commands.unpackmodifiedclasses(0)
    commands.logger.info ('> Getting modified server source')
    if commands.checksources(1):
        commands.gathermd5s(1, True)
        commands.unpackmodifiedclasses(1)
开发者ID:Cap123,项目名称:minecraft,代码行数:13,代码来源:getmodsource.py

示例2: getmodsource

# 需要导入模块: from commands import Commands [as 别名]
# 或者: from commands.Commands import checksources [as 别名]
def getmodsource(conffile=None):
    commands = Commands(conffile)

    try:
        commands.logger.info('> Getting modified client source')
        if commands.checksources(CLIENT):
            commands.gathermd5s(CLIENT, True)
            commands.unpackmodifiedclasses(CLIENT)
        commands.logger.info('> Getting modified server source')
        if commands.checksources(SERVER):
            commands.gathermd5s(SERVER, True)
            commands.unpackmodifiedclasses(SERVER)
    except Exception:  # pylint: disable-msg=W0703
        commands.logger.exception('FATAL ERROR')
        sys.exit(1)
开发者ID:Orazur66,项目名称:Minecraft-Client,代码行数:17,代码来源:getmodsource.py

示例3: main

# 需要导入模块: from commands import Commands [as 别名]
# 或者: from commands.Commands import checksources [as 别名]
def main(conffile):
    commands = Commands(conffile)

    commands.logger.info ('> Recompiling client...')
    clienttime = time.time()
    if commands.checksources(0):
        commands.cleanbindirs(0)
        commands.recompile(0)
        commands.logger.info ('> Done in %.2f seconds'%(time.time()-clienttime))

    commands.logger.info ('> Recompiling server...')
    servertime = time.time()
    if commands.checksources(1):
        commands.cleanbindirs(1)
        commands.recompile(1)
        commands.logger.info ('> Done in %.2f seconds'%(time.time()-servertime))
开发者ID:CFLPlayer,项目名称:minecraft-smp-mocreatures,代码行数:18,代码来源:recompile.py

示例4: recompile

# 需要导入模块: from commands import Commands [as 别名]
# 或者: from commands.Commands import checksources [as 别名]
def recompile(conffile=None):
    commands = Commands(conffile)

    try:
        commands.logger.info('> Recompiling client...')
        clienttime = time.time()
        if commands.checksources(CLIENT):
            commands.cleanbindirs(CLIENT)
            commands.recompile(CLIENT)
            commands.logger.info('> Done in %.2f seconds' % (time.time() - clienttime))

        commands.logger.info('> Recompiling server...')
        servertime = time.time()
        if commands.checksources(SERVER):
            commands.cleanbindirs(SERVER)
            commands.recompile(SERVER)
            commands.logger.info('> Done in %.2f seconds' % (time.time() - servertime))
    except Exception:  # pylint: disable-msg=W0703
        commands.logger.exception('FATAL ERROR')
        sys.exit(1)
开发者ID:Orazur66,项目名称:Minecraft-Client,代码行数:22,代码来源:recompile.py


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