Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 67 for _count (0.03 seconds)

  1. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                    if (response.getHttpStatusCode() == 200) {
                        final Map<String, Object> contentMap = response.getContent(OpenSearchCurl.jsonParser());
                        final Object count = contentMap.get("count");
                        if (count instanceof Number) {
                            return ((Number) count).longValue();
                        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
  2. 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
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

             * The number of deleted items.
             */
            protected long count = 1;
    
            /**
             * Sets the count of deleted items.
             * @param count The number of deleted items.
             * @return The ApiDeleteResponse instance.
             */
            public ApiDeleteResponse count(final long count) {
                this.count = count;
                return this;
            }
    
            @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  4. src/main/resources/fess_label.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
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/entity/FacetInfoTest.java

        }
    
        // Test getBucketOrder with count.desc
        @Test
        public void test_getBucketOrder_countDesc() {
            facetInfo.sort = "count.desc";
            BucketOrder order = facetInfo.getBucketOrder();
            assertNotNull(order);
            assertEquals(BucketOrder.count(false), order);
        }
    
        // Test getBucketOrder with count.asc
        @Test
        public void test_getBucketOrder_countAsc() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/mylasta/mail/LogNotificationPostcard.java

        }
    
        /**
         * Set the value of count, used in parameter comment. <br>
         * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty.
         * @param count The parameter value of count. (NotNull)
         */
        public void setCount(String count) {
            registerVariable("count", count);
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/llm/LlmChatResponse.java

        }
    
        /**
         * Gets the number of prompt tokens.
         *
         * @return the prompt tokens count
         */
        public Integer getPromptTokens() {
            return promptTokens;
        }
    
        /**
         * Sets the number of prompt tokens.
         *
         * @param promptTokens the prompt tokens count
         */
        public void setPromptTokens(final Integer promptTokens) {
            this.promptTokens = promptTokens;
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 12 10:32:40 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         * Specified failure types will not be logged or counted as errors.
         */
        @Size(max = 1000)
        public String ignoreFailureType;
    
        /**
         * Threshold for failure count before stopping crawling of a URL.
         * Set to -1 to disable the threshold check.
         */
        @Required
        @Min(-1)
        @Max(10000)
        @ValidateTypeFailure
        public Integer failureCountThreshold;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

        protected static void waitJob(final String namePrefix) {
            Boolean isRunning = false;
            int count = 0;
            long sleepTime = 50; // Start with 50ms
    
            // Wait until the crawler starts (with exponential backoff)
            while (count < 1500 && !isRunning) {
                ThreadUtil.sleep(sleepTime);
                count++;
                final Map<String, Object> scheduler = getSchedulerItem(namePrefix);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  10. .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)
Back to Top