Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for toContentFilter (1.29 sec)

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

            return repositoryContentDescriptor.asMutableCopy();
        }
    
        @Override
        public Action<? super ArtifactResolutionDetails> getContentFilter() {
            return repositoryContentDescriptor.toContentFilter();
        }
    
        @Override
        public Set<String> getIncludedConfigurations() {
            return repositoryContentDescriptor.getIncludedConfigurations();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptor.java

                    repositoryNameSupplier.get() +
                    "' after repository has been used");
            }
        }
    
        @Override
        public Action<? super ArtifactResolutionDetails> toContentFilter() {
            if (cachedAction != null) {
                return cachedAction;
            }
            locked = true;
            if (includeSpecs == null && excludeSpecs == null) {
                // no filtering in place
    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