Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 403 for countIn (0.07 sec)

  1. guava/src/com/google/common/math/PairedStats.java

       *
       * <ul>
       *   <li>Both {@code xStats} and {@code yStats} must have the same {@code count}.
       *   <li>If that {@code count} is 1, {@code sumOfProductsOfDeltas} must be exactly 0.0.
       *   <li>If that {@code count} is more than 1, {@code sumOfProductsOfDeltas} must be finite.
       * </ul>
       */
      PairedStats(Stats xStats, Stats yStats, double sumOfProductsOfDeltas) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/util/FessCrawlerConfig.java

    /**
     * Fess-specific crawler configuration that extends OpenSearchCrawlerConfig.
     * This class provides configuration settings for the Fess crawler including
     * index names, shard counts, and replica counts for queue, data, and filter indices.
     */
    public class FessCrawlerConfig extends OpenSearchCrawlerConfig {
    
        /**
         * Default constructor.
         */
        public FessCrawlerConfig() {
            super();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

         *
         * @param allRecordCount The total record count
         */
        public void setAllRecordCount(final long allRecordCount) {
            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Sets the relation type for the record count (e.g., "eq", "gte").
         *
         * @param allRecordCountRelation The record count relation
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/it/CrudTestBase.java

            int count = 0;
            List<String> idList = getIdList(searchBody);
            while (idList.size() > 0 && count < NUM) {
                final String id = idList.get(0);
                checkDeleteMethod(getItemEndpointSuffix() + "/" + id.toString());
                refresh();
                idList = getIdList(searchBody);
                count += 1;
            }
        }
    
        @AfterAll
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

         * Gets the total number of records that match the search criteria.
         *
         * @return The total record count
         */
        public long getAllRecordCount() {
            return allRecordCount;
        }
    
        /**
         * Gets the relation type indicating how the record count should be interpreted.
         *
         * @return The record count relation (e.g., "eq" for exact, "gte" for greater than or equal)
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  6. 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)
  7. src/main/resources/fess_label_en.properties

    labels.searchlog_log_type_search_keyword=Keyword Count
    labels.searchlog_log_type_search_zerohit=Zero Hit Count
    labels.searchlog_log_type_search_zeroclick=Zero Click Count
    labels.searchlog_log_type_search_count_hour=Search Count/Hour
    labels.searchlog_log_type_search_count_day=Search Count/Day
    labels.searchlog_log_type_search_user_hour=User Count/Hour
    labels.searchlog_log_type_search_user_day=User Count/Day
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java

        /**
         * Gets the total number of records across all pages.
         *
         * @return the total record count
         */
        public int getAllRecordCount() {
            return allRecordCount;
        }
    
        /**
         * Sets the total number of records across all pages.
         *
         * @param allRecordCount the total record count
         */
        public void setAllRecordCount(final int allRecordCount) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.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) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/RelatedContentHelperTest.java

            assertEquals("term2", result.get(1).getTerm());
        }
    
        public void test_load_emptyList() {
            mockBhv.setTestData(new ArrayList<>());
    
            int count = relatedContentHelper.load();
            assertEquals(0, count);
    
            String[] results = relatedContentHelper.getRelatedContents("anyterm");
            assertEquals(0, results.length);
        }
    
        public void test_load_simpleTerms() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.3K bytes
    - Viewed (0)
Back to top