Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getConsistentResolutionSource (0.43 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/DeprecatedConfigurationUsageIntegrationTest.groovy

            methodName                         | role              | methodCall                              || allowed
            'getConsistentResolutionSource()'  | 'consumable'      | "getConsistentResolutionSource()"       || [ProperMethodUsage.RESOLVABLE]
            'getConsistentResolutionSource()'  | 'dependencyScope' | "getConsistentResolutionSource()"       || [ProperMethodUsage.RESOLVABLE]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 02:32:37 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationInternal.java

         * called on a configuration that does not permit this usage.
         */
        @Nullable
        ConfigurationInternal getConsistentResolutionSource();
    
        /**
         * Test if this configuration can either be declared against or extends another
         * configuration which can be declared against.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                            resolver.getAllRepositories()
                        ));
                }
            });
        }
    
        @Override
        public ConfigurationInternal getConsistentResolutionSource() {
            warnOnInvalidInternalAPIUsage("getConsistentResolutionSource()", ProperMethodUsage.RESOLVABLE);
            return consistentResolutionSource;
        }
    
        private Stream<DependencyConstraint> getConsistentResolutionConstraints() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
Back to top