Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for crawlingConfigPath (1.78 sec)

  1. src/main/webapp/WEB-INF/view/admin/wizard/admin_wizard_config.jsp

                                        <label for="crawlingConfigPath" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.wizard_crawling_config_path"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="crawlingConfigPath"/>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 13 05:54:52 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/wizard/CrawlingConfigForm.java

        @Required
        @Size(max = 200)
        public String crawlingConfigName;
    
        /**
         * Path or URL to be crawled by this configuration.
         */
        @Required
        @Size(max = 1000)
        public String crawlingConfigPath;
    
        /**
         * Maximum depth for crawling (how many levels deep to follow links).
         */
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer depth;
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
Back to top