Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for exitCode (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. .teamcity/scripts/FindCommits.java

            ExecResult r = exec(cmd);
            if (r.exitCode != 0) {
                throw new AssertionError(String.join(" ", cmd) + " failed: " + r);
            }
            return r.stdout;
        }
    
        private static final class ExecResult {
            final int exitCode;
            final String stdout;
            final String stderr;
    
            ExecResult(int exitCode, String stdout, String stderr) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jan 20 03:53:25 GMT 2026
    - 5.5K bytes
    - Click Count (0)
Back to Top