Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 615 for numer (0.01 sec)

  1. src/main/java/org/codelibs/fess/app/pager/SynonymPager.java

     */
    public class SynonymPager implements Serializable {
    
        /**
         * Constructs a new pager for synonyms.
         */
        public SynonymPager() {
            // do nothing
        }
    
        private static final long serialVersionUID = 1L;
    
        /** The total number of records. */
        private int allRecordCount;
    
        /** The total number of pages. */
        private int allPageCount;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java

        }
    
        /**
         * Returns the default current page number.
         *
         * @return The default current page number.
         */
        protected int getDefaultCurrentPageNumber() {
            return DEFAULT_CURRENT_PAGE_NUMBER;
        }
    
        /**
         * Returns the total number of records.
         *
         * @return The total number of records.
         */
        public int getAllRecordCount() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java

        private static final long serialVersionUID = 1L;
    
        /**
         * Default number of records to display per page.
         */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /**
         * Default current page number for pagination.
         */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        /**
         * The total number of records in the result set.
         */
        private int allRecordCount;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

        }
    
        /**
         * Gets the starting record number for the current page.
         *
         * @return The starting record number
         */
        public long getCurrentStartRecordNumber() {
            return currentStartRecordNumber;
        }
    
        /**
         * Gets the ending record number for the current page.
         *
         * @return The ending record number
         */
        public long getCurrentEndRecordNumber() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java

         */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /**
         * Default current page number.
         */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        /**
         * Total number of records.
         */
        private int allRecordCount;
    
        /**
         * Total number of pages.
         */
        private int allPageCount;
    
        /**
         * Flag indicating if a previous page exists.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/QueryResponseList.java

        /** The offset value used for pagination calculations. */
        protected final int offset;
    
        /** The number of records per page. */
        protected final int pageSize;
    
        /** The current page number (1-based). */
        protected int currentPageNumber;
    
        /** The total number of records in the search result set. */
        protected long allRecordCount;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/JobLogPager.java

        }
    
        /**
         * Sets the number of items per page.
         *
         * @param pageSize the number of items per page
         */
        public void setPageSize(final int pageSize) {
            this.pageSize = pageSize;
        }
    
        /**
         * Gets the current page number.
         * If the current page number is not set or is zero or negative, returns the default current page number.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_pt_BR.properties

    labels.searchlog_log_type_search_keyword=Número de palavras-chave
    labels.searchlog_log_type_search_zerohit=Número de zero resultados
    labels.searchlog_log_type_search_zeroclick=Número de zero cliques
    labels.searchlog_log_type_search_count_hour=Número de pesquisas/hora
    labels.searchlog_log_type_search_count_day=Número de pesquisas/dia
    labels.searchlog_log_type_search_user_hour=Número de usuários/hora
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.1K bytes
    - Viewed (0)
  9. src/main/resources/fess_message_it.properties

    constraints.Required.message = {item} è richiesto.
    constraints.TypeInteger.message = {item} deve essere un numero.
    constraints.TypeLong.message = {item} deve essere un numero.
    constraints.TypeFloat.message = {item} deve essere un numero.
    constraints.TypeDouble.message = {item} deve essere un numero.
    constraints.TypeAny.message = {item} non può essere convertito in {propertyType}.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/RolePager.java

            versionNo = null;
    
        }
    
        /**
         * Gets the default current page number.
         * @return The default current page number.
         */
        protected int getDefaultCurrentPageNumber() {
            return DEFAULT_CURRENT_PAGE_NUMBER;
        }
    
        /**
         * Gets the total number of records.
         * @return The total number of records.
         */
        public int getAllRecordCount() {
            return allRecordCount;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
Back to top