Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for getProcess (0.05 seconds)

  1. src/test/java/org/codelibs/fess/util/JobProcessTest.java

            JobProcess jobProcess1 = new JobProcess(mockProcess1);
            JobProcess jobProcess2 = new JobProcess(mockProcess2);
    
            assertNotSame(jobProcess1.getProcess(), jobProcess2.getProcess());
            assertNotSame(jobProcess1.getInputStreamThread(), jobProcess2.getInputStreamThread());
        }
    
        @Test
        public void test_constructor_withLargeBufferSize() throws IOException {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 8.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java

                super(new TestProcess(exitValue));
                this.exitValue = exitValue;
                this.output = output;
            }
    
            @Override
            public Process getProcess() {
                return new TestProcess(exitValue);
            }
    
            @Override
            public InputStreamThread getInputStreamThread() {
                return new TestInputStreamThread(output);
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 19K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/job/PythonJobTest.java

                super(new TestProcess(exitValue));
                this.exitValue = exitValue;
                this.output = output;
            }
    
            @Override
            public Process getProcess() {
                return new TestProcess(exitValue);
            }
    
            @Override
            public InputStreamThread getInputStreamThread() {
                return new TestInputStreamThread(output);
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 22.2K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

            }
    
            @Override
            public InputStreamThread getInputStreamThread() {
                return new MockInputStreamThread(output);
            }
    
            @Override
            public Process getProcess() {
                return new MockProcess(exitValue);
            }
        }
    
        // Mock InputStreamThread implementation
        private class MockInputStreamThread extends InputStreamThread {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 31.6K bytes
    - Click Count (0)
Back to Top