Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getPatternSet (0.21 sec)

  1. subprojects/core-api/src/testFixtures/groovy/org/gradle/api/tasks/util/AbstractTestForPatternSet.groovy

        static final String TEST_PATTERN_1 = 'pattern1'
        static final String TEST_PATTERN_2 = 'pattern2'
        static final String TEST_PATTERN_3 = 'pattern3'
    
        abstract PatternFilterable getPatternSet()
    
        def testDefaultValues() {
            expect:
            patternSet.includes.empty
            patternSet.excludes.empty
        }
    
        def testInclude() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:53:27 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/tasks/SourceTask.java

        }
    
        @Inject
        protected Factory<PatternSet> getPatternSetFactory() {
            throw new UnsupportedOperationException();
        }
    
        @Internal
        protected PatternFilterable getPatternSet() {
            return patternSet;
        }
    
        /**
         * Returns the source for this task, after the include and exclude patterns have been applied. Ignores source files which do not exist.
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DirectoryFileTree.java

        public DirectoryFileTree postfix() {
            if (postfix) {
                return this;
            }
            return new DirectoryFileTree(dir, patternSet, fileSystem, true);
        }
    
        public PatternSet getPatternSet() {
            return patternSet;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 21:33:45 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDoc.java

         */
        @InputFiles
        @IgnoreEmptyDirectories
        @PathSensitive(PathSensitivity.RELATIVE)
        protected FileTree getFilteredCompilationOutputs() {
            return getCompilationOutputs().getAsFileTree().matching(getPatternSet()).matching(pattern -> pattern.include("**/*.tasty"));
        }
    
        /**
         * Returns the compilation outputs produced by the sources that are generating Scaladoc.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top