Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getInputStreamThread (0.15 sec)

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

            }
    
            @Override
            public Process getProcess() {
                return new TestProcess(exitValue);
            }
    
            @Override
            public InputStreamThread getInputStreamThread() {
                return new TestInputStreamThread(output);
            }
        }
    
        private static class TestProcess extends Process {
            private final int exitValue;
    
    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

            }
    
            @Override
            public Process getProcess() {
                return new TestProcess(exitValue);
            }
    
            @Override
            public InputStreamThread getInputStreamThread() {
                return new TestInputStreamThread(output);
            }
        }
    
        private static class TestProcess extends Process {
            private final int exitValue;
    
    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

                super(new MockProcess(exitValue));
                this.exitValue = exitValue;
                this.output = output;
            }
    
            @Override
            public InputStreamThread getInputStreamThread() {
                return new MockInputStreamThread(output);
            }
    
            @Override
            public Process getProcess() {
                return new MockProcess(exitValue);
            }
        }
    
    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