- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 95 for classloaders (0.14 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ReactorContext.java
*/ public class ReactorContext { private final MavenExecutionResult result; private final ClassLoader originalContextClassLoader; private final ReactorBuildStatus reactorBuildStatus; public ReactorContext( MavenExecutionResult result, ClassLoader originalContextClassLoader, ReactorBuildStatus reactorBuildStatus) { this.result = result;Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/extension/internal/CoreExports.java
* Maven core itself and loaded Maven core extensions. * * @since 3.3.0 */ public class CoreExports { private final Set<String> artifacts; private final Map<String, ClassLoader> packages; public CoreExports(CoreExtensionEntry entry) { this(entry.getClassRealm(), entry.getExportedArtifacts(), entry.getExportedPackages()); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.4K bytes - Click Count (0) -
src/test/java/org/codelibs/core/lang/ClassLoaderIteratorTest.java
/** * @throws Exception */ @Test public void test() throws Exception { final ClassLoader cl1 = new URLClassLoader(new URL[] { new URL("file:/foo") }, null); final ClassLoader cl2 = new URLClassLoader(new URL[] { new URL("file:/bar") }, cl1); final ClassLoader cl3 = new URLClassLoader(new URL[] { new URL("file:/baz") }, cl2); final ClassLoaderIterator it = new ClassLoaderIterator(cl3);Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 1.7K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsule.java
*/ public class PlexusContainerCapsule implements ContainerCapsule { private final ClassLoader previousClassLoader; private final DefaultPlexusContainer plexusContainer; private final Lookup lookup; public PlexusContainerCapsule( LookupContext context, ClassLoader previousClassLoader, DefaultPlexusContainer plexusContainer) {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Mar 24 14:09:05 GMT 2025 - 2.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java
bind(SisuDiBridgeModule.class).toInstance(this); ClassLoader classLoader = Thread.currentThread().getContextClassLoader(); if (classLoader == null) { classLoader = getClass().getClassLoader(); } if (discover) { injector.discover(classLoader); } } private void bindScope( InjectorImpl injector,
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Sep 17 16:01:38 GMT 2025 - 11.4K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.groovy-dsl-gradle-plugin.gradle.kts
tasks.withType<Test>().configureEach { val testVersionProvider = javaLauncher.map { it.metadata.languageVersion } jvmArgumentProviders.add(CommandLineArgumentProvider { //allow ProjectBuilder to inject legacy types into the system classloader if (testVersionProvider.get().canCompileOrRun(9)) { listOf("--add-opens", "java.base/java.lang=ALL-UNNAMED") } else { emptyList() } })
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 15:37:56 GMT 2026 - 2.3K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/TestingConventionsTasks.java
} } private boolean seemsLikeATest(Class<?> clazz) { try { ClassLoader classLoader = clazz.getClassLoader(); Class<?> junitTest = loadClassWithoutInitializing("org.junit.Assert", classLoader); if (junitTest.isAssignableFrom(clazz)) {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 17.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/BeanConfigurationRequest.java
* * @return The class loader to load referenced types from or {@code null} if unset. */ ClassLoader getClassLoader(); /** * Sets the class loader from which to load any types referenced by the configuration. If unset, the class loader of * the bean class will be used. * * @param classLoader The class loader to load referenced types from, may be {@code null}.Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedComponentConfigurator.java
this.configureComponent(component, configuration, evaluator, (ClassLoader) realm, listener); } finally { ClassRealmConverter.popContextRealm(); } } public void configureComponent( Object component, PlexusConfiguration configuration, ExpressionEvaluator evaluator, ClassLoader loader, ConfigurationListener listener)Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.9K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumenter.java
} private static ClassLoader initializeDocLoader() throws ExpressionDocumentationException { String myResourcePath = ExpressionDocumenter.class.getName().replace('.', '/') + ".class"; URL myResource = ExpressionDocumenter.class.getClassLoader().getResource(myResourcePath); assert myResource != null : "The resource is this class itself loaded by its own classloader and must exist";Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 5.2K bytes - Click Count (0)