Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for maybeCreateResolvableDependencyScopeUnlocked (0.48 sec)

  1. testing/architecture-test/src/changes/archunit-store/stored.rules

    dencyScopeUnlocked(String,\ boolean)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.maybeCreateMigratingUnlocked(String,\ ConfigurationRole)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.maybeCreateResolvableDependencyScopeUnlocked(String),\ because\ Resolvable\ +\ dependency\ scope\ configurations\ should\ be\ avoided\ and\ we\ are\ migrating\ away\ from\ maybeCreate\ methods=configuration-factory-methods.txt...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. testing/architecture-test/src/test/java/org/gradle/architecture/test/ConfigurationCreationTest.java

                .orShould().callMethod("org.gradle.api.internal.artifacts.configurations.RoleBasedConfigurationContainerInternal", "maybeCreateResolvableDependencyScopeUnlocked", String.class.getName())
                .because("Resolvable + dependency scope configurations should be avoided and we are migrating away from maybeCreate methods")
        );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

         * have this role into separate resolvable and dependency scope configurations.
         */
        @SuppressWarnings("DeprecatedIsStillUsed")
        @Deprecated
        Configuration maybeCreateResolvableDependencyScopeUnlocked(String name);
    
        /**
         * If a configuration with the given name already exists, verify its usage matches the expected role and return it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainer.java

            } else {
                return migratingUnlocked(request.getConfigurationName(), request.getRole());
            }
        }
    
        @Override
        @Deprecated
        public Configuration maybeCreateResolvableDependencyScopeUnlocked(String name) {
            return maybeCreate(new NoContextRoleBasedConfigurationCreationRequest(name, ConfigurationRoles.RESOLVABLE_DEPENDENCY_SCOPE));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerTest.groovy

                resolvableDependencyScopeUnlocked("b", {})
            }
            verifyUnlocked(ConfigurationRoles.RESOLVABLE_DEPENDENCY_SCOPE, "c") {
                maybeCreateResolvableDependencyScopeUnlocked("c")
            }
        }
    
        def "can create migrating configurations"() {
            expect:
            verifyUnlocked(role, "a") {
                migratingUnlocked("a", role)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top