Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for PB (0.02 seconds)

  1. .teamcity/scripts/CheckBadMerge.java

            if (command.length == 0) {
                throw new IllegalArgumentException("command must not be empty");
            }
    
            ProcessBuilder pb = new ProcessBuilder(command);
            Process process = pb.start();
    
            Future<String> stdoutFuture = readStreamAsync(process.getInputStream());
            Future<String> stderrFuture = readStreamAsync(process.getErrorStream());
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 16:25:09 GMT 2026
    - 9K bytes
    - Click Count (0)
Back to Top