- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for getOutputs (0.17 sec)
-
src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java
/** * Gets the original output synonyms. * Returns a defensive copy to prevent external modification. * * @return The original output synonyms (defensive copy). */ public String[] getOutputs() { return outputs == null ? null : outputs.clone(); } /** * Gets the output synonyms as a newline-separated string. * * @return The output synonyms as a string. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/jcifs/SmbPipeHandleTest.java
* @throws CIFSException if an error occurs while getting the stream. */ @Test public void testGetOutputStream() throws CIFSException { assertEquals(mockOutputStream, smbPipeHandle.getOutput(), "getOutput() should return the correct output stream."); } /** * Tests related to the lifecycle management of the handle (e.g., closing). */ @Nested public class LifecycleManagementTest {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PythonJob.java
final int exitValue = currentProcess.exitValue(); if (logger.isInfoEnabled()) { logger.info("Python: Exit Code={} - Process Output:\n{}", exitValue, it.getOutput()); } if (exitValue != 0) { final StringBuilder out = new StringBuilder(); if (processTimeout) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/InputStreamThread.java
} } /** * Returns all buffered lines as a single string, separated by newlines. * * @return the concatenated output of all buffered lines */ public String getOutput() { final StringBuilder buf = new StringBuilder(100); for (final String value : list) { buf.append(value).append("\n"); } return buf.toString(); } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/SmbPipeHandle.java
/** * Gets the output stream for writing to this pipe. * * @return this pipe's output stream * @throws CIFSException if an error occurs getting the output stream */ OutputStream getOutput() throws CIFSException; /** * {@inheritDoc} * * @throws CIFSException if an error occurs closing the handle * * @see java.lang.AutoCloseable#close() */ @OverrideRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeHandleInternal.java
SmbPipeInputStream getInput() throws CIFSException; /** * * @return this pipe's output stream * @throws CIFSException if an error occurs */ @Override SmbPipeOutputStream getOutput() throws CIFSException; /** * Ensures that the tree connection is established and returns it. * * @return tree connection * @throws CIFSException if an error occurs connecting to the tree
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.7K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/ApiAdminDictMappingAction.java
final EditBody body = new EditBody(); body.id = entity.getId(); body.dictId = dictId; body.inputs = entity.getInputsValue(); body.output = entity.getOutput(); return body; }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.5K bytes - Viewed (0)