Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 101 for aggregating (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

        //                                                                         Aggregation
        //                                                                         ===========
        public BsFileAuthenticationCA 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)
  2. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsKeyMatchCB.java

        // ===================================================================================
        //                                                                         Aggregation
        //                                                                         ===========
        public BsKeyMatchCA aggregation() {
            assertAggregationPurpose();
            return doGetConditionAggregation();
        }
    
        protected BsKeyMatchCA doGetConditionAggregation() {
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 7.1K bytes
    - Click Count (0)
  3. 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)
  4. 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)
  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. CHANGELOG/CHANGELOG-1.10.md

    * [fluentd-gcp addon] Use the logging agent's node name as the metadata agent URL. ([#63353](https://github.com/kubernetes/kubernetes/pull/63353), [@bmoyles0117](https://github.com/bmoyles0117))
    * Fixes bugs that make apiserver panic when aggregating valid but not well formed OpenAPI spec ([#63627](https://github.com/kubernetes/kubernetes/pull/63627), [@roycaihw](https://github.com/roycaihw))
    Created: Fri Dec 26 09:05:12 GMT 2025
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 341.8K bytes
    - Click Count (0)
  8. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/StrategyOrchestratorTest.java

    import static org.mockito.Mockito.verify;
    import static org.mockito.Mockito.when;
    
    /**
     * Unit tests for the {@link StrategyOrchestrator} class.
     * Tests strategy execution coordination and result aggregation.
     */
    @DisplayName("StrategyOrchestrator")
    class StrategyOrchestratorTest {
    
        private StrategyOrchestrator orchestrator;
        private List<UpgradeStrategy> mockStrategies;
    
        @BeforeEach
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 12.3K bytes
    - Click Count (0)
  9. internal/s3select/sql/evaluate.go

    )
    
    // AST Node Evaluation functions
    //
    // During evaluation, the query is known to be valid, as analysis is
    // complete. The only errors possible are due to value type
    // mismatches, etc.
    //
    // If an aggregation node is present as a descendant (when
    // e.prop.isAggregation is true), we call evalNode on all child nodes,
    // check for errors, but do not perform any combining of the results
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 12K bytes
    - Click Count (0)
  10. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/UpgradeResult.java

            return new UpgradeResult(Collections.emptySet(), Collections.emptySet(), Collections.emptySet());
        }
    
        /**
         * Merges this result with another result, combining the sets of POMs.
         * This allows proper aggregation of results from multiple strategies without double-counting.
         */
        public UpgradeResult merge(UpgradeResult other) {
            Set<Path> mergedProcessed = new HashSet<>(this.processedPoms);
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sat Jun 07 06:22:47 GMT 2025
    - 3.9K bytes
    - Click Count (0)
Back to Top