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


Java AbstractCloudComputer.isIdle方法代码示例

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


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

示例1: check

import hudson.slaves.AbstractCloudComputer; //导入方法依赖的package包/类
/**
 * While x-stream serialisation buggy, copy implementation.
 */
@Override
@GuardedBy("hudson.model.Queue.lock")
public long check(final AbstractCloudComputer c) {
    final AbstractCloudSlave computerNode = c.getNode();
    if (c.isIdle() && computerNode != null) {
        final long idleMilliseconds = System.currentTimeMillis() - c.getIdleStartMilliseconds();
        if (idleMilliseconds > MINUTES.toMillis(idleMinutes)) {
            LOG.info("Disconnecting {}, after {} min timeout.", c.getName(), idleMinutes);
            try {
                computerNode.terminate();
            } catch (InterruptedException | IOException e) {
                LOG.warn("Failed to terminate {}", c.getName(), e);
            }
        }
    }
    return 1;
}
 
开发者ID:KostyaSha,项目名称:yet-another-docker-plugin,代码行数:21,代码来源:DockerCloudRetentionStrategy.java

示例2: check

import hudson.slaves.AbstractCloudComputer; //导入方法依赖的package包/类
@Override
@GuardedBy("hudson.model.Queue.lock")
public long check(final AbstractCloudComputer acc) {
    // When the slave is idle we should disable accepting tasks and check to see if it is already trying to
    // terminate. If it's not already trying to terminate then lets terminate manually.
    if (acc.isIdle() && !disabled) {
        final long idleMilliseconds = System.currentTimeMillis() - acc.getIdleStartMilliseconds();
        if (idleMilliseconds > TimeUnit2.MINUTES.toMillis(idleMinutes)) {
            LOG.debug("Disconnecting {}", acc.getName());
            done(acc);
        }
    }

    // Return one because we want to check every minute if idle.
    return 1;
}
 
开发者ID:KostyaSha,项目名称:yet-another-docker-plugin,代码行数:17,代码来源:DockerOnceRetentionStrategy.java


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