Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getAsURIs (0.09 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/ClassPathToClassLoaderCache.java

                if (cachedClassLoader == null) {
                    if (LOG.isDebugEnabled()) {
                        LOG.debug("Classloader cache miss for classpath : {}. Creating classloader.", libClasspath.getAsURIs());
                    }
                    // Lock is held while creating ClassLoader - nothing else can happen while this is running
                    ClassLoader classLoader = factory.create();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/resources/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest/shared/GroovyClass.groovy

        }
    
        @Override
        public String toString() {
            return files.toString();
        }
    
        public boolean isEmpty() {
            return files.isEmpty();
        }
    
        public Collection<URI> getAsURIs() {
            List<URI> urls = new ArrayList<URI>();
            for (File file : files) {
                urls.add(file.toURI());
            }
            return urls;
        }
    
        public Collection<File> getAsFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/resources/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest/shared/JavaClass.java

        }
    
        @Override
        public String toString() {
            return files.toString();
        }
    
        public boolean isEmpty() {
            return files.isEmpty();
        }
    
        public Collection<URI> getAsURIs() {
            List<URI> urls = new ArrayList<URI>();
            for (File file : files) {
                urls.add(file.toURI());
            }
            return urls;
        }
    
        public Collection<File> getAsFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/FinalizerThread.java

            }
        }
    
        private void removeCacheEntry(ClassPath key, Cleanup entry, Cleanup.Mode mode) {
            if (LOG.isDebugEnabled()) {
                LOG.debug("Removing classloader from cache, classpath = {}", key.getAsURIs());
            }
            lock.lock();
            try {
                cacheEntries.remove(key);
                cleanups.remove(key);
            } finally {
                lock.unlock();
            }
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/ClassPath.java

         *
         * @return the list of URIs of the classpath entries
         */
        List<URI> getAsURIs();
    
        /**
         * Returns the list of the classpath entries (JARs or class directories) that this classpath consists of. The order is the classpath search order.
         *
         * @return the list of the classpath entries
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/TransformedClassPath.java

        }
    
        /**
         * {@inheritDoc}
         * <p>
         * This method returns the list of original JAR/class directory URIs.
         */
        @Override
        public List<URI> getAsURIs() {
            return originalClassPath.getAsURIs();
        }
    
        /**
         * {@inheritDoc}
         * <p>
         * This method returns the list of original JARs/class directories.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:59:11 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/DefaultClassPath.java

        public String toString() {
            return files.toString();
        }
    
        @Override
        public boolean isEmpty() {
            return files.isEmpty();
        }
    
        @Override
        public List<URI> getAsURIs() {
            List<URI> urls = new ArrayList<URI>(files.size());
            for (File file : files) {
                urls.add(file.toURI());
            }
            return urls;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top