- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for ExecResult (0.91 seconds)
-
.teamcity/scripts/CheckBadMerge.java
return new ExecResult(stdout, stderr, returnCode); } private static String getStdout(String[] command) throws IOException, InterruptedException, ExecutionException { ExecResult execResult = exec(command); if (execResult.returnCode() != 0) { throw new AssertionError(String.join(" ", command) + " failed with return code: " + execResult); }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 16:25:09 GMT 2026 - 9K bytes - Click Count (0) -
.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) -
.teamcity/scripts/CheckWrapper.java
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jan 20 03:53:25 GMT 2026 - 6.4K bytes - Click Count (0)