- Sort Score
- Num 10 results
- Language All
Results 61 - 70 of 90 for aggregators (0.05 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanLogger.java
} writer.accept("\t\t-----------------------------------------------------------------------"); if (mojoExecution.getMojoDescriptor().isAggregator()) { writer.accept("\t\tAggregator goal: " + mojoExecId); } else { writer.accept("\t\tGoal: " + mojoExecId); } if (mojoExecution.getConfiguration() != null) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Mar 30 23:08:36 GMT 2025 - 7.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectSorter.java
return !((version == null || version.isEmpty()) || version.startsWith("[") || version.startsWith("(")); } // TODO !![jc; 28-jul-2005] check this; if we're using '-r' and there are aggregator tasks, this will result in // weirdness. public MavenProject getTopLevelProject() { return sortedProjects.stream() .filter(MavenProject::isExecutionRoot) .findFirst()
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 10.3K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java
} @Test void testInvalidAggregatorPackaging() throws Exception { SimpleProblemCollector result = validate("invalid-aggregator-packaging-pom.xml"); assertViolations(result, 0, 1, 0); assertTrue(result.getErrors().get(0).contains("Aggregator projects require 'pom' as packaging.")); } @Test void testMissingDependencyArtifactId() throws Exception {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 33.9K bytes - Click Count (0) -
internal/s3select/sql/analysis.go
// s.Salary"). Analysis determines if such a scenario exists so an // error can be returned. var ( // Fatal error for query processing. errNestedAggregation = errors.New("Cannot nest aggregations") errFunctionNotImplemented = errors.New("Function is not yet implemented") errUnexpectedInvalidNode = errors.New("Unexpected node value") errInvalidKeypath = errors.New("A provided keypath is invalid") )
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 8.6K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java
/** * Returns the original project being built when the input project is a forked project. * During certain lifecycle phases, particularly for aggregator mojos, Maven may create * a forked project (a copy of the original project) to execute a subset of the lifecycle. * This method allows retrieving the original project that initiated the build. *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Jan 30 23:29:13 GMT 2025 - 12K bytes - Click Count (0) -
internal/s3select/sql/statement.go
return false, err } b, ok := value.ToBool() if !ok { err = fmt.Errorf("WHERE expression did not return bool") return false, err } return b, nil } // AggregateRow - aggregates the input record. Applies only to // aggregation queries. func (e *SelectStatement) AggregateRow(input Record) error { ok, err := e.isPassingWhereClause(input) if err != nil { return err } if !ok {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
import org.opensearch.script.ScriptType; import org.opensearch.search.SearchHit; import org.opensearch.search.SearchHits; import org.opensearch.search.aggregations.AggregationBuilders; import org.opensearch.search.aggregations.bucket.filter.FilterAggregationBuilder; import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder; import org.opensearch.search.collapse.CollapseBuilder;
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 122.4K bytes - Click Count (1) -
api/maven-api-plugin/src/main/mdo/plugin.mdo
<type>boolean</type> <description>Flags this Mojo to require online mode for its operation.</description> <defaultValue>false</defaultValue> </field> <field> <name>aggregator</name> <version>1.0.0+</version> <type>boolean</type> <description> Flags this Mojo to run it in a multi-module way, i.e. aggregate the build with the set of projects
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:28:41 GMT 2025 - 24.8K bytes - Click Count (0) -
docs/smb3-features/03-multi-channel-design.md
## 1. Overview SMB3 Multi-Channel enables the use of multiple network connections between client and server, providing increased throughput, network fault tolerance, and automatic failover capabilities. This feature aggregates bandwidth across multiple NICs and provides seamless failover when network paths fail. ## 2. Protocol Specification Reference - **MS-SMB2 Section 3.2.4.23**: FSCTL_QUERY_NETWORK_INTERFACE_INFO
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 39.6K bytes - Click Count (0) -
guava/src/com/google/common/cache/LocalCache.java
} @Override public CacheStats stats() { SimpleStatsCounter aggregator = new SimpleStatsCounter(); aggregator.incrementBy(localCache.globalStatsCounter); for (Segment<K, V> segment : localCache.segments) { aggregator.incrementBy(segment.statsCounter); } return aggregator.snapshot(); } @Override public void cleanUp() {Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Sep 11 19:35:11 GMT 2025 - 148.9K bytes - Click Count (0)