Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for primary_term (0.1 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/searchlist/EditForm.java

    /**
     * @author shinsuke
     */
    public class EditForm extends CreateForm {
    
        public String id;
    
        @ValidateTypeFailure
        public Long seqNo;
    
        @ValidateTypeFailure
        public Long primaryTerm;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 950 bytes
    - Viewed (0)
  2. internal/s3select/sql/analysis.go

    }
    
    func (e *UnaryTerm) analyze(s *Select) (result qProp) {
    	if e.Negated != nil {
    		result = e.Negated.Term.analyze(s)
    	} else {
    		result = e.Primary.analyze(s)
    	}
    	return
    }
    
    func (e *PrimaryTerm) analyze(s *Select) (result qProp) {
    	switch {
    	case e.Value != nil:
    		result = qProp{}
    
    	case e.JPathExpr != nil:
    		// Check if the path expression is valid
    		if len(e.JPathExpr.PathExpr) > 0 {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. internal/s3select/sql/aggregation.go

    func (e *UnaryTerm) aggregateRow(r Record, tableAlias string) error {
    	if e.Negated != nil {
    		return e.Negated.Term.aggregateRow(r, tableAlias)
    	}
    	return e.Primary.aggregateRow(r, tableAlias)
    }
    
    func (e *PrimaryTerm) aggregateRow(r Record, tableAlias string) error {
    	switch {
    	case e.ListExpr != nil:
    		return e.ListExpr.aggregateRow(r, tableAlias)
    	case e.SubExpression != nil:
    		return e.SubExpression.aggregateRow(r, tableAlias)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top