- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 15 for classloaders (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
.teamcity/subprojects.json
"path": "platforms/core-runtime/build-state", "unitTests": true, "functionalTests": false, "crossVersionTests": false }, { "name": "classloaders", "path": "platforms/core-runtime/classloaders", "unitTests": false, "functionalTests": false, "crossVersionTests": false }, { "name": "cli", "path": "platforms/core-runtime/cli",
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Dec 18 18:40:11 GMT 2025 - 37.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java
/** * Unit test for {@link FinalizableReferenceQueue}. * * @author Bob Lee */ // - depends on details of GC and classloading // - .class files aren't available // - possibly no real concept of separate ClassLoaders? @AndroidIncompatible @GwtIncompatible @RunWith(JUnit4.class) @NullUnmarked public class FinalizableReferenceQueueTest { private @Nullable FinalizableReferenceQueue frq; @AfterCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 11 20:07:52 GMT 2025 - 8.7K bytes - Click Count (0) -
.idea/gradle.xml
<option value="$PROJECT_DIR$/platforms/core-runtime/build-profile" /> <option value="$PROJECT_DIR$/platforms/core-runtime/build-state" /> <option value="$PROJECT_DIR$/platforms/core-runtime/classloaders" /> <option value="$PROJECT_DIR$/platforms/core-runtime/cli" /> <option value="$PROJECT_DIR$/platforms/core-runtime/client-services" />Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Dec 11 18:02:10 GMT 2025 - 23.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/reflect/ClassPathTest.java
URL url2 = new URL("file:/b"); URLClassLoader classloader = new URLClassLoader(new URL[] {url1, url2}, null); assertThat(ClassPath.getClassPathEntries(classloader)) .containsExactly(new File("/a"), classloader, new File("/b"), classloader); } @AndroidIncompatible // Android forbids null parent ClassLoader public void testClassPathEntries_urlClassLoader_withParent() throws Exception {
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 11 21:00:51 GMT 2025 - 25.7K bytes - Click Count (0) -
guava-tests/test/com/google/common/base/EnumsTest.java
assertFalse(bar.isAnnotationPresent(ExampleAnnotation.class)); } @J2ktIncompatible private URL[] getClassPathUrls() { ClassLoader classLoader = getClass().getClassLoader(); return classLoader instanceof URLClassLoader ? ((URLClassLoader) classLoader).getURLs() : parseJavaClassPath().toArray(new URL[0]); } /**
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 11 20:07:52 GMT 2025 - 8.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java
.toList(); } private Map<String, ClassLoader> calcImports( MavenProject project, ClassLoader parent, List<String> imports, boolean v4api) { Map<String, ClassLoader> foreignImports = new HashMap<>(); ClassLoader projectRealm = project.getClassRealm(); if (projectRealm != null) { foreignImports.put("", projectRealm);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Dec 09 16:35:21 GMT 2025 - 46.4K bytes - Click Count (0) -
guava-tests/test/com/google/common/io/ResourcesTest.java
// Now set the context loader to one that should find the resource. URL baseUrl = tempFile.getParentFile().toURI().toURL(); URLClassLoader loader = new URLClassLoader(new URL[] {baseUrl}); ClassLoader oldContextLoader = Thread.currentThread().getContextClassLoader(); try { Thread.currentThread().setContextClassLoader(loader); URL url = Resources.getResource(tempFile.getName());Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Oct 28 16:03:47 GMT 2025 - 6.9K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTestSupport.java
} } } return logs; } protected ClassWorld createClassWorld() { return new ClassWorld("plexus.core", ClassLoader.getSystemClassLoader()); } protected abstract Invoker createInvoker(ClassWorld classWorld); protected abstract Parser createParser();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Oct 21 12:17:55 GMT 2025 - 6.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedCompositeBeanHelper.java
private static final ConcurrentMap<Class<?>, Map<String, Field>> FIELD_CACHE = new ConcurrentHashMap<>(); private final ConverterLookup lookup; private final ClassLoader loader; private final ExpressionEvaluator evaluator; private final ConfigurationListener listener; /** * Holds information about a method including its parameter type. */
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Nov 12 14:59:46 GMT 2025 - 12.3K bytes - Click Count (0) -
android/guava/src/com/google/common/io/TempFileCreator.java
* if previous calls have initialized the {@code PermissionSupplier} fields. * * <p>This lets us test the effects of different values of the {@code user.name} system property * without needing a separate VM or classloader. */ @IgnoreJRERequirement // used only when Path is available (and only from tests) @VisibleForTesting static void testMakingUserPermissionsFromScratch() throws IOException {Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 29 18:50:14 GMT 2025 - 11.8K bytes - Click Count (0)