- Sort Score
- Result 10 results
- Languages All
Results 11 - 17 of 17 for primaryTerm (0.05 sec)
-
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 result } 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 Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
if (seqNo != null) { builder.setIfSeqNo(seqNo.longValue()); } if (primaryTerm != null) { builder.setIfPrimaryTerm(primaryTerm.longValue()); } response = builder.execute().actionGet(fessConfig.getIndexIndexTimeout()); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 122.4K bytes - Viewed (1) -
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 Dec 28 19:28:13 UTC 2025 - Last Modified: Sat Dec 23 07:19:11 UTC 2023 - 7.9K bytes - Viewed (0) -
internal/s3select/sql/evaluate.go
return FromArray(rval), nil case nil: return FromNull(), nil case Missing: return FromMissing(), nil } return nil, fmt.Errorf("Unhandled value type: %T", result) } func (e *PrimaryTerm) evalNode(r Record, tableAlias string) (res *Value, err error) { switch { case e.Value != nil: return e.Value.evalNode(r) case e.JPathExpr != nil: return e.JPathExpr.evalNode(r, tableAlias)
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 12K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 25K bytes - Viewed (0) -
src/main/resources/fess_config.properties
index.field.id=_id # Field name for version in the index. index.field.version=_version # Field name for sequence number in the index. index.field.seq_no=_seq_no # Field name for primary term in the index. index.field.primary_term=_primary_term # Field name for language in the index. index.field.lang=lang # Field name for cache status in the index. index.field.has_cache=has_cache # Field name for last modified date in the index.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. _seq_no */ String INDEX_FIELD_seq_no = "index.field.seq_no"; /** The key of the configuration. e.g. _primary_term */ String INDEX_FIELD_primary_term = "index.field.primary_term"; /** The key of the configuration. e.g. lang */ String INDEX_FIELD_LANG = "index.field.lang"; /** The key of the configuration. e.g. has_cache */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2)