Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for exitValue (0.99 sec)

  1. src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java

                return new TestJobProcess(exitValue, processOutput);
            }
        }
    
        private static class TestJobProcess extends JobProcess {
            private final int exitValue;
            private final String output;
    
            public TestJobProcess(int exitValue, String output) {
                super(new TestProcess(exitValue));
                this.exitValue = exitValue;
                this.output = output;
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/PythonJobTest.java

            private final int exitValue;
    
            public TestProcess(int exitValue) {
                this.exitValue = exitValue;
            }
    
            @Override
            public int waitFor() throws InterruptedException {
                return exitValue;
            }
    
            @Override
            public int exitValue() {
                return exitValue;
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

        private class MockProcess extends Process {
            private final int exitValue;
    
            public MockProcess(int exitValue) {
                this.exitValue = exitValue;
            }
    
            @Override
            public int waitFor() {
                return exitValue;
            }
    
            @Override
            public int exitValue() {
                return exitValue;
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 31.4K bytes
    - Viewed (0)
Back to top