Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 167 for _count (0.1 seconds)

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

        }
    
        /**
         * Gets the total number of pages calculated from record count and page size.
         *
         * @return total page count
         */
        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         *
         * @param allPageCount total page count
         */
        public void setAllPageCount(final int allPageCount) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.8K bytes
    - Click Count (0)
  2. .github/workflows/cleanup-stale-performance-data.yml

                DELETE FROM testExecution WHERE startTime < NOW() - INTERVAL 365 DAY;
                SELECT "results.testExecution count:" as database_table, COUNT(*) as stale_records FROM testExecution WHERE startTime < NOW() - INTERVAL 365 DAY;
                USE cross_build_results;
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Mar 24 22:05:21 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/RateLimitHelper.java

            }
    
            final long count = counter.incrementAndGet();
    
            if (logger.isDebugEnabled()) {
                logger.debug("Request count: ip={}, count={}, max={}", ip, count, maxRequests);
            }
    
            if (count > maxRequests) {
                blockedIps.put(ip, Boolean.TRUE);
                logger.info("Rate limit exceeded, IP blocked: ip={}, requestCount={}", ip, count);
                return false;
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Dec 24 14:16:27 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/pager/SynonymPager.java

        }
    
        /**
         * Gets the total number of records.
         *
         * @return The total record count.
         */
        public int getAllRecordCount() {
            return allRecordCount;
        }
    
        /**
         * Sets the total number of records.
         *
         * @param allRecordCount The total record count.
         */
        public void setAllRecordCount(final int allRecordCount) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.6K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

            final int count = searchLogHelper.getClickCount(url);
            doc.put(clickCountField, count);
            if (logger.isDebugEnabled()) {
                logger.debug("Updated click count: count={}, url={}", count, url);
            }
        }
    
        /**
         * Adds favorite count information to the document.
         *
         * @param doc the document to update
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java

        }
    
        /**
         * Gets the total number of records.
         *
         * @return The total record count
         */
        public int getAllRecordCount() {
            return allRecordCount;
        }
    
        /**
         * Sets the total number of records.
         *
         * @param allRecordCount The total record count
         */
        public void setAllRecordCount(final int allRecordCount) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 7.1K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java

         * Gets the total number of records in the result set.
         *
         * @return the total record count
         */
        public int getAllRecordCount() {
            return allRecordCount;
        }
    
        /**
         * Sets the total number of records in the result set.
         *
         * @param allRecordCount the total record count to set
         */
        public void setAllRecordCount(final int allRecordCount) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 7.4K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

        }
    
        /**
         * Gets the total number of pages based on record count and page size.
         *
         * @return The total page count
         */
        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         *
         * @param allPageCount The total page count
         */
        public void setAllPageCount(final int allPageCount) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 8.8K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

                    baseDir = tempDir;
                    // Count expired files
                    int count = 0;
                    File[] dirs = baseDir.listFiles();
                    if (dirs != null) {
                        for (File dir : dirs) {
                            if (dir.isDirectory() && dir.getName().startsWith("_")) {
                                count++;
                            }
                        }
                    }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 20.4K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/helper/PopularWordHelperTest.java

            assertTrue(result.contains("role1role2"));
            assertTrue(result.contains("field1field2"));
            assertTrue(result.contains("exclude1exclude2"));
    
            // Count separators
            long separatorCount = result.chars().filter(ch -> ch == '\n').count();
            assertEquals(4, separatorCount);
        }
    
        @Test
        public void test_getCacheKey_nullParameters() {
            String seed = "test_seed";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.3K bytes
    - Click Count (0)
Back to Top