Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

        /**
         * Returns values added by {@link #onlyForConfigurations}.
         */
        @Nullable
        Set<String> getIncludedConfigurations();
    
        /**
         * Returns values added by {@link #notForConfigurations}
         */
        @Nullable
        Set<String> getExcludedConfigurations();
    
        /**
         * Returns value added by {@link #onlyForAttribute}
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/RepositoryContentDescriptor.java

         * set of configurations. Defaults to any configuration
         *
         * @param configurationNames the names of the configurations the repository will not be used for
         */
        void notForConfigurations(String... configurationNames);
    
        /**
         * Declares that this repository will only be searched if the consumer requires a
         * specific attribute.
         * @param attribute the attribute
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 23:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryContentFilteringIntegrationTest.groovy

                    module('org:foo:1.0')
                }
            }
    
            where:
            notation << [
                    'onlyForConfigurations("other")',
                    'notForConfigurations("conf")'
            ]
        }
    
        @ToBeFixedForConfigurationCache(because = "task uses Configuration API")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptor.java

                includedConfigurations = new HashSet<>();
            }
            Collections.addAll(includedConfigurations, configurationNames);
        }
    
        @Override
        public void notForConfigurations(String... configurationNames) {
            if (excludedConfigurations == null) {
                excludedConfigurations = new HashSet<>();
            }
            Collections.addAll(excludedConfigurations, configurationNames);
    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