- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 437 for executioner (0.11 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
compat/maven-model-builder/src/test/resources/poms/validation/duplicate-plugin-execution.xml
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.8K bytes - Click Count (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Execution.java
* under the License. */ package org.apache.maven.plugin.lifecycle; /** * A set of goals to execute. * * @version $Revision$ $Date$ */ @SuppressWarnings("all") public class Execution implements java.io.Serializable { // --------------------------/ // - Class/Member Variables -/ // --------------------------/ /** * Configuration to pass to the goals. */Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java
this.executionId = null; this.configuration = null; } public MojoExecution(MojoDescriptor mojoDescriptor, String executionId, Source source) { this.mojoDescriptor = mojoDescriptor; this.executionId = executionId; this.configuration = null; this.source = source; } public MojoExecution(MojoDescriptor mojoDescriptor, String executionId) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 6.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java
return null; } private PluginExecution findPluginExecution(String executionId, Collection<PluginExecution> executions) { if (executionId != null && !executionId.isEmpty()) { for (PluginExecution execution : executions) { if (executionId.equals(execution.getId())) { return execution; } } } return null; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Mar 25 09:45:07 GMT 2025 - 7.3K bytes - Click Count (0) -
architecture/build-execution-model.md
# Build execution model At the highest level, Gradle's execution model is quite simple: Below is the protocol in some more detail: 1. The client looks for a compatible idle daemon. If there isn't one, it starts a new daemon. 2. The client connects to the idle daemon and sends it a request to do some work. If the daemon is no longer running, the client starts again.
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Jun 12 09:50:57 GMT 2025 - 907 bytes - Click Count (0) -
impl/maven-core/src/site/apt/plugin-execution-isolation.apt
~~ specific language governing permissions and limitations ~~ under the License. ----- Maven plugins ----- The Maven Team ----- Maven plugin execution isolation Maven2 takes advantage of Plexus' ability to execute a component using a ClassWorlds ClassRealm that is populated with the JAR containing the component in question and all of its dependencies. Using ClassWorlds
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java
MojoDescriptor mojoDescriptor = execution.getMojoDescriptor(); if (mojoDescriptor == null) { mojoDescriptor = pluginManager.getMojoDescriptor( execution.getPlugin(), execution.getGoal(), project.getRemotePluginRepositories(), session.getRepositorySession()); execution.setMojoDescriptor(mojoDescriptor); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Mar 25 09:45:07 GMT 2025 - 26.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
import org.apache.maven.api.xml.XmlService; import org.apache.maven.execution.BuildFailure; import org.apache.maven.execution.BuildSuccess; import org.apache.maven.execution.ExecutionEvent; import org.apache.maven.execution.MavenExecutionRequest; import org.apache.maven.execution.MavenSession; import org.apache.maven.execution.ProjectDependencyGraph; import org.apache.maven.execution.ProjectExecutionEvent;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 55.1K bytes - Click Count (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java
} // -- void setConfiguration( Object ) /** * Set the goals to execute within the phase. * * @param executions a executions object. */ public void setExecutions(java.util.List<Execution> executions) { this.executions = executions; } // -- void setExecutions( java.util.List ) /** * Set the ID of this phase, e.g., * <code>generate-sources</code>.
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.4K bytes - Click Count (0) -
futures/failureaccess/pom.xml
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Oct 02 19:27:26 GMT 2025 - 5.4K bytes - Click Count (0)