- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 357 for invokers (0.04 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/package-info.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 17 09:50:45 UTC 2024 - 1.7K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Invoker.java
* * <p>The Invoker is designed to be flexible, allowing for different implementations * that can handle various types of {@link InvokerRequest InvokerRequests}. It also implements * {@link AutoCloseable} to ensure proper resource management.</p> * * @since 4.0.0 */ @Experimental public interface Invoker extends AutoCloseable { /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 31 20:56:58 UTC 2025 - 2.6K bytes - Viewed (0) -
impl/maven-cli/src/main/resources/META-INF/services/org.apache.maven.cling.invoker.cisupport.CIDetector
org.apache.maven.cling.invoker.cisupport.CircleCIDetector org.apache.maven.cling.invoker.cisupport.GenericCIDetector org.apache.maven.cling.invoker.cisupport.GithubCIDetector org.apache.maven.cling.invoker.cisupport.JenkinsCIDetector org.apache.maven.cling.invoker.cisupport.TeamcityCIDetector
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Apr 13 18:50:07 UTC 2025 - 352 bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/resident/ResidentMavenInvokerTest.java
* under the License. */ package org.apache.maven.cling.invoker.mvn.resident; import java.nio.file.FileSystem; import java.nio.file.Path; import java.util.List; import com.google.common.jimfs.Configuration; import com.google.common.jimfs.Jimfs; import org.apache.maven.api.cli.Invoker; import org.apache.maven.api.cli.Parser; import org.apache.maven.cling.invoker.ProtoLookup;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 10:47:37 UTC 2025 - 2.5K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTestSupport.java
} HashMap<String, String> logs = new HashMap<>(); Parser parser = createParser(); try (ClassWorld classWorld = createClassWorld(); Invoker invoker = createInvoker(classWorld)) { for (String goal : goals) { ByteArrayOutputStream stdout = new ByteArrayOutputStream(); ByteArrayOutputStream stderr = new ByteArrayOutputStream();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Oct 21 12:17:55 UTC 2025 - 6.8K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTest.java
// [main] WARNING org.apache.maven.cling.invoker.PlexusContainerCapsuleFactory - // [main] WARNING org.apache.maven.cling.invoker.PlexusContainerCapsuleFactory - Order of core extensions // precedence is project > user > installation. Selected extensions are: // [main] WARNING org.apache.maven.cling.invoker.PlexusContainerCapsuleFactory - *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Oct 21 12:17:55 UTC 2025 - 9.3K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerException.java
super(message, cause); } /** * Exception for intentional exit: No message or anything will be displayed, just the * carried exit code will be returned from invoker {@link Invoker#invoke(InvokerRequest)} method. */ public static final class ExitException extends InvokerException { private final int exitCode; public ExitException(int exitCode) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 10:47:37 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistant.java
return null; } /** * Assists client invoke names for DBFlute behavior invocation. * * @return array of default client invoke names */ @Override public String[] assistClientInvokeNames() { return DEFAULT_CLIENT_INVOKE_NAMES; } /** * Assists bypass invoke names for DBFlute behavior invocation. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/ClingSupport.java
@Nullable OutputStream stdOut, @Nullable OutputStream stdErr, boolean embedded) throws IOException { try (Invoker invoker = createInvoker()) { return invoker.invoke(createParser() .parseInvocation(createParserRequestBuilder(args) .stdIn(stdIn) .stdOut(stdOut)Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Feb 08 16:25:25 UTC 2025 - 3.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Mojo.java
* <li>{@link ThreadSafe}: Implies that implementations of this interface must * be safe to invoke from multiple threads concurrently.</li> * </ul> * * @since 4.0.0 */ @Experimental @FunctionalInterface @Consumer @ThreadSafe public interface Mojo { /** * Executes the behavior defined by this {@code Mojo}. This method is invoked * during the Maven build lifecycle to perform the Mojo's designated task. *
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jan 29 08:21:00 UTC 2025 - 2.8K bytes - Viewed (0)