Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getIncludeSpecs (0.44 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultMavenRepositoryContentDescriptor.java

            }
            if (getExcludedConfigurations() != null) {
                copy.setExcludedConfigurations(Sets.newHashSet(getExcludedConfigurations()));
            }
            if (getIncludeSpecs() != null) {
                copy.setIncludeSpecs(Sets.newHashSet(getIncludeSpecs()));
            }
            if (getExcludeSpecs() != null) {
                copy.setExcludeSpecs(Sets.newHashSet(getExcludeSpecs()));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/PatternSet.java

        public Set<String> getIncludes() {
            if (includes == null) {
                includes = new LinkedHashSet<>();
            }
            return includes;
        }
    
        /**
         * Like {@link #getIncludeSpecs()}, but returns a unmodifiable view or empty set.
         *
         * <p>Use this if you are only reading from the set, as it avoids allocating a set if not needed.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 21:33:45 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptor.java

        }
    
        void setExcludedConfigurations(@Nullable Set<String> excludedConfigurations) {
            this.excludedConfigurations = excludedConfigurations;
        }
    
        @Nullable
        Set<ContentSpec> getIncludeSpecs() {
            return includeSpecs;
        }
    
        void setIncludeSpecs(@Nullable Set<ContentSpec> includeSpecs) {
            this.includeSpecs = includeSpecs;
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.util.PatternSet.getExcludesView()> does not have raw return type assignable to org.gradle.api.provider.Provider in (PatternSet.java:0)
    Method <org.gradle.api.tasks.util.PatternSet.getIncludeSpecs()> does not have raw return type assignable to org.gradle.api.provider.Provider in (PatternSet.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top