Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 98 for maksimum (0.05 sec)

  1. src/main/resources/fess_config.properties

    # Maximum number of user records to fetch per page.
    page.user.max.fetch.size=1000
    # Maximum number of role records to fetch per page.
    page.role.max.fetch.size=1000
    # Maximum number of group records to fetch per page.
    page.group.max.fetch.size=1000
    # Maximum number of crawling info parameters to fetch per page.
    page.crawling.info.param.max.fetch.size=100
    # Maximum number of crawling info records to fetch per page.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/fileauth/CreateForm.java

        /** The username for file authentication (required, maximum 100 characters). */
        @Required
        @Size(max = 100)
        public String username;
    
        /** The password for file authentication (maximum 100 characters). */
        @Size(max = 100)
        public String password;
    
        /** Additional parameters for file authentication (maximum 1000 characters). */
        @Size(max = 1000)
        public String parameters;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java

        @ValidateTypeFailure
        public Integer crudMode;
    
        /** The name of the file configuration (required, maximum 200 characters). */
        @Required
        @Size(max = 200)
        public String name;
    
        /** The description of the file configuration (maximum 1000 characters). */
        @Size(max = 1000)
        public String description;
    
        /** The file paths to crawl (required, must be valid file URIs). */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

        /** The maximum size of the result document IDs cache */
        protected int resultDocIdsCacheSize = 20;
    
        /** The name of the cookie used for user identification */
        protected String cookieName = "fsid";
    
        /** The domain for the user identification cookie */
        protected String cookieDomain;
    
        /** The maximum age of the user identification cookie in seconds (default: 1 month) */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java

        /**
         * The name of the access token.
         * This is a required field with a maximum length of 1000 characters.
         */
        @Required
        @Size(max = 1000)
        public String name;
    
        /**
         * The actual access token string.
         * This is the token value that will be used for authentication.
         * Maximum length is 10000 characters.
         */
        @Size(max = 10000)
        public String token;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/entity/HighlightInfo.java

        }
    
        /**
         * Gets the number of fragments.
         *
         * @return the maximum number of highlighted fragments
         */
        public int getNumOfFragments() {
            return numOfFragments;
        }
    
        /**
         * Sets the number of fragments with fluent interface.
         *
         * @param numOfFragments the maximum number of highlighted fragments
         * @return this HighlightInfo instance for method chaining
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/CacheBuilder.java

        checkState(
            this.maximumSize == UNSET_INT, "maximum size was already set to %s", this.maximumSize);
        checkState(
            this.maximumWeight == UNSET_INT,
            "maximum weight was already set to %s",
            this.maximumWeight);
        checkState(this.weigher == null, "maximum size can not be combined with weigher");
        checkArgument(maximumSize >= 0, "maximum size must not be negative");
        this.maximumSize = maximumSize;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 51.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

            /** Maximum number of lines to buffer. */
            private final int maxLineBuffer;
    
            /**
             * Constructor for InputStreamThread.
             * @param is The input stream to read from.
             * @param charset The character encoding to use.
             * @param maxOutputLineBuffer The maximum number of lines to buffer.
             */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/InputStreamThread.java

        /** Buffered reader for reading from the input stream */
        private final BufferedReader br;
    
        /** Maximum buffer size constant */
        public static final int MAX_BUFFER_SIZE = 1000;
    
        /** List storing recent lines from the input stream */
        private final List<String> list = new LinkedList<>();
    
        /** Maximum number of lines to keep in the buffer */
        private final int bufferSize;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. 0 <br>
         * comment: Maximum number of crawler processes.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getJobMaxCrawlerProcesses();
    
        /**
         * Get the value for the key 'job.max.crawler.processes' as {@link Integer}. <br>
         * The value is, e.g. 0 <br>
         * comment: Maximum number of crawler processes.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top