hudson.model.Messages.Computer_BadChannel()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(4.9k)|赞(0)|评价(0)|浏览(112)

本文整理了Java中hudson.model.Messages.Computer_BadChannel()方法的一些代码示例,展示了Messages.Computer_BadChannel()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Messages.Computer_BadChannel()方法的具体详情如下:
包路径:hudson.model.Messages
类名称:Messages
方法名:Computer_BadChannel

Messages.Computer_BadChannel介绍

[英]Slave node offline or not a remote channel (such as master node).
[中]从节点脱机或不是远程通道(如主节点)。

代码示例

代码示例来源:origin: jenkinsci/jenkins

/**
 * Dumps the contents of the export table.
 */
public void doDumpExportTable( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException, InterruptedException {
  // this is a debug probe and may expose sensitive information
  checkPermission(Jenkins.ADMINISTER);
  rsp.setContentType("text/plain");
  try (PrintWriter w = new PrintWriter(rsp.getCompressedWriter(req))) {
    VirtualChannel vc = getChannel();
    if (vc instanceof Channel) {
      w.println("Master to slave");
      ((Channel) vc).dumpExportTable(w);
      w.flush(); // flush here once so that even if the dump from the agent fails, the client gets some useful info
      w.println("\n\n\nSlave to master");
      w.print(vc.call(new DumpExportTableTask()));
    } else {
      w.println(Messages.Computer_BadChannel());
    }
  }
}

代码示例来源:origin: hudson/hudson-2.x

/**
 * Dumps the contents of the export table.
 */
public void doDumpExportTable( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException, InterruptedException {
  // this is a debug probe and may expose sensitive information
  checkPermission(Hudson.ADMINISTER);
  rsp.setContentType("text/plain");
  PrintWriter w = new PrintWriter(rsp.getCompressedWriter(req));
  VirtualChannel vc = getChannel();
  if (vc instanceof Channel) {
    w.println("Master to slave");
    ((Channel)vc).dumpExportTable(w);
    w.flush(); // flush here once so that even if the dump from the slave fails, the client gets some useful info
    w.println("\n\n\nSlave to master");
    w.print(vc.call(new DumpExportTableTask()));
  } else {
    w.println(Messages.Computer_BadChannel());
  }
  w.close();
}

代码示例来源:origin: org.eclipse.hudson/hudson-core

/**
 * Dumps the contents of the export table.
 */
public void doDumpExportTable(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException, InterruptedException {
  // this is a debug probe and may expose sensitive information
  checkPermission(Hudson.ADMINISTER);
  rsp.setContentType("text/plain");
  PrintWriter w = new PrintWriter(rsp.getCompressedWriter(req));
  VirtualChannel vc = getChannel();
  if (vc instanceof Channel) {
    w.println("Master to slave");
    ((Channel) vc).dumpExportTable(w);
    w.flush(); // flush here once so that even if the dump from the slave fails, the client gets some useful info
    w.println("\n\n\nSlave to master");
    w.print(vc.call(new DumpExportTableTask()));
  } else {
    w.println(Messages.Computer_BadChannel());
  }
  w.close();
}

代码示例来源:origin: org.jvnet.hudson.main/hudson-core

/**
 * Dumps the contents of the export table.
 */
public void doDumpExportTable( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException, InterruptedException {
  // this is a debug probe and may expose sensitive information
  checkPermission(Hudson.ADMINISTER);
  rsp.setContentType("text/plain");
  PrintWriter w = new PrintWriter(rsp.getCompressedWriter(req));
  VirtualChannel vc = getChannel();
  if (vc instanceof Channel) {
    w.println("Master to slave");
    ((Channel)vc).dumpExportTable(w);
    w.flush(); // flush here once so that even if the dump from the slave fails, the client gets some useful info
    w.println("\n\n\nSlave to master");
    w.print(vc.call(new DumpExportTableTask()));
  } else {
    w.println(Messages.Computer_BadChannel());
  }
  w.close();
}

代码示例来源:origin: org.eclipse.hudson.main/hudson-core

/**
 * Dumps the contents of the export table.
 */
public void doDumpExportTable( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException, InterruptedException {
  // this is a debug probe and may expose sensitive information
  checkPermission(Hudson.ADMINISTER);
  rsp.setContentType("text/plain");
  PrintWriter w = new PrintWriter(rsp.getCompressedWriter(req));
  VirtualChannel vc = getChannel();
  if (vc instanceof Channel) {
    w.println("Master to slave");
    ((Channel)vc).dumpExportTable(w);
    w.flush(); // flush here once so that even if the dump from the slave fails, the client gets some useful info
    w.println("\n\n\nSlave to master");
    w.print(vc.call(new DumpExportTableTask()));
  } else {
    w.println(Messages.Computer_BadChannel());
  }
  w.close();
}

代码示例来源:origin: org.jenkins-ci.main/jenkins-core

/**
 * Dumps the contents of the export table.
 */
public void doDumpExportTable( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException, InterruptedException {
  // this is a debug probe and may expose sensitive information
  checkPermission(Jenkins.ADMINISTER);
  rsp.setContentType("text/plain");
  try (PrintWriter w = new PrintWriter(rsp.getCompressedWriter(req))) {
    VirtualChannel vc = getChannel();
    if (vc instanceof Channel) {
      w.println("Master to slave");
      ((Channel) vc).dumpExportTable(w);
      w.flush(); // flush here once so that even if the dump from the agent fails, the client gets some useful info
      w.println("\n\n\nSlave to master");
      w.print(vc.call(new DumpExportTableTask()));
    } else {
      w.println(Messages.Computer_BadChannel());
    }
  }
}

相关文章

Messages类方法