Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Gte (0.01 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. clause/expression_test.go

    		},
    		ExpectedVars: []interface{}{100},
    		Result:       "SUM(`id`) = ?",
    	}, {
    		Expressions: []clause.Expression{
    			clause.Gte{Column: clause.Expr{SQL: "SUM(?)", Vars: []interface{}{clause.Column{Table: "users", Name: "id"}}}, Value: 100},
    		},
    		ExpectedVars: []interface{}{100},
    		Result:       "SUM(`users`.`id`) >= ?",
    	}}
    
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Aug 10 05:34:33 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. 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)
Back to top