- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 25 for getOutput (0.03 sec)
-
src/test/java/org/codelibs/fess/util/InputStreamThreadTest.java
thread.start(); Thread.sleep(50); String output1 = thread.getOutput(); boolean contains1 = thread.contains("concurrent1"); thread.join(1000); String output2 = thread.getOutput(); boolean contains2 = thread.contains("concurrent1"); assertNotNull(output1); assertNotNull(output2);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/JobProcessTest.java
assertEquals(2, callbackResults.size()); assertEquals("integration test", callbackResults.get(0)); assertEquals("second line", callbackResults.get(1)); String output = thread.getOutput(); assertTrue(output.contains("integration test")); assertTrue(output.contains("second line")); } public void test_defaultBufferSizeConstant() throws IOException {
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/dict/mapping/CharMappingItem.java
return String.join("\n", inputs); } /** * Returns the output character sequence that inputs are mapped to. * * @return the output sequence */ public String getOutput() { return output; } /** * Checks whether this mapping item has pending updates. * * @return true if both newInputs and newOutput are not null, indicating pending updates
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/CompactHashMap.java
} @ParametricNullness abstract T getOutput(int entry); @Override @ParametricNullness public T next() { checkForConcurrentModification(); if (!hasNext()) { throw new NoSuchElementException(); } indexToRemove = currentIndex; T result = getOutput(currentIndex); currentIndex = getSuccessor(currentIndex);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 39.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
assertEquals("c", item1.getOutput()); OptionalEntity<CharMappingItem> result2 = charMappingFile.get(2L); assertTrue(result2.isPresent()); CharMappingItem item2 = result2.get(); assertEquals(2L, item2.getId()); assertArrayEquals(new String[] { "d", "e" }, item2.getInputs()); assertEquals("f", item2.getOutput());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java
charMappingService.getCharMappingItem(form.dictId, form.id).ifPresent(entity -> { form.inputs = entity.getInputsValue(); form.output = entity.getOutput(); }).orElse(() -> { throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, form.getDisplayId()), () -> asListHtml(form.dictId)); });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java
*/ public String getInput() { return input; } /** * Gets the original output stem. * * @return The original output stem. */ public String getOutput() { return output; } /** * Checks if the item has been updated. * * @return true if the item has been updated, false otherwise. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/SuggestJob.java
final int exitValue = currentProcess.exitValue(); if (logger.isInfoEnabled()) { logger.info("SuggestCreator: Exit Code={} - Process Output:\n{}", exitValue, it.getOutput()); } if (exitValue != 0) { final StringBuilder out = new StringBuilder(); if (processTimeout) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
final int exitValue = currentProcess.exitValue(); if (logger.isInfoEnabled()) { logger.info("ThumbnailGenerator: Exit Code={} - Process Output:\n{}", exitValue, it.getOutput()); } if (exitValue != 0) { final StringBuilder out = new StringBuilder(); if (processTimeout) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java
assertEquals("line1 line2", item.getOutput()); } public void test_constructor_withNullOutput() { // Test with null output String[] inputs = { "input" }; CharMappingItem item = new CharMappingItem(1L, inputs, null); assertNull(item.getOutput()); } public void test_constructor_withUnsortedInputs() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.2K bytes - Viewed (0)