Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setIncludeSpecs (0.26 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()));
            }
            if (getRequiredAttributes() != null) {
    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. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptor.java

            this.excludedConfigurations = excludedConfigurations;
        }
    
        @Nullable
        Set<ContentSpec> getIncludeSpecs() {
            return includeSpecs;
        }
    
        void setIncludeSpecs(@Nullable Set<ContentSpec> includeSpecs) {
            this.includeSpecs = includeSpecs;
        }
    
        @Nullable
        Set<ContentSpec> getExcludeSpecs() {
            return excludeSpecs;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top