- Sort Score
- Result 10 results
- Languages All
Results 11 - 19 of 19 for lookupMap (0.07 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/ProtoLookup.java
return lookupOptional(type); } @Override public <T> List<T> lookupList(Class<T> type) { return List.of(); } @Override public <T> Map<String, T> lookupMap(Class<T> type) { return Map.of(); } public static Builder builder() { return new Builder(); } public static class Builder {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenSession.java
return container.lookupList(role); } @Deprecated public Map<String, Object> lookupMap(String role) throws ComponentLookupException { return container.lookupMap(role); } public Session getSession() { return session; } public void setSession(Session session) { this.session = session;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 16.7K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/EncryptInvoker.java
} @Override protected void lookup(EncryptContext context) throws Exception { if (context.goals == null) { super.lookup(context); context.goals = context.lookup.lookupMap(Goal.class); } } @Override protected int execute(EncryptContext context) throws Exception { try { context.header = new ArrayList<>();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 4.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/UpgradeInvoker.java
} @Override protected void lookup(UpgradeContext context) throws Exception { if (context.goals == null) { super.lookup(context); context.goals = context.lookup.lookupMap(Goal.class); } } @Override protected int execute(UpgradeContext context) throws Exception { try { context.header = new ArrayList<>();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 4.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/plugin/internal/DefaultPluginManager.java
ClassLoader oldClassLoader = Thread.currentThread().getContextClassLoader(); try { Thread.currentThread().setContextClassLoader(pluginDescriptor.getClassRealm()); return container.lookupMap(role); } finally { Thread.currentThread().setContextClassLoader(oldClassLoader); } } @Override
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 10.1K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 15.9K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/ShellInvoker.java
holder.addCommandRegistry(builtins); // gather commands Map<String, ShellCommandRegistryFactory> factories = context.lookup.lookupMap(ShellCommandRegistryFactory.class); for (Map.Entry<String, ShellCommandRegistryFactory> entry : factories.entrySet()) { holder.addCommandRegistry(entry.getValue().createShellCommandRegistry(context)); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 10.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:45:25 UTC 2025 - 20.1K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
executionRequestPopulator = container.lookup(MavenExecutionRequestPopulator.class); modelProcessor = createModelProcessor(container); configurationProcessors = container.lookupMap(ConfigurationProcessor.class); toolchainsBuilder = container.lookup(ToolchainsBuilder.class); dispatcher = container.lookup(SecDispatcher.class); return container; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 78.1K bytes - Viewed (0)