Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 170 for maksimum (0.06 sec)

  1. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

        }
    
        /**
         * Sets the maximum number of session IDs to include in session ID lists.
         * This controls the size limit for aggregation results when retrieving session lists.
         *
         * @param maxSessionIdsInList the maximum number of session IDs to include in lists
         */
        public void setMaxSessionIdsInList(final int maxSessionIdsInList) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

        }
    
        /**
         * Gets the maximum allowed length for site strings from configuration.
         *
         * @return the maximum site length as configured
         */
        default int getMaxSiteLength() {
            return getFessConfig().getCrawlerDocumentMaxSiteLengthAsInteger();
        }
    
        /**
         * Abbreviates a site string to the maximum allowed length if configured.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  3. src/packaging/deb/init.d/fess

    #FESS_DIRECT_SIZE=
    
    # Additional Java OPTS
    #FESS_JAVA_OPTS=
    
    # Maximum number of open files
    MAX_OPEN_FILES=65535
    
    # Maximum amount of locked memory
    #MAX_LOCKED_MEMORY=
    
    # Fess log directory
    LOG_DIR=${packaging.fess.log.dir}
    
    # Fess data directory
    DATA_DIR=${packaging.fess.var.dir}
    
    # Fess configuration directory
    CONF_DIR=${packaging.fess.conf.dir}
    
    # Maximum number of VMA (Virtual Memory Areas) a process can own
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

        }
    
        /**
         * Gets the maximum size for alphanumeric terms from configuration.
         *
         * @return the maximum alphanumeric term size
         */
        protected int getMaxAlphanumTermSize() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            return fessConfig.getCrawlerDocumentMaxAlphanumTermSizeAsInteger();
        }
    
        /**
         * Gets the maximum size for symbol terms from configuration.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/SearchBody.java

        public SearchBody() {
            super();
        }
    
        /** The URL that failed during crawling */
        public String url;
    
        /** Minimum error count filter */
        public Integer errorCountMin;
    
        /** Maximum error count filter */
        public Integer errorCountMax;
    
        /** Name or type of the error */
        public String errorName;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java

         */
        public void setEncryptedCookieValue(final boolean encryptedCookieValue) {
            this.encryptedCookieValue = encryptedCookieValue;
        }
    
        /**
         * Sets the maximum age of the role information in seconds.
         * @param maxAge The maximum age of the role information in seconds.
         */
        public void setMaxAge(final long maxAge) {
            this.maxAge = maxAge;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/storage/TagForm.java

     */
    public class TagForm {
    
        /**
         * The file or directory path associated with this tag.
         */
        @Required
        public String path;
    
        /**
         * The name of the tag with a maximum length of 100 characters.
         */
        @Required
        @Size(max = 100)
        public String name;
    
        /**
         * A map containing additional tag metadata as key-value pairs.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/searchlist/DeleteForm.java

         */
        public DeleteForm() {
            // Default constructor with explicit documentation
        }
    
        /**
         * The search query used to find the document.
         * Optional field with maximum length of 1000 characters.
         */
        @Size(max = 1000)
        public String q;
    
        /**
         * The document ID of the document to delete.
         * Required field for identifying the specific document.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java

        @CustomSize(maxKey = "form.admin.max.input.size")
        public String configParameter;
    
        /**
         * The maximum crawling depth from the starting URLs.
         */
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer depth;
    
        /**
         * The maximum number of URLs to access during crawling.
         */
        @Min(value = 0)
        @Max(value = 9223372036854775807L)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/failureurl/SearchForm.java

         */
        public String url;
    
        /**
         * The minimum error count field for filtering failure URLs.
         */
        public String errorCountMin;
    
        /**
         * The maximum error count field for filtering failure URLs.
         */
        public String errorCountMax;
    
        /**
         * The error name field for searching failure URLs by error type.
         */
        public String errorName;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
Back to top