- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for getAllRecordCountRelation (0.22 sec)
-
src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
assertEquals(documentList, result.getDocumentList()); assertEquals(allRecordCount, result.getAllRecordCount()); assertEquals(allRecordCountRelation, result.getAllRecordCountRelation()); assertEquals(queryTime, result.getQueryTime()); assertEquals(partialResults, result.isPartialResults()); assertEquals(facetResponse, result.getFacetResponse()); }
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/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
assertNull(searchRenderData.getAllRecordCountRelation()); // Test with empty string searchRenderData.setAllRecordCountRelation(""); assertEquals("", searchRenderData.getAllRecordCountRelation()); // Test with relation types searchRenderData.setAllRecordCountRelation("eq"); assertEquals("eq", searchRenderData.getAllRecordCountRelation());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
if (Relation.EQUAL_TO.toString().equals(searchResult.getAllRecordCountRelation())) { allRecordCount += offset; } return createResponseList(searchResult.getDocumentList(), allRecordCount, searchResult.getAllRecordCountRelation(), searchResult.getQueryTime(), searchResult.isPartialResults(), searchResult.getFacetResponse(),
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/test/java/org/codelibs/fess/util/QueryResponseListTest.java
assertEquals(documentList, qrList.parent); assertEquals(100L, qrList.getAllRecordCount()); assertEquals("gte", qrList.getAllRecordCountRelation()); assertEquals(500L, qrList.getQueryTime()); assertTrue(qrList.isPartialResults()); assertEquals(facetResponse, qrList.getFacetResponse()); assertEquals(0, qrList.getStart());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 39.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
* 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) */ public String getAllRecordCountRelation() { return allRecordCountRelation; } /** * Gets the time taken to execute the search query. * * @return The query execution time in milliseconds */
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/main/java/org/codelibs/fess/entity/SearchRenderData.java
return allRecordCount; } /** * Gets the relation type for the record count (e.g., "eq", "gte"). * * @return The record count relation */ public String getAllRecordCountRelation() { return allRecordCountRelation; } /** * Gets the total number of pages based on record count and page size. * * @return The total page count */
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/util/QueryResponseList.java
} /** * Gets the relation type for the total record count. * * @return the relation type (e.g., "eq" for exact count, "gte" for greater than or equal) */ public String getAllRecordCountRelation() { return allRecordCountRelation; } /** * Gets the total number of pages based on the page size and total record count. * * @return the total page count */
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/helper/SearchLogHelper.java
searchLog.setQueryId(queryId); searchLog.setHitCount(queryResponseList.getAllRecordCount()); searchLog.setHitCountRelation(queryResponseList.getAllRecordCountRelation()); searchLog.setResponseTime(queryResponseList.getExecTime()); searchLog.setQueryTime(queryResponseList.getQueryTime()); searchLog.setSearchWord(StringUtils.abbreviate(query, 1000));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
pageSize = data.getPageSize(); pageNumber = data.getCurrentPageNumber(); recordCount = data.getAllRecordCount(); recordCountRelation = data.getAllRecordCountRelation(); pageCount = data.getAllPageCount(); nextPage = data.isExistNextPage(); prevPage = data.isExistPrevPage(); startRecordNumber = data.getCurrentStartRecordNumber();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
final String allRecordCount = Long.toString(data.getAllRecordCount()); final String allRecordCountRelation = data.getAllRecordCountRelation(); final String allPageCount = Integer.toString(data.getAllPageCount()); final List<Map<String, Object>> documentItems = data.getDocumentItems();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (1)