Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 100 of 296 for crawlen (0.09 seconds)

  1. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index(final SearchForm form) {
            return asListHtml();
        }
    
        /**
         * Displays a paginated list of web crawler configurations.
         *
         * @param pageNumber the page number to display (optional)
         * @param form the search form containing filter criteria
         * @return HTML response with the web config list
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 22.2K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceActionTest.java

            assertTrue(action.isLogFilename("crawler.log"));
            assertTrue(action.isLogFilename("audit.log"));
        }
    
        @Test
        public void test_isLogFilename_logGzExtension() {
            final AdminMaintenanceAction action = new AdminMaintenanceAction();
            assertTrue(action.isLogFilename("fess.log.gz"));
            assertTrue(action.isLogFilename("crawler.log.gz"));
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/opensearch/client/CrawlerEngineClient.java

    import org.codelibs.fess.Constants;
    import org.codelibs.fess.crawler.client.FesenClient;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.opensearch.common.settings.Settings;
    import org.opensearch.common.settings.Settings.Builder;
    import org.opensearch.transport.client.Client;
    
    /**
     * OpenSearch client implementation specifically for crawler operations.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 2.6K bytes
    - Click Count (0)
  4. src/main/resources/crawler/mimetype.xml

    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components namespace="fessCrawler">
    	<include path="crawler/container.xml" />
    
    	<component name="mimeTypeHelper"
    		class="org.codelibs.fess.crawler.helper.FessMimeTypeHelper" instance="singleton">
    	</component>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 24 09:06:33 GMT 2026
    - 369 bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/app/web/admin/log/AdminLogActionTest.java

            assertTrue(AdminLogAction.isLogFilename("crawler.log"));
            assertTrue(AdminLogAction.isLogFilename("audit.log"));
            assertTrue(AdminLogAction.isLogFilename("application-2024-01-01.log"));
        }
    
        @Test
        public void test_isLogFilename_withLogGzExtension() {
            assertTrue(AdminLogAction.isLogFilename("fess.log.gz"));
            assertTrue(AdminLogAction.isLogFilename("crawler.log.gz"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

        }
    
        /**
         * Stores crawling information and parameters for the specified session.
         * Creates a new crawling info record if none exists or if create flag is true.
         * Also stores any accumulated information parameters and clears the info map.
         *
         * @param sessionId the session ID for the crawling information
         * @param create if true, creates a new crawling info regardless of existing records
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 15.2K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/EditForm.java

        /**
         * The unique identifier of the crawling information entry being edited.
         * This is a required field for identifying which crawling info to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The session identifier of the crawling session.
         * This is a required field that identifies the specific crawling session.
         * Maximum length is 20 characters.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.7K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

                    case "crawler.hotthread.interval":
                        return "500ms";
                    case "crawler.hotthread.snapshots":
                        return "10";
                    case "crawler.hotthread.threads":
                        return "3";
                    case "crawler.hotthread.timeout":
                        return "30s";
                    case "crawler.hotthread.type":
                        return "cpu";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 24.6K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java

     * This service provides functionality to create, read, update, and delete
     * duplicate host configurations used by the Fess crawler system.
     *
     * <p>Duplicate host configurations allow administrators to define hostname patterns
     * that should be treated as equivalent during crawling. This helps avoid indexing
     * duplicate content from the same logical site that may be accessible via different
    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)
  10. docs/es/README.md

    * [LastaFlute](https://github.com/lastaflute/lastaflute "LastaFlute"): Framework Web
    * [Lasta Job](https://github.com/lastaflute/lasta-job "Lasta Job"): Programador de Tareas
    * [Fess Crawler](https://github.com/codelibs/fess-crawler "Fess Crawler"): Rastreador Web
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Nov 11 22:42:32 GMT 2025
    - 7.8K bytes
    - Click Count (0)
Back to Top