Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getAsURIs (0.71 sec)

  1. 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)
  2. 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)
Back to top