Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for filesMatching (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultCopySpec.java

        }
    
        @Override
        public CopySpec filesMatching(String pattern, Action<? super FileCopyDetails> action) {
            PatternMatcher matcher = PatternMatcherFactory.getPatternMatcher(true, isCaseSensitive(), pattern);
            return eachFile(new MatchingCopyAction(matcher, action));
        }
    
        @Override
        public CopySpec filesMatching(Iterable<String> patterns, Action<? super FileCopyDetails> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarIntegrationTest.groovy

                archiveFileName = 'test.jar'
                destinationDirectory = projectDir
                from 'dir1'
                from 'dir2'
                duplicatesStrategy = 'exclude'
                filesMatching ('META-INF/services/**') {
                    duplicatesStrategy = 'include'
                }
            }
            '''
    
            when:
            run 'jar'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/build.gradle.kts

        implementation(projects.enterpriseOperations)
        implementation(projects.execution)
        implementation(projects.fileCollections)
        implementation(projects.fileWatching)
        implementation(projects.files)
        implementation(projects.flowServices)
        implementation(projects.functional)
        implementation(projects.graphSerialization)
        implementation(projects.guavaSerializationCodecs)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top