Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getSourcePaths (0.14 sec)

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