Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 179 for handler2 (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/crawler/FessCrawlerThreadTest.java

            urls.add("http://example.com/page2"); // Duplicate
    
            Set<RequestData> result = crawlerThread.getAnchorSet(urls);
            assertNotNull(result, "getAnchorSet should handle duplicates");
    
            // Since it returns a Set, duplicates should be handled by URL comparison
            // The exact behavior depends on RequestData.equals() implementation
            assertTrue("Should have at most 5 items", result.size() <= 5);
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 9.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/util/SearchEngineUtilTest.java

            assertTrue(outputStream instanceof ByteArrayOutputStream);
        }
    
        @Test
        public void test_getXContentString_success() {
            // Test that getXContentString method exists and handles exceptions properly
            ToXContent xContent = new ToXContent() {
                @Override
                public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/cors/DefaultCorsHandler.java

     * This handler automatically registers itself for origins configured in the system
     * and applies standard CORS headers based on the application configuration.
     */
    public class DefaultCorsHandler extends CorsHandler {
    
        /**
         * Creates a new instance of DefaultCorsHandler.
         * This constructor initializes the default CORS handler for applying
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 3K bytes
    - Click Count (0)
  4. src/main/webapp/js/suggestor.js

          }
        });
    
        // Keyup event handler
        $(this).on("keyup", function (e) {
          if (isInputKey(e.keyCode)) {
            started = true;
            isFocusList = false;
          }
        });
    
        // Blur event handler
        $(this).on("blur", function () {
          if (!isMouseHover) {
            suggestor.fixList();
          }
        });
    
        // Input event handler with debouncing
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 11:04:08 GMT 2025
    - 13.3K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.di.core.SingletonLaContainer;
    import org.opensearch.index.query.QueryBuilders;
    
    /**
     * Implementation of IndexUpdateCallback that handles file list index updates with concurrent processing.
     * This callback processes file events (create, modify, delete) and manages document indexing and deletion
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 29.7K bytes
    - Click Count (3)
  6. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

         */
        public CrawlingInfoService() {
        }
    
        /**
         * Behavior handler for CrawlingInfoParam entities.
         * Used to perform database operations on crawling session parameters.
         */
        @Resource
        protected CrawlingInfoParamBhv crawlingInfoParamBhv;
    
        /**
         * Behavior handler for CrawlingInfo entities.
         * Used to perform database operations on crawling session information.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 19.9K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

        }
    
        /**
         * Sets the uncaught exception handler for this IndexUpdater thread.
         *
         * @param eh the uncaught exception handler to set
         */
        @Override
        public void setUncaughtExceptionHandler(final UncaughtExceptionHandler eh) {
            super.setUncaughtExceptionHandler(eh);
        }
    
        /**
         * Sets the default uncaught exception handler for all threads.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 32.9K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/CreateForm.java

        /** Optional description of this data configuration */
        @Size(max = 1000)
        public String description;
    
        /** Handler class name for processing this data source */
        @Required
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerName;
    
        /** Parameters passed to the data handler */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerParameter;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 3.5K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticatorTest.java

            assertEquals("Copied list should have 2 elements", 2, copiedGroups.size());
        }
    
        /**
         * Test that processParentGroup handles null user gracefully when depth limit is reached.
         */
        @Test
        public void test_processParentGroup_nullUser_depthExceeded() {
            EntraIdAuthenticator authenticator = new EntraIdAuthenticator();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 19.3K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

            // Test edge cases
            generator.setCommandTimeout(0L);
            generator.setCommandTimeout(-1L);
            generator.setCommandTimeout(Long.MAX_VALUE);
    
            assertTrue("Timeout edge cases should be handled", true);
        }
    
        // Test ProcessDestroyer inner class
        @Test
        public void test_processDestroyer_creation() throws Exception {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 27.8K bytes
    - Click Count (0)
Back to Top