- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 39 for line15 (0.03 seconds)
-
src/test/java/org/codelibs/fess/util/JobProcessTest.java
assertTrue("Should have line4", thread.contains("line4")); assertTrue("Should have line5", thread.contains("line5")); } @Test public void test_emptyInputStream() throws IOException, InterruptedException { Process mockProcess = createMockProcess(""); JobProcess jobProcess = new JobProcess(mockProcess); InputStreamThread thread = jobProcess.getInputStreamThread();
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) -
src/main/java/org/codelibs/fess/util/InputStreamThread.java
import org.apache.logging.log4j.Logger; /** * A thread that reads from an input stream line by line and maintains a buffer of recent lines. * This class provides functionality to read input stream data asynchronously, * optionally process each line with a callback function, and maintain a circular buffer * of recent lines for retrieval. */ public class InputStreamThread extends Thread { /** Logger instance for this class */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/ParameterUtil.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/ScrollSearchApiTests.java
assertTrue(body != null && body.length() > 0, "Response body should not be empty"); // NDJSON format: each line is a JSON object String[] lines = body.trim().split("\n"); assertTrue(lines.length > 0, "Should have at least one line in NDJSON response"); } @Test public void testScrollSearch_withNum() { Map<String, String> params = new HashMap<>();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 7.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/PythonJob.java
} /** * Adds a single command-line argument to pass to the Python script. * * @param value the argument value to add * @return this PythonJob instance for method chaining */ public PythonJob arg(final String value) { argList.add(value); return this; } /** * Adds multiple command-line arguments to pass to the Python script. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8.2K bytes - Click Count (0) -
src/main/resources/fess_indices/fess/zh-cn/stopwords.txt
{ } [ ] < > * # & ^ $ @ ! ~ : ; + / \ 《 》 — - , 。 、 : ; ! · ? “ ” ) ( 【 】 [ ] ● # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese) # English Stop WordsCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jun 17 08:00:22 GMT 2017 - 310 bytes - Click Count (0) -
dbflute_fess/dfprop/classificationDeploymentMap.dfprop
# # Specification: # map: { # [table-name or $$ALL$$] = map:{ # ; [column-name (with hint)]=[classification-name] # } # } # # *The line that starts with '#' means comment-out. # map:{ #; $$ALL$$ = map:{suffix:_FLG=Flg} }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jul 04 22:46:31 GMT 2015 - 795 bytes - Click Count (0) -
src/main/webapp/css/admin/plugins/daterangepicker/daterangepicker.css
text-align: center; margin: 4px auto 0 auto; line-height: 30px; position: relative; } .daterangepicker .calendar-time select.disabled { color: #ccc; cursor: not-allowed; } .daterangepicker .drp-buttons { clear: both; text-align: right; padding: 8px; border-top: 1px solid #ddd; display: none; line-height: 12px; vertical-align: middle; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 26 01:49:09 GMT 2024 - 7.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/KuromojiCSVUtil.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 3.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/JobProcess.java
* * @param process the system process to wrap * @param bufferSize the buffer size for reading process output * @param outputCallback the callback function to handle process output lines */ public JobProcess(final Process process, final int bufferSize, final Consumer<String> outputCallback) { this.process = process;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.4K bytes - Click Count (0)