Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for allRecordCountRelation (0.51 sec)

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

             *
             * @param allRecordCountRelation The record count relation (e.g., "eq", "gte")
             * @return This builder instance for method chaining
             */
            public SearchResultBuilder allRecordCountRelation(final String allRecordCountRelation) {
                this.allRecordCountRelation = allRecordCountRelation;
                return this;
            }
    
            /**
    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/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

            long allRecordCount = 100L;
            String allRecordCountRelation = "eq";
            long queryTime = 50L;
            boolean partialResults = false;
            Aggregations aggregations = InternalAggregations.EMPTY;
            FacetResponse facetResponse = new FacetResponse(aggregations);
    
            SearchResult result =
                    new SearchResult(documentList, allRecordCount, allRecordCountRelation, queryTime, partialResults, facetResponse);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/QueryResponseList.java

                final long queryTime, final boolean partialResults, final FacetResponse facetResponse, final int start, final int pageSize,
                final int offset) {
            this(documentList, start, pageSize, offset);
            this.allRecordCount = allRecordCount;
            this.allRecordCountRelation = allRecordCountRelation;
            this.queryTime = queryTime;
    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/entity/SearchRenderData.java

        }
    
        /**
         * Sets the relation type for the record count (e.g., "eq", "gte").
         *
         * @param allRecordCountRelation The record count relation
         */
        public void setAllRecordCountRelation(final String allRecordCountRelation) {
            this.allRecordCountRelation = allRecordCountRelation;
        }
    
        /**
         * Sets the total number of pages based on record count and page size.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

                RenderDataUtil.register(data, "currentPageNumber", currentPageNumber);
                RenderDataUtil.register(data, "allRecordCount", allRecordCount);
                RenderDataUtil.register(data, "allRecordCountRelation", allRecordCountRelation);
                RenderDataUtil.register(data, "allPageCount", allPageCount);
                RenderDataUtil.register(data, "existNextPage", existNextPage);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.1K bytes
    - Viewed (1)
  6. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp

                                        <div id="subheader" class="row top10">
                                            <div class="col-12">
                                                <c:if test="${allRecordCountRelation=='EQUAL_TO'}">
                                                    <la:message key="labels.search_result_status"
                                                                arg0="${f:h(q)}" arg1="${f:h(allRecordCount)}"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Sep 24 13:09:22 UTC 2020
    - 20K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/searchResults.jsp

    <div id="subheader" class="row">
    	<div class="col">
    		<p>
    			<c:if test="${allRecordCountRelation=='EQUAL_TO'}">
    				<la:message key="labels.search_result_status"
    					arg0="${displayQuery}" arg1="${fe:formatNumber(allRecordCount,'###,###')}"
    					arg2="${f:h(currentStartRecordNumber)}"
    					arg3="${f:h(currentEndRecordNumber)}" />
    			</c:if><c:if test="${allRecordCountRelation!='EQUAL_TO'}">
    				<la:message key="labels.search_result_status_over"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 05:32:37 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

                final String allRecordCountRelation, final long queryTime, final boolean partialResults, final FacetResponse facetResponse,
                final int start, final int pageSize, final int offset) {
            return new QueryResponseList(documentList, allRecordCount, allRecordCountRelation, queryTime, partialResults, facetResponse, start,
                    pageSize, offset);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    <div id="subheader" class="row">
    	<div class="col">
    		<p>
    			<c:if test="${allRecordCountRelation=='EQUAL_TO'}">
    				<la:message key="labels.search_result_status"
    					arg0="${displayQuery}" arg1="${fe:formatNumber(allRecordCount,'###,###')}"
    					arg2="${f:h(currentStartRecordNumber)}"
    					arg3="${f:h(currentEndRecordNumber)}" />
    			</c:if><c:if test="${allRecordCountRelation!='EQUAL_TO'}">
    				<la:message key="labels.search_result_status_over"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 05:32:37 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

                RenderDataUtil.register(data, "currentPageNumber", currentPageNumber);
                RenderDataUtil.register(data, "allRecordCount", allRecordCount);
                RenderDataUtil.register(data, "allRecordCountRelation", allRecordCountRelation);
                RenderDataUtil.register(data, "allPageCount", allPageCount);
                RenderDataUtil.register(data, "existNextPage", existNextPage);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14K bytes
    - Viewed (0)
Back to top