Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getSourcePaths (0.23 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/RecompilationSpec.java

            sourcePaths.add(sourcePath);
        }
    
        public void addSourcePaths(Set<String> sourcePath) {
            sourcePaths.addAll(sourcePath);
        }
    
        public Collection<String> getSourcePaths() {
            return Collections.unmodifiableCollection(sourcePaths);
        }
    
        public boolean isBuildNeeded() {
            return isFullRebuildNeeded() || !classesToCompile.isEmpty() || !classesToProcess.isEmpty();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

            PatternSet classesToDelete = fileOperations.patternSet();
            PatternSet sourceToCompile = fileOperations.patternSet();
    
            prepareFilePatterns(recompilationSpec.getClassesToCompile(), recompilationSpec.getSourcePaths(), classesToDelete, sourceToCompile);
            spec.setSourceFiles(narrowDownSourcesToCompile(sourceTree, sourceToCompile));
            includePreviousCompilationOutputOnClasspath(spec);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultCopySpec.java

        }
    
        @Override
        public void addChildSpecListener(CopySpecListener copySpecListener) {
            this.listeners.add(copySpecListener);
        }
    
        @VisibleForTesting
        public Set<Object> getSourcePaths() {
            return sourcePaths.getFrom();
        }
    
        @Nullable
        public String getDestPath() {
            return destDir == null ? null : PATH_NOTATION_PARSER.parseNotation(destDir);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 33.6K bytes
    - Viewed (0)
Back to top