Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for redirectOutput (0.05 sec)

  1. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

              .redirectInput(File("/dev/null"))
              .redirectOutput(Redirect.INHERIT)
              .redirectError(Redirect.INHERIT)
              .start()
          }
          Gui -> {
            return ProcessBuilder(
              "nohup", "wireshark", "-o", "tls.keylog_file:$logFile", "-S", "-l", "-Y", "http2", "-k",
            )
              .redirectInput(File("/dev/null"))
              .redirectOutput(File("/dev/null"))
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java

            final ProcessBuilder pb = new ProcessBuilder(cmdList);
            if (workingDirectory != null) {
                pb.directory(workingDirectory);
            }
            if (standardOutput) {
                pb.redirectOutput(outputFile);
            } else {
                pb.redirectErrorStream(true);
            }
    
            Process currentProcess = null;
            MonitorThread mt = null;
            try {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top