- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 41 for delegates (0.64 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStreamTest.java
assertEquals('s', stream.read()); assertEquals('t', stream.read()); } public void test_read_delegatesToUnderlying() throws IOException { // Test that read() delegates to underlying stream byte[] data = "ABC".getBytes(); InputStream underlyingStream = new ByteArrayInputStream(data); IgnoreCloseInputStream stream = new IgnoreCloseInputStream(underlyingStream);
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 6.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TemporaryFileInputStream.java
* This method delegates to {@link FileInputStream#reset()}. * * @throws IOException if an I/O error occurs. */ @Override public synchronized void reset() throws IOException { fileInputStream.reset(); } /** * Skips over and discards {@code n} bytes of data from this input stream. * This method delegates to {@link FileInputStream#skip(long)}. *Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
// you should remove the 'final' if you need to override this /** * Hook method called before action execution. * This method refreshes the user information if a user is logged in * and delegates to the view helper's action hook. * * @param runtime the action runtime context * @return the action response, or null to continue with normal processing */ @Override
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 15K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java
// Should return 0 when auto-connect fails due to missing project ID long lastModified = conn.getLastModified(); assertEquals(0, lastModified); } /** * Test that getDate() delegates to getLastModified(). */ public void test_getDate_delegatesToGetLastModified() throws Exception { URL url = new URL("gcs://mybucket/object.txt"); Handler handler = new Handler();Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/SsoManager.java
* * This class serves as the central coordinator for SSO authentication in Fess. * It manages registered SSO authenticators, determines when SSO is available, * and delegates authentication operations to the appropriate SSO provider based * on the current configuration. */ public class SsoManager { /** Logger for this class. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java
// Should return 0 when auto-connect fails due to missing endpoint long lastModified = conn.getLastModified(); assertEquals(0, lastModified); } /** * Test that getDate() delegates to getLastModified(). */ public void test_getDate_delegatesToGetLastModified() throws Exception { URL url = new URL("storage://mybucket/object.txt"); Handler handler = new Handler();Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
this.parent = parent; this.startPosition = startPosition; this.pageSize = pageSize; } /** * Gets the parent SearchRequestParams object that this wrapper delegates to. * * @return the parent SearchRequestParams instance */ public SearchRequestParams getParent() { return parent; } @OverrideRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 27.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
} /** * Retrieves a crawling configuration by its config ID. * This method uses caching to improve performance and automatically determines * the configuration type and delegates to the appropriate service. * * @param configId the configuration ID to retrieve * @return the CrawlingConfig object or null if not found or on error */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 19.5K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
* * @return The number of query words. */ public long getQueryWordsNum() { return suggester.getQueryWordsNum(); } /** * Deletes all words from the suggest index. * * @return true if the operation was successful, false otherwise. */ public boolean deleteAllWords() {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java
} /** * Deletes suggest items by a query string. * @param queryString The query string. * @return The SuggestDeleteResponse. */ public SuggestDeleteResponse deleteByQuery(final String queryString) { return deleteByQuery(QueryBuilders.queryStringQuery(queryString).defaultOperator(Operator.AND)); } /** * Deletes suggest items by a query builder.Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 34.4K bytes - Viewed (0)