Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Resolvable (0.16 sec)

  1. 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)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/SelfResolvingDependencyIntegrationTest.groovy

        }
    }
    """
    
            when:
            executer.expectDocumentedDeprecationWarning("Directly resolving a file collection dependency's files has been deprecated. This will fail with an error in Gradle 9.0. Add the dependency to a resolvable configuration and resolve the configuration. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#deprecate_self_resolving_dependency")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

        /**
         * Creates a resolvable + dependency scope configuration which can change roles.
         *
         * @deprecated Whether concept of a resolvable + dependency scope configuration should exist
         * is still under debate. However, in general, we should try to split up configurations which
         * have this role into separate resolvable and dependency scope configurations.
         */
        @Deprecated
    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. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ConfigurationContainer.java

        /**
         * Registers a {@link ResolvableConfiguration} with an immutable role. Resolvable configurations
         * are meant to resolve dependency graphs and their artifacts.
         *
         * @param name The name of the configuration to register.
         *
         * @return A provider which creates a new resolvable configuration.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilderTest.groovy

            componentIdentifierFactory.createComponentIdentifier(_) >> {
                new DefaultModuleComponentIdentifier(mid, '1.0')
            }
            configurationsProvider.findByName('conf') >> resolvable()
            configurationsProvider.findByName('conf-2') >> resolvable()
    
            def root = builder.toRootComponent('conf')
    
            when:
            def sameConf = builder.toRootComponent('conf')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultFileCollectionDependency.java

        }
    
        @Override
        @Deprecated
        public Set<File> resolve() {
            DeprecationLogger.deprecate("Directly resolving a file collection dependency's files")
                .withAdvice("Add the dependency to a resolvable configuration and resolve the configuration.")
                .willBecomeAnErrorInGradle9()
                .withUpgradeGuideSection(8, "deprecate_self_resolving_dependency")
                .nagUser();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ResolveContext.java

         * @implSpec Usage: This method should only be called on resolvable configurations and should throw an exception if
         * called on a configuration that does not permit this usage.
         */
        RootComponentMetadataBuilder.RootComponentState toRootComponent();
    
        AttributeContainerInternal getAttributes();
    
        /**
         * @implSpec Usage: This method should only be called on resolvable configurations and should throw an exception if
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/typeUtils.kt

    /**
     * Returns a [KaClassLikeSymbol] for this [KaType] if the type represents a uniquely resolvable class/object/type alias.
     */
    public val KaType.symbol: KaClassLikeSymbol?
        get() = (this as? KaNonErrorClassType)?.symbol
    
    /**
     * Returns a [KtClassLikeSymbol] for this [KtType] if the type represents a uniquely resolvable class/object/type alias.
     */
    @Deprecated("Use 'symbol' instead.", ReplaceWith("this.symbol"))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationInternal.java

         * superconfigurations.
         */
        Set<ExcludeRule> getAllExcludeRules();
    
        /**
         * @implSpec Usage: This method should only be called on resolvable configurations and should throw an exception if
         * called on a configuration that does not permit this usage.
         */
        @Nullable
        ConfigurationInternal getConsistentResolutionSource();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/cgo_stubs_ppc64x_internal_linking_test.go

    package cgotest
    
    import "testing"
    
    // If gcc is used, and linking internally, __mulsc3 and __muldc3
    // will be linked in from libgcc which make several R_PPC64_TOC16_DS
    // relocations which may not be resolvable with the internal linker.
    func test8694(t *testing.T) { t.Skip("not supported on ppc64/ppc64le with internal linking") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 15:35:35 UTC 2024
    - 631 bytes
    - Viewed (0)
Back to top