Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getExitValue (0.38 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ThirdPartyAuditTask.java

                    spec.setStandardOutput(new NullOutputStream());
                }
                spec.setIgnoreExitValue(true);
            });
            if (OS.current().equals(OS.LINUX) && result.getExitValue() == SIG_KILL_EXIT_VALUE) {
                throw new IllegalStateException("Third party audit was killed buy SIGKILL, could be a victim of the Linux OOM killer");
            }
            final String forbiddenApisOutput;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 17 08:59:22 GMT 2021
    - 16.2K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/docker/DockerSupportService.java

                spec.setStandardOutput(stdout);
                spec.setErrorOutput(stderr);
                spec.setIgnoreExitValue(true);
            });
            return new Result(execResult.getExitValue(), stdout.toString(), stderr.toString());
        }
    
        /**
         * An immutable class that represents the results of a Docker search from {@link #getDockerAvailability()}}.
         */
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 14.8K bytes
    - Click Count (0)
Back to Top