- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 19 for gte (0.01 sec)
-
clause/expression.go
func (gt Gt) NegationBuild(builder Builder) { Lte(gt).Build(builder) } // Gte greater than or equal to for where type Gte Eq func (gte Gte) Build(builder Builder) { builder.WriteQuoted(gte.Column) builder.WriteString(" >= ") builder.AddVar(builder, gte.Value) } func (gte Gte) NegationBuild(builder Builder) { Lt(gte).Build(builder) } // Lt less than for where type Lt Eq
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Oct 10 06:45:48 UTC 2023 - 8.3K 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/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/suggest/index/SuggestIndexer.java
final long start = System.currentTimeMillis(); final SuggestDeleteResponse deleteResponse = deleteByQuery(QueryBuilders.boolQuery() .must(QueryBuilders.rangeQuery(FieldNames.DOC_FREQ).gte(1)) .mustNot(QueryBuilders.matchPhraseQuery(FieldNames.KINDS, SuggestItem.Kind.QUERY.toString())) .mustNot(QueryBuilders.matchPhraseQuery(FieldNames.KINDS, SuggestItem.Kind.USER.toString())));
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 34.8K 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/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/main/java/org/codelibs/fess/suggest/Suggester.java
return getNum(QueryBuilders.rangeQuery(FieldNames.DOC_FREQ).gte(1)); } /** * Returns the number of query words in the suggestion index. * @return The number of query words. */ public long getQueryWordsNum() { return getNum(QueryBuilders.rangeQuery(FieldNames.QUERY_FREQ).gte(1)); } private long getNum(final QueryBuilder queryBuilder) {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 20.7K bytes - Viewed (1)