Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for delegates (2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/client/FesenClientTest.java

                assertEquals(0, indices.length);
            } catch (Exception e) {
                fail("Should handle null targetIndices: " + e.getMessage());
            }
        }
    
        /**
         * Test: prepareStreamSearch delegates to prepareSearch
         * Verifies that both methods return the same result
         */
        @Test
        public void testPrepareStreamSearchDelegatesToPrepareSearch() {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 08:44:44 UTC 2025
    - 17K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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;
            }
    
            @Override
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 27.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top