Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for collectClasspathOf (0.26 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClasspathUtil.java

        public static ClassPath getClasspath(ClassLoader classLoader) {
            final List<File> implementationClassPath = new ArrayList<File>();
            collectClasspathOf(classLoader, implementationClassPath);
            return DefaultClassPath.of(implementationClassPath);
        }
    
        public static void collectClasspathOf(ClassLoader classLoader, final Collection<File> classpathFiles) {
            new ClassLoaderVisitor() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top