Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 59 for aggregations (0.6 seconds)

  1. src/main/java/org/codelibs/fess/util/FacetResponse.java

        /**
         * Constructs a FacetResponse from OpenSearch aggregations.
         * Processes both field facets and query facets from the aggregation results.
         *
         * @param aggregations the OpenSearch aggregations containing facet data, may be null
         */
        public FacetResponse(final Aggregations aggregations) {
            if (aggregations != null) {
                aggregations.forEach(aggregation -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Nov 23 11:39:05 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsPagingResultBean.java

        }
    
        public void setFailedShards(int failedShards) {
            this.failedShards = failedShards;
        }
    
        public Aggregations getAggregations() {
            return aggregations;
        }
    
        public void setAggregation(Aggregations aggregations) {
            this.aggregations = aggregations;
        }
    
        public TotalHits getTotalHits() {
            return totalHits;
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 2.5K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsPagingResultBean.java

        }
    
        public void setFailedShards(int failedShards) {
            this.failedShards = failedShards;
        }
    
        public Aggregations getAggregations() {
            return aggregations;
        }
    
        public void setAggregation(Aggregations aggregations) {
            this.aggregations = aggregations;
        }
    
        public TotalHits getTotalHits() {
            return totalHits;
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 2.5K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsPagingResultBean.java

        }
    
        public void setFailedShards(int failedShards) {
            this.failedShards = failedShards;
        }
    
        public Aggregations getAggregations() {
            return aggregations;
        }
    
        public void setAggregation(Aggregations aggregations) {
            this.aggregations = aggregations;
        }
    
        public TotalHits getTotalHits() {
            return totalHits;
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 2.5K bytes
    - Click Count (0)
  5. .git-blame-ignore-revs

    
    # Format snapshot / restore directories in server
    1afe4b914301a23fa37c41c78185b7575a431cc4
    
    # Format more snapshot / restore relate projects
    559c4e6ef4f9173bbb59043bacd0ac36c7281040
    
    # Format aggregations and related code (server and x-pack)
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 31 14:55:52 GMT 2021
    - 631 bytes
    - Click Count (0)
  6. build-tools-internal/src/main/resources/changelog-schema.json

            "issues": {
              "type": "array",
              "items": {
                "type": "integer"
              }
            },
            "area": {
              "type": "string",
              "enum": [
                "Aggregations",
                "Allocation",
                "Analysis",
                "Audit",
                "Authentication",
                "Authorization",
                "Autoscaling",
                "CCR",
                "CRUD",
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 5K bytes
    - Click Count (0)
  7. benchmarks/src/main/java/org/elasticsearch/benchmark/search/aggregations/bucket/terms/LongKeyedBucketOrdsBenchmark.java

     * Side Public License, v 1.
     */
    
    package org.elasticsearch.benchmark.search.aggregations.bucket.terms;
    
    import org.elasticsearch.common.settings.Settings;
    import org.elasticsearch.common.util.BigArrays;
    import org.elasticsearch.common.util.PageCacheRecycler;
    import org.elasticsearch.search.aggregations.CardinalityUpperBound;
    import org.elasticsearch.search.aggregations.bucket.histogram.AutoDateHistogramAggregationBuilder;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Feb 19 20:59:23 GMT 2021
    - 8.4K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/entity/FacetInfo.java

    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.stream.StreamUtil;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.opensearch.search.aggregations.BucketOrder;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * Entity class representing facet configuration information for search results.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  9. build-tools-internal/src/main/groovy/elasticsearch.formatting.gradle

                       'src/*/java/org/elasticsearch/index/snapshots/**/*.java',
                       'src/*/java/org/elasticsearch/repositories/**/*.java',
                       'src/*/java/org/elasticsearch/search/aggregations/**/*.java',
                       'src/*/java/org/elasticsearch/snapshots/**/*.java'
              } else {
                // Normally this isn't necessary, but we have Java sources in
                // non-standard places
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 09 18:53:35 GMT 2021
    - 9.1K bytes
    - Click Count (0)
  10. internal/s3select/sql/analysis.go

    package sql
    
    import (
    	"errors"
    	"fmt"
    	"strings"
    )
    
    // Query analysis - The query is analyzed to determine if it involves
    // aggregation.
    //
    // Aggregation functions - An expression that involves aggregation of
    // rows in some manner. Requires all input rows to be processed,
    // before a result is returned.
    //
    // Row function - An expression that depends on a value in the
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 8.6K bytes
    - Click Count (0)
Back to Top