Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 176 for resolvable (0.15 sec)

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

            where:
            first             | second
            "consumable"      | "resolvable"
            "consumable"      | "dependencyScope"
            "resolvable"      | "consumable"
            "resolvable"      | "dependencyScope"
            "dependencyScope" | "consumable"
            "dependencyScope" | "resolvable"
        }
    
        def "withType works for factory methods before declaration in Groovy DSL"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 15:38:24 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRoles.java

         */
        public static final ConfigurationRole RESOLVABLE = createNonDeprecatedRole("Resolvable", false, true, false);
    
        /**
         * Meant as a temporary solution for situations where we need to declare dependencies against a resolvable configuration.
         *
         * These situations should be updated to use a separate dependency scope configuration for declaring dependencies and extend it with a separate resolvable configuration.
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:55:27 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/UsageDescriber.java

         *
         * @param isConsumable whether the configuration is consumable
         * @param isResolvable whether the configuration is resolvable
         * @param isDeclarable whether the configuration is declarable
         * @param isConsumptionDeprecated whether the configuration's consumable behavior is deprecated
         * @param isResolutionDeprecated whether the configuration's resolvable behavior is deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 16:04:58 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/InspectsConfigurationReport.groovy

        }
    
        void doesNotHaveLegacyLegend() {
            outputDoesNotContain("(l) Legacy or deprecated configuration. Those are variants created for backwards compatibility which are both resolvable and consumable.")
        }
    
        void hasIncubatingLegend() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerTest.groovy

        }
    
        def "creates resolvable configurations"() {
            expect:
            verifyRole(ConfigurationRoles.RESOLVABLE, "a") {
                resolvable("a")
            }
            verifyRole(ConfigurationRoles.RESOLVABLE, "b") {
                resolvable("b", {})
            }
            verifyUnlocked(ConfigurationRoles.RESOLVABLE, "c") {
                resolvableUnlocked("c")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/dependencies/HtmlDependencyReportTaskIntegrationTest.groovy

            json.project.configurations[0].dependencies[0].children[0].name == "foo:qix:1.0"
            json.project.configurations[0].dependencies[0].children[0].resolvable == 'FAILED'
            json.project.configurations[0].dependencies[1].name == "grr:bzz:1.0"
            json.project.configurations[0].dependencies[1].resolvable == 'FAILED'
        }
    
        def "conflicting dependencies are marked as such"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/DeprecatedConfigurationUsageIntegrationTest.groovy

            'getSyntheticDependencies()'       | 'consumable'      | "getSyntheticDependencies()"            || [ProperMethodUsage.RESOLVABLE]
            'getSyntheticDependencies()'       | 'dependencyScope' | "getSyntheticDependencies()"            || [ProperMethodUsage.RESOLVABLE]
            'callAndResetResolutionState()'    | 'consumable'      | "callAndResetResolutionState { 'foo' }" || [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)
  8. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationRole.java

        private final boolean consumable;
        private final boolean resolvable;
        private final boolean declarable;
        private final boolean consumptionDeprecated;
        private final boolean resolutionDeprecated;
        private final boolean declarationDeprecated;
    
        public DefaultConfigurationRole(
            String name,
            boolean consumable,
            boolean resolvable,
            boolean declarable,
            boolean consumptionDeprecated,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 19 20:29:18 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/nodes/RequestedVersion.java

        private final ComponentIdentifier actual;
        private final boolean resolvable;
        private final Set<RenderableDependency> children = new LinkedHashSet<>();
    
        public RequestedVersion(ComponentSelector requested, ComponentIdentifier actual, boolean resolvable) {
            this.requested = requested;
            this.actual = actual;
            this.resolvable = resolvable;
        }
    
        public void addChild(DependencyEdge child) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 27 14:58:38 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRolesForMigration.java

        /**
         * A resolvable dependency scope that will become a resolvable configuration in the next major version.
         */
        @SuppressWarnings("deprecation")
        public static final ConfigurationRole RESOLVABLE_DEPENDENCY_SCOPE_TO_RESOLVABLE = difference(ConfigurationRoles.RESOLVABLE_DEPENDENCY_SCOPE, ConfigurationRoles.RESOLVABLE);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:55:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top