本文整理了Java中hudson.model.Messages._Hudson_NodeBeingRemoved()
方法的一些代码示例,展示了Messages._Hudson_NodeBeingRemoved()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Messages._Hudson_NodeBeingRemoved()
方法的具体详情如下:
包路径:hudson.model.Messages
类名称:Messages
方法名:_Hudson_NodeBeingRemoved
[英]Node is being removed
[中]正在删除节点
代码示例来源:origin: jenkinsci/jenkins
@Override
public void run() {
Computer c = node.toComputer();
if (c != null) {
c.recordTermination();
c.disconnect(OfflineCause.create(hudson.model.Messages._Hudson_NodeBeingRemoved()));
}
if (node == nodes.remove(node.getNodeName())) {
jenkins.updateComputerList();
jenkins.trimLabels();
}
}
});
代码示例来源:origin: org.eclipse.hudson/hudson-core
/**
* Removes a {@link Node} from Hudson.
*/
public synchronized void removeNode(Node n) throws IOException {
Computer c = n.toComputer();
if (c != null) {
c.disconnect(OfflineCause.create(Messages._Hudson_NodeBeingRemoved()));
}
ArrayList<Node> nl = new ArrayList<Node>(this.slaves);
nl.remove(n);
setNodes(nl);
}
代码示例来源:origin: org.eclipse.hudson.main/hudson-core
/**
* Removes a {@link Node} from Hudson.
*/
public synchronized void removeNode(Node n) throws IOException {
Computer c = n.toComputer();
if (c != null) {
c.disconnect(OfflineCause.create(Messages._Hudson_NodeBeingRemoved()));
}
ArrayList<Node> nl = new ArrayList<Node>(this.slaves);
nl.remove(n);
setNodes(nl);
}
代码示例来源:origin: org.jvnet.hudson.main/hudson-core
/**
* Removes a {@link Node} from Hudson.
*/
public synchronized void removeNode(Node n) throws IOException {
Computer c = n.toComputer();
if (c != null) {
c.disconnect(OfflineCause.create(Messages._Hudson_NodeBeingRemoved()));
}
ArrayList<Node> nl = new ArrayList<Node>(this.slaves);
nl.remove(n);
setNodes(nl);
}
代码示例来源:origin: hudson/hudson-2.x
/**
* Removes a {@link Node} from Hudson.
*/
public synchronized void removeNode(Node n) throws IOException {
Computer c = n.toComputer();
if (c != null) {
c.disconnect(OfflineCause.create(Messages._Hudson_NodeBeingRemoved()));
}
ArrayList<Node> nl = new ArrayList<Node>(this.slaves);
nl.remove(n);
setNodes(nl);
}
代码示例来源:origin: org.jenkins-ci.main/jenkins-core
@Override
public void run() {
Computer c = node.toComputer();
if (c != null) {
c.recordTermination();
c.disconnect(OfflineCause.create(hudson.model.Messages._Hudson_NodeBeingRemoved()));
}
if (node == nodes.remove(node.getNodeName())) {
jenkins.updateComputerList();
jenkins.trimLabels();
}
}
});
内容来源于网络,如有侵权,请联系作者删除!