- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getInputStreamThread (0.16 sec)
-
src/test/java/org/codelibs/fess/util/JobProcessTest.java
assertNotSame(jobProcess1.getInputStreamThread(), jobProcess2.getInputStreamThread()); } public void test_constructor_withLargeBufferSize() throws IOException { Process mockProcess = createMockProcess("large buffer test"); JobProcess jobProcess = new JobProcess(mockProcess, 10000, null); assertNotNull(jobProcess.getInputStreamThread()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/JobProcess.java
return process; } /** * Returns the input stream thread that handles process output. * * @return the input stream thread */ public InputStreamThread getInputStreamThread() { return inputStreamThread; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PythonJob.java
environment.put("SESSION_ID", sessionId); environment.put("OPENSEARCH_URL", SystemUtil.getSearchEngineHttpAddress()); }); final InputStreamThread it = jobProcess.getInputStreamThread(); it.start(); final Process currentProcess = jobProcess.getProcess(); currentProcess.waitFor(); it.join(5000);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K bytes - Viewed (0)