Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestProcess (0.36 sec)

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

            public TestJobProcess(int exitValue, String output) {
                super(new TestProcess(exitValue));
                this.exitValue = exitValue;
                this.output = output;
            }
    
            @Override
            public Process getProcess() {
                return new TestProcess(exitValue);
            }
    
            @Override
            public InputStreamThread getInputStreamThread() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java

            public TestJobProcess(int exitValue, String output) {
                super(new TestProcess(exitValue));
                this.exitValue = exitValue;
                this.output = output;
            }
    
            @Override
            public Process getProcess() {
                return new TestProcess(exitValue);
            }
    
            @Override
            public InputStreamThread getInputStreamThread() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.8K bytes
    - Viewed (0)
Back to top