Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PatternSetAntBuilderDelegate (0.24 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/internal/PatternSetAntBuilderDelegate.java

    import java.util.Set;
    
    /**
     * Externalised from PatternSet to isolate the Groovy usage.
     */
    public class PatternSetAntBuilderDelegate implements AntBuilderAware {
    
        private final Set<String> includes;
        private final Set<String> excludes;
        private final boolean caseSensitive;
    
        public PatternSetAntBuilderDelegate(Set<String> includes, Set<String> excludes, boolean caseSensitive) {
            this.includes = includes;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:48 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/internal/IntersectionPatternSet.java

            return Specs.intersect(super.getAsSpec(), other.getAsSpec());
        }
    
        @Override
        public Object addToAntBuilder(Object node, String childNodeName) {
            return PatternSetAntBuilderDelegate.and(node, new Action<Object>() {
                @Override
                public void execute(Object andNode) {
                    org.gradle.api.tasks.util.internal.IntersectionPatternSet.super.addToAntBuilder(andNode, null);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 04 05:29:32 UTC 2020
    - 2.4K bytes
    - Viewed (0)
Back to top