Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 230 for perc (0.05 sec)

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

        /**
         * Gets the number of records to display per page.
         * If not set or invalid, returns the default page size.
         *
         * @return The page size
         */
        public int getPageSize() {
            if (pageSize <= 0) {
                pageSize = getDefaultPageSize();
            }
            return pageSize;
        }
    
        /**
         * Sets the number of records to display per page.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

        protected String appendHighlightParams;
    
        /** Formatted execution time for the search request. */
        protected String execTime;
    
        /** Number of results per page. */
        protected int pageSize;
    
        /** Current page number being displayed. */
        protected int currentPageNumber;
    
        /** Total number of records matching the search query. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  3. guava-tests/benchmark/com/google/common/primitives/UnsignedLongsBenchmark.java

          tmp += UnsignedLongs.remainder(longs[j], divisors[j]);
        }
        return tmp;
      }
    
      @Benchmark
      long parseUnsignedLong(int reps) {
        long tmp = 0;
        // Given that we make three calls per pass, we scale reps down in order
        // to do a comparable amount of work to other measurements.
        int scaledReps = reps / 3 + 1;
        for (int i = 0; i < scaledReps; i++) {
          int j = i & ARRAY_MASK;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 28 01:26:26 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java

        List<Integer> expected = createOrderedList(size);
        for (Collection<Integer> perm : Collections2.permutations(expected)) {
          for (int i = 0; i < perm.size(); i++) {
            MinMaxPriorityQueue<Integer> q = MinMaxPriorityQueue.create(perm);
            q.removeAt(i);
            assertIntactUsingStartedWith(perm, q);
          }
        }
      }
    
      /** Regression test for bug found. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 36K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java

         * Creates a new instance with default values.
         */
        public FileAuthPager() {
            // Default constructor
        }
    
        /** The default number of records to display per page. */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /** The default current page number (1-based). */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java

        private boolean existNextPage;
    
        /**
         * The list of page numbers to display in the pagination component.
         */
        private List<Integer> pageNumberList;
    
        /**
         * The number of records to display per page.
         */
        private int pageSize;
    
        /**
         * The current page number (1-based) for pagination.
         */
        private int currentPageNumber;
    
        /**
         * Crawling information ID.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * Get the value for the key 'suggest.update.doc.per.request'. <br>
         * The value is, e.g. 2 <br>
         * comment: Number of documents per suggestion update request.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getSuggestUpdateDocPerRequest();
    
        /**
         * Get the value for the key 'suggest.update.doc.per.request' as {@link Integer}. <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  8. src/main/java/org/codelibs/fess/app/pager/GroupPager.java

            this.existNextPage = existNextPage;
        }
    
        /**
         * Gets the number of records to display per page.
         * If the page size is not set or is invalid, returns the default page size.
         *
         * @return the number of records per page
         */
        public int getPageSize() {
            if (pageSize <= 0) {
                pageSize = getDefaultPageSize();
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java

         * Gets the number of records to display per page.
         * If page size is not set or is invalid, returns the default page size.
         *
         * @return page size
         */
        public int getPageSize() {
            if (pageSize <= 0) {
                pageSize = getDefaultPageSize();
            }
            return pageSize;
        }
    
        /**
         * Sets the number of records to display per page.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java

        private boolean existNextPage;
    
        /** List of page numbers for pagination navigation. */
        private List<Integer> pageNumberList;
    
        /** Number of records to display per page. */
        private int pageSize;
    
        /** Current page number being displayed. */
        private int currentPageNumber;
    
        /** Search/filter parameter for duplicate host configuration ID. */
        public String id;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
Back to top