Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 81 - 90 of 182 for aggregator (0.07 seconds)

  1. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsLabelTypeCB.java

        // ===================================================================================
        //                                                                         Aggregation
        //                                                                         ===========
        public BsLabelTypeCA aggregation() {
            assertAggregationPurpose();
            return doGetConditionAggregation();
        }
    
        protected BsLabelTypeCA doGetConditionAggregation() {
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 7.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsRequestHeaderCB.java

        //                                                                         Aggregation
        //                                                                         ===========
        public BsRequestHeaderCA aggregation() {
            assertAggregationPurpose();
            return doGetConditionAggregation();
        }
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 7K bytes
    - Click Count (0)
  3. compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java

            assertEquals("runtime", md.getDependencyResolutionRequired());
            assertEquals("test", md.getDependencyCollectionRequired());
            assertFalse(md.isAggregator(), "Expected " + md + ".isAggregator() to return false");
            assertFalse(md.isDirectInvocationOnly(), "Expected " + md + ".isDirectInvocationOnly() to return false");
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 6K bytes
    - Click Count (0)
  4. CHANGELOG/CHANGELOG-1.23.md

      - [Changelog since v1.23.10](#changelog-since-v12310)
      - [Important Security Information](#important-security-information-1)
        - [CVE-2022-3172: Aggregated API server can cause clients to be redirected (SSRF)](#cve-2022-3172-aggregated-api-server-can-cause-clients-to-be-redirected-ssrf)
    Created: Fri Dec 26 09:05:12 GMT 2025
    - Last Modified: Tue Feb 28 21:06:52 GMT 2023
    - 424.5K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsScheduledJobCB.java

        //                                                                         Aggregation
        //                                                                         ===========
        public BsScheduledJobCA aggregation() {
            assertAggregationPurpose();
            return doGetConditionAggregation();
        }
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 7.5K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsWebAuthenticationCB.java

        //                                                                         Aggregation
        //                                                                         ===========
        public BsWebAuthenticationCA aggregation() {
            assertAggregationPurpose();
            return doGetConditionAggregation();
        }
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 7.6K bytes
    - Click Count (0)
  7. guava/src/com/google/common/collect/TreeMultiset.java

              + aggregateAboveRange(aggr, node.left);
        }
      }
    
      @Override
      public int size() {
        return Ints.saturatedCast(aggregateForEntries(Aggregate.SIZE));
      }
    
      @Override
      int distinctElements() {
        return Ints.saturatedCast(aggregateForEntries(Aggregate.DISTINCT));
      }
    
      static int distinctElements(@Nullable AvlNode<?> node) {
        return (node == null) ? 0 : node.distinctElements;
      }
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Dec 09 15:58:48 GMT 2025
    - 34.3K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

     */
    public class SearchRenderData {
    
        /** List of search result documents. */
        protected List<Map<String, Object>> documentItems;
    
        /** Facet response containing aggregated search facets. */
        protected FacetResponse facetResponse;
    
        /** Additional highlight parameters to append to URLs. */
        protected String appendHighlightParams;
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 12.5K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/collect/TreeMultiset.java

              + aggregateAboveRange(aggr, node.left);
        }
      }
    
      @Override
      public int size() {
        return Ints.saturatedCast(aggregateForEntries(Aggregate.SIZE));
      }
    
      @Override
      int distinctElements() {
        return Ints.saturatedCast(aggregateForEntries(Aggregate.DISTINCT));
      }
    
      static int distinctElements(@Nullable AvlNode<?> node) {
        return (node == null) ? 0 : node.distinctElements;
      }
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Dec 09 15:58:48 GMT 2025
    - 33.9K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/util/QueryResponseList.java

        protected String searchQuery;
    
        /** The total execution time for the search request in milliseconds. */
        protected long execTime;
    
        /** The facet response containing aggregated search facets and their counts. */
        protected FacetResponse facetResponse;
    
        /** Flag indicating whether the search results are partial (not complete). */
        protected boolean partialResults = false;
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 14.5K bytes
    - Click Count (0)
Back to Top