Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 272 for trailing (0.47 sec)

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

        @CustomSize(maxKey = "form.admin.max.input.size")
        public String urls;
    
        /**
         * URL patterns to include during crawling.
         */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedUrls;
    
        /**
         * URL patterns to exclude during crawling.
         */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedUrls;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for handling "go" requests that redirect users to specific documents
     * or search results. This form captures the necessary parameters for document
     * access tracking and error page fallback information.
     *
     */
    public class GoForm {
    
        /**
         * Default constructor for GoForm.
         */
        public GoForm() {
            super();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing failure URLs that occur during web crawling.
     * Provides functionality to store, retrieve, and manage failed crawling attempts
     * with their associated error information.
     */
    public class FailureUrlService {
    
        /** Logger instance for this class */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 100 */
        String PAGE_CRAWLING_INFO_PARAM_MAX_FETCH_SIZE = "page.crawling.info.param.max.fetch.size";
    
        /** The key of the configuration. e.g. 1000 */
        String PAGE_CRAWLING_INFO_MAX_FETCH_SIZE = "page.crawling.info.max.fetch.size";
    
        /** The key of the configuration. e.g. 100 */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/job/CrawlJob.java

        /**
         * The namespace identifier for the crawling session.
         * Used to organize and identify crawling activities in the system.
         * Defaults to the system crawling info name.
         */
        protected String namespace = Constants.CRAWLING_INFO_SYSTEM_NAME;
    
        /**
         * Array of web crawling configuration IDs to process.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/SearchForm.java

     */
    package org.codelibs.fess.app.web.admin.crawlinginfo;
    
    /**
     * The search form for Crawling Info.
     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The session ID field for searching crawling information.
         */
        public String sessionId;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 952 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/fileconfig/SearchBody.java

    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    /**
     * Search request body for file crawling configuration administration API.
     */
    public class SearchBody extends BaseSearchBody {
    
        /**
         * Default constructor.
         */
        public SearchBody() {
            super();
        }
    
        /** Name of the file crawling configuration */
        public String name;
    
        /** File paths to crawl */
        public String paths;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

    import jakarta.servlet.http.HttpSession;
    
    /**
     * Helper class for managing user information and session tracking in Fess search system.
     * This class handles user identification through cookies, session management, and query tracking.
     * It provides functionality for generating unique user codes, managing user sessions,
     * and tracking search result document IDs for analytics and personalization.
     *
     */
    public class UserInfoHelper {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  9. docs/security/security_providers.md

    | [GraalVM]        | ✅      |              | [OpenJDK]       | Only actively tested with JDK 11, not with 8 target          |
    | [Bouncy Castle]  | ✅      |              | [Bouncy Castle] | [Tracking bug.][bug5698]                                     |
    | [Conscrypt]      | ✅      | ✅           | [BoringSSL]     | Activated if Conscrypt is first registered provider.         |
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

    /**
     * Parser for Google Search Appliance (GSA) configuration files.
     * This SAX-based parser reads GSA XML configuration files and converts them into
     * Fess configuration objects including web crawling configurations, file crawling
     * configurations, and label types for access control.
     *
     * <p>The parser handles the following GSA configuration elements:
     * <ul>
     * <li>Collections with good/bad URL patterns</li>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
Back to top