Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 161 - 170 of 230 for handler2 (0.1 seconds)

  1. src/main/java/org/codelibs/fess/app/service/FileConfigService.java

    /**
     * Service class for managing file configuration operations.
     * This service provides CRUD operations for file crawler configurations,
     * including retrieval, storage, deletion, and search functionality.
     * It handles pagination and integrates with the file authentication system.
     */
    public class FileConfigService extends FessAppService {
    
        /**
         * Default constructor for file configuration service.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 7.4K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java

        @Test
        public void test_mappingUpdater_closeWithError() throws Exception {
            writeTestFile("a,b => c\n");
    
            // This test verifies that close() handles errors gracefully
            CharMappingItem newItem = new CharMappingItem(0, new String[] { "x", "y" }, "z");
    
            // Insert will trigger MappingUpdater which will be closed automatically
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  3. src/main/webapp/css/admin/adminlte.min.css.map

    .bootstrap-switch-handle-on.bootstrap-switch-dark,\n.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-dark {\n  background: #343a40;\n  color: #fff;\n}\n\n.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-lightblue,\n.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-lightblue {\n  background: #3c8dbc;\n  color: #fff;\n}\n\n.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-navy,\n.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-navy...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 3.7M bytes
    - Click Count (3)
  4. src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java

            generator = new TestThumbnailGenerator();
            Map<String, Object> docMap = new HashMap<>();
    
            // Note: isTarget requires FessConfig which needs container
            // We can only verify the method handles missing container gracefully
            try {
                generator.isTarget(docMap);
            } catch (IllegalStateException e) {
                // Expected when container is not initialized
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Feb 04 14:24:39 GMT 2026
    - 17.1K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java

                assertTrue(e.getMessage().contains("TermQuery"));
            }
        }
    
        @Test
        public void test_execute_withNullQuery() {
            // Test that execute handles null query
            QueryContext context = new QueryContext("test", false);
    
            try {
                boostQueryCommand.execute(context, null, 1.0f);
                fail("Should have thrown exception");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

            }
            return super.hookBefore(runtime);
        }
    
        /**
         * Returns the login manager for this action. Search actions do not require
         * a login manager as they handle authentication differently.
         *
         * @return an empty OptionalThing as search actions don't use login managers
         */
        @Override
        protected OptionalThing<LoginManager> myLoginManager() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 18 04:42:56 GMT 2026
    - 14K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/score/ScoreBooster.java

                    .execute()
                    .actionGet(requestTimeout);
            return Arrays.stream(response.getHits().getHits()).map(SearchHit::getId).toArray(n -> new String[n]);
        };
    
        /**
         * A function to handle requests.
         */
        protected Function<Map<String, Object>, Long> requestHandler = params -> {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String[] ids = idFinder.apply(params);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 6.6K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/ldap/LdapManagerTest.java

                    return false;
                }
            });
            LdapManager ldapManager = new LdapManager();
            ldapManager.init();
    
            // Should handle null gracefully (though it may throw NPE in actual implementation)
            // This test documents the expected behavior
            try {
                String result = ldapManager.normalizePermissionName(null);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.9K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java

            pathMapPager.clear();
            return asHtml(path_AdminPathmap_AdminPathmapJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
         * Handles search pagination and data preparation for rendering.
         *
         * @param data the render data to populate with path mapping items
         * @param form the search form containing current search criteria
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 15.4K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/service/CharMappingService.java

    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing character mapping operations.
     * <p>
     * This service handles character mapping management including CRUD operations
     * and list retrieval. Character mappings are used for text normalization
     * and character substitution during document processing and search operations.
     * </p>
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 6.1K bytes
    - Click Count (0)
Back to Top