- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for allRecordCountRelation (0.13 sec)
-
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) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0) -
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) -
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) -
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) -
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) -
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) -
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) -
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 (1) -
src/test/java/org/codelibs/fess/util/QueryResponseListTest.java
qrList.allRecordCount = 0; qrList.allRecordCountRelation = null; qrList.queryTime = 0; qrList.partialResults = false; qrList.facetResponse = null; String toStringResult = qrList.toString(); assertTrue(toStringResult.contains("QueryResponseList")); assertTrue(toStringResult.contains("allRecordCountRelation=null"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 39.7K bytes - Viewed (0)