- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for Gte (0.02 sec)
-
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
/** The total number of records that match the search criteria. */ protected final long allRecordCount; /** The relation type indicating how the record count should be interpreted (e.g., "eq", "gte"). */ protected final String allRecordCountRelation; /** The time taken to execute the search query in milliseconds. */ protected final long queryTime;
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
protected int currentPageNumber; /** Total number of records matching the search query. */ protected long allRecordCount; /** Relation type for the record count (e.g., "eq", "gte"). */ protected String allRecordCountRelation; /** Total number of pages based on record count and page size. */ protected int allPageCount; /** Flag indicating whether a next page exists. */
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/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
SearchResult result = SearchResult.create().allRecordCount(200L).allRecordCountRelation("gte").queryTime(100L).partialResults(true).build(); assertNotNull(result.getDocumentList()); assertTrue(result.getDocumentList().isEmpty()); assertEquals(200L, result.getAllRecordCount()); assertEquals("gte", result.getAllRecordCountRelation()); assertEquals(100L, result.getQueryTime());
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/util/QueryResponseList.java
protected int currentPageNumber; /** The total number of records in the search result set. */ protected long allRecordCount; /** The relation type for the total record count (e.g., "eq", "gte"). */ protected String allRecordCountRelation; /** The total number of pages based on the page size and total record count. */ protected int allPageCount;
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/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
searchRenderData.setAllRecordCountRelation("eq"); assertEquals("eq", searchRenderData.getAllRecordCountRelation()); searchRenderData.setAllRecordCountRelation("gte"); assertEquals("gte", searchRenderData.getAllRecordCountRelation()); } public void test_setAndGetAllPageCount() { // Test with zero searchRenderData.setAllPageCount(0);
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/test/java/org/codelibs/fess/util/QueryResponseListTest.java
FacetResponse facetResponse = null; QueryResponseList qrList = new QueryResponseList(documentList, 100L, "gte", 500L, true, facetResponse, 0, 10, 0); assertEquals(documentList, qrList.parent); assertEquals(100L, qrList.getAllRecordCount()); assertEquals("gte", qrList.getAllRecordCountRelation()); assertEquals(500L, qrList.getQueryTime()); assertTrue(qrList.isPartialResults());
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/query/TermRangeQueryCommand.java
final BytesRef min = termRangeQuery.getLowerTerm(); if (min != null) { if (termRangeQuery.includesLower()) { rangeQuery.gte(min.utf8ToString()); } else { rangeQuery.gt(min.utf8ToString()); } } final BytesRef max = termRangeQuery.getUpperTerm(); if (max != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
// Add boolean query queryContext.addQuery(boolQuery -> { boolQuery.filter(QueryBuilders.termQuery("type", "document")); boolQuery.must(QueryBuilders.rangeQuery("date").gte("2024-01-01")); }); // Add function score queryContext.addFunctionScore(list -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionQuery.java
assertObjectNotNull("ck", ck); if (ck.equals(ConditionKey.CK_GREATER_THAN)) { builder.gt(value); } else if (ck.equals(ConditionKey.CK_GREATER_EQUAL)) { builder.gte(value); } else if (ck.equals(ConditionKey.CK_LESS_THAN)) { builder.lt(value); } else if (ck.equals(ConditionKey.CK_LESS_EQUAL)) { builder.lte(value); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 21.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractConditionQuery.java
assertObjectNotNull("ck", ck); if (ck.equals(ConditionKey.CK_GREATER_THAN)) { builder.gt(value); } else if (ck.equals(ConditionKey.CK_GREATER_EQUAL)) { builder.gte(value); } else if (ck.equals(ConditionKey.CK_LESS_THAN)) { builder.lt(value); } else if (ck.equals(ConditionKey.CK_LESS_EQUAL)) { builder.lte(value); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 21.1K bytes - Viewed (0)