Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for partial (0.54 sec)

  1. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

         */
        public long getQueryTime() {
            return queryTime;
        }
    
        /**
         * Checks whether the search results are partial due to timeout or other constraints.
         *
         * @return true if the results are partial, false if complete
         */
        public boolean isPartialResults() {
            return partialResults;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

        public void setPageNumberList(final List<String> pageNumberList) {
            this.pageNumberList = pageNumberList;
        }
    
        /**
         * Sets whether the results are partial due to timeout or other issues.
         *
         * @param partialResults true if results are partial
         */
        public void setPartialResults(final boolean partialResults) {
            this.partialResults = partialResults;
        }
    
        /**
    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. src/main/java/org/codelibs/fess/util/QueryResponseList.java

         */
        public FacetResponse getFacetResponse() {
            return facetResponse;
        }
    
        /**
         * Checks whether the search results are partial (not complete).
         *
         * @return true if the results are partial, false if complete
         */
        public boolean isPartialResults() {
            return partialResults;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            /**
             * The list of page numbers for pagination.
             */
            protected List<String> pageNumbers;
            /**
             * Indicates if the search results are partial.
             */
            protected boolean partial;
            /**
             * The time taken for the search query in milliseconds.
             */
            protected long queryTime;
            /**
             * The search query string.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java

            generator.filePathMap.put("${temp}", "/tmp");
            assertEquals("/tmp", generator.expandPath("${temp}"));
            assertEquals("${temp}/file", generator.expandPath("${temp}/file")); // No partial replacement
        }
    
        public void test_directoryNameLength() {
            // Test directoryNameLength setter
            generator = new TestThumbnailGenerator();
    
            // Default value
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/FessAppService.java

        /**
         * Default constructor.
         */
        public FessAppService() {
            // Default constructor
        }
    
        /**
         * Wraps a query string with wildcard characters to enable partial matching.
         * This method ensures that the query string is surrounded by asterisks (*)
         * to support prefix and suffix matching in search operations.
         *
         * @param query the query string to wrap with wildcards
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                buf.append(escapeJson(endRecordNumber));
                buf.append(",\"page_numbers\":");
                buf.append(escapeJson(pageNumbers));
                buf.append(",\"partial\":");
                buf.append(escapeJson(partial));
                buf.append(",\"search_query\":");
                buf.append(escapeJson(searchQuery));
                buf.append(",\"requested_time\":");
                buf.append(requestedTime);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

                                searchResponse.ifPresent(r -> {
                                    if (r.getTotalShards() != r.getSuccessfulShards() && fessConfig.isQueryTimeoutLogging()) {
                                        // partial results
                                        final StringBuilder buf = new StringBuilder(1000);
                                        buf.append("[SEARCH TIMEOUT] {\"exec_time\":")
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/api/WebApiRequestTest.java

            final String originalPath = "/original/path";
            final String customPath = "/api/v1/search";
            mockRequest.setServletPath(originalPath);
            // Contains partial match but not the exact string "SAStruts.method"
            mockRequest.setQueryString("query=test&SAStruts=value&method=execute");
            webApiRequest = new WebApiRequest(mockRequest, customPath);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/DiscreteDomain.java

     * #minValue} and {@link #maxValue} should also be overridden for bounded types.
     *
     * <p>A discrete domain always represents the <i>entire</i> set of values of its type; it cannot
     * represent partial domains such as "prime integers" or "strings of length 5."
     *
     * <p>See the Guava User Guide section on <a href=
     * "https://github.com/google/guava/wiki/RangesExplained#discrete-domains">{@code
     * DiscreteDomain}</a>.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 10.4K bytes
    - Viewed (0)
Back to top