hudson.remoting.Channel.dumpExportTable()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(6.2k)|赞(0)|评价(0)|浏览(186)

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

Channel.dumpExportTable介绍

[英]Dumps the list of exported objects and their allocation traces to the given output.
[中]将导出对象的列表及其分配跟踪转储到给定的输出。

代码示例

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

public String call() throws IOException {
    final Channel ch = getChannelOrFail();
    StringWriter sw = new StringWriter();
    try (PrintWriter pw = new PrintWriter(sw)) {
      ch.dumpExportTable(pw);
    }
    return sw.toString();
  }
}

代码示例来源: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: org.jenkins-ci.main/jenkins-core

public String call() throws IOException {
    StringWriter sw = new StringWriter();
    PrintWriter pw = new PrintWriter(sw);
    Channel.current().dumpExportTable(pw);
    pw.close();
    return sw.toString();
  }
}

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

public String call() throws IOException {
    StringWriter sw = new StringWriter();
    PrintWriter pw = new PrintWriter(sw);
    Channel.current().dumpExportTable(pw);
    pw.close();
    return sw.toString();
  }
}

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

public String call() throws IOException {
    StringWriter sw = new StringWriter();
    PrintWriter pw = new PrintWriter(sw);
    Channel.current().dumpExportTable(pw);
    pw.close();
    return sw.toString();
  }
}

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

public String call() throws IOException {
    StringWriter sw = new StringWriter();
    PrintWriter pw = new PrintWriter(sw);
    Channel.current().dumpExportTable(pw);
    pw.close();
    return sw.toString();
  }
}

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

public String call() throws IOException {
    StringWriter sw = new StringWriter();
    PrintWriter pw = new PrintWriter(sw);
    Channel.current().dumpExportTable(pw);
    pw.close();
    return sw.toString();
  }
}

代码示例来源: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.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());
    }
  }
}

代码示例来源: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();
}

相关文章