Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for maybeCreateResolvableUnlocked (0.24 sec)

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

    nternal.resolvableDependencyScopeUnlocked(String)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.resolvableDependencyScopeUnlocked(String,\ Action)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.maybeCreateResolvableUnlocked(String)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.maybeCreateConsumableUnlocked(String)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.maybeCreateDependencyScopeUnlocked(String)\ or\ should\...
    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", "maybeCreateResolvableUnlocked", String.class.getName())
                .orShould().callMethod("org.gradle.api.internal.artifacts.configurations.RoleBasedConfigurationContainerInternal", "maybeCreateConsumableUnlocked", String.class.getName())
    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

         * would be set if the configuration needed to be created; it will emit an additional deprecation warning when doing this.
         */
        Configuration maybeCreateResolvableUnlocked(String name);
    
        /**
         * If a configuration with the given name already exists, return it.
         * Otherwise, creates a new consumable configuration with the given name.
         *
    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 {
                throw new InvalidUserDataException("Unknown migration role: " + role);
            }
        }
    
        @Override
        public Configuration maybeCreateResolvableUnlocked(String name) {
            return doMaybeCreate(new NoContextRoleBasedConfigurationCreationRequest(name, ConfigurationRoles.RESOLVABLE), true);
        }
    
        @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

            }
            verifyUnlocked(ConfigurationRoles.RESOLVABLE, "d") {
                resolvableUnlocked("d", {})
            }
            verifyUnlocked(ConfigurationRoles.RESOLVABLE, "e") {
                maybeCreateResolvableUnlocked("e")
            }
        }
    
        def "creates consumable configurations"() {
            expect:
            verifyRole(ConfigurationRoles.CONSUMABLE, "a") {
                consumable("a")
            }
    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