Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for LookupContext (0.08 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/builtin/BuiltinShellCommandRegistryFactory.java

        @Override
        public CommandRegistry createShellCommandRegistry(LookupContext context) {
            return new BuiltinShellCommandRegistry(context);
        }
    
        private static class BuiltinShellCommandRegistry extends JlineCommandRegistry implements AutoCloseable {
            private final LookupContext shellContext;
            private final MavenInvoker shellMavenInvoker;
            private final MavenParser mavenParser;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/ShellInvoker.java

     */
    public class ShellInvoker extends LookupInvoker<LookupContext> {
    
        public ShellInvoker(Lookup protoLookup, @Nullable Consumer<LookupContext> contextConsumer) {
            super(protoLookup, contextConsumer);
        }
    
        @Override
        protected LookupContext createContext(InvokerRequest invokerRequest) {
            return new LookupContext(invokerRequest, true, invokerRequest.options().orElse(null));
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

     *
     * @param <C> The context type.
     */
    public abstract class LookupInvoker<C extends LookupContext> implements Invoker {
        protected final Lookup protoLookup;
    
        @Nullable
        protected final Consumer<LookupContext> contextConsumer;
    
        public LookupInvoker(Lookup protoLookup, @Nullable Consumer<LookupContext> contextConsumer) {
            this.protoLookup = requireNonNull(protoLookup);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 28 13:01:07 UTC 2025
    - 43.2K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java

    /**
     * Container capsule backed by Plexus Container.
     *
     * @param <C> The context type.
     */
    public class PlexusContainerCapsuleFactory<C extends LookupContext> implements ContainerCapsuleFactory<C> {
        @Override
        public ContainerCapsule createContainerCapsule(
                LookupInvoker<C> invoker, C context, CoreExtensionSelector<C> coreExtensionSelector) throws Exception {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

    import org.apache.maven.api.toolchain.PersistedToolchains;
    import org.apache.maven.cling.event.ExecutionEventLogger;
    import org.apache.maven.cling.invoker.CliUtils;
    import org.apache.maven.cling.invoker.LookupContext;
    import org.apache.maven.cling.invoker.LookupInvoker;
    import org.apache.maven.cling.transfer.ConsoleMavenTransferListener;
    import org.apache.maven.cling.transfer.QuietMavenTransferListener;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 11 17:20:46 UTC 2025
    - 28.2K bytes
    - Viewed (0)
Back to top