Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getPatternSet (0.28 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)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

        File testDir = tmpDir.testDirectory
        FileResolver fileResolverStub = resolver(testDir)
        FileCollectionObservationListener listener = Mock()
    
        PatternFilterable getPatternSet() {
            return fileTree
        }
    
        void setup() {
            fileTree = new DefaultConfigurableFileTree(fileResolverStub, listener, TestFiles.patternSetFactory, taskDependencyFactory, directoryFileTreeFactory())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultCopySpec.java

                return RelativePath.parse(false, parentPath, path);
            }
    
            @Override
            public FileTree getSource() {
                return getSourceRootsForThisSpec().getAsFileTree().matching(this.getPatternSet());
            }
    
            @Override
            public FileTree getAllSource() {
                final ImmutableList.Builder<FileTreeInternal> builder = ImmutableList.builder();
    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