Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 144 for Resolvable (0.16 sec)

  1. 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)
  2. platforms/software/publish/src/main/java/org/gradle/api/publish/VariantVersionMappingStrategy.java

         *
         * @param configuration a resolvable configuration where to pick resolved version numbers
         */
        void fromResolutionOf(Configuration configuration);
    
    
        /**
         * Declares that this variant should use versions from the resolution
         * of the configuration provided as an argument.
         *
         * @param configurationName a resolvable configuration name where to pick resolved version numbers
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ResolvableConfigurationsReportTaskIntegrationTest.groovy

                }
            """
    
            when:
            executer.expectDeprecationWarning('(l) Legacy or deprecated configuration. Those are variants created for backwards compatibility which are both resolvable and consumable.')
            run ':resolvableConfigurations', '--all'
    
            then:
            result.groupedOutput.task(":resolvableConfigurations").assertOutputContains("""--------------------------------------------------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/model/ReportConfiguration.java

            return extendedConfigurations;
        }
    
        public boolean isPurelyConsumable() {
            return Type.CONSUMABLE == type;
        }
    
        public boolean isPurelyResolvable() {
            return Type.RESOLVABLE == type;
        }
    
        public boolean isLegacy() {
            return Type.LEGACY == type;
        }
    
        public boolean hasIncubatingAttributes() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 17:16:59 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/SelfResolvingDependency.java

    /**
     * A {@code SelfResolvingDependency} is a {@link Dependency} which is able to resolve itself, independent of a
     * repository.
     *
     * @deprecated Dependencies should not be resolved outside a resolvable configuration. To resolve this dependency,
     * add it to a resolvable configuration and resolve that configuration.
     */
    @Deprecated
    @HasInternalProtocol
    public interface SelfResolvingDependency extends Dependency, Buildable {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

            buildKotlinFile << """
                ${mavenCentralRepository(GradleDsl.KOTLIN)}
    
                configurations {
                    dependencyScope("myLibs")
    
                    resolvable("resolveMe") {
                        extendsFrom(configurations.getByName("myLibs"))
                    }
                }
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

         * {@inheritDoc}
         *
         * @implNote 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.
         */
        @Override
        public boolean contains(File file) {
            warnOnInvalidInternalAPIUsage("contains(File)", ProperMethodUsage.RESOLVABLE);
            return getIntrinsicFiles().contains(file);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainer.java

            }
        }
    
        @Override
        public NamedDomainObjectProvider<ResolvableConfiguration> resolvable(String name) {
            assertMutable("resolvable(String)");
            return registerResolvableConfiguration(name, Actions.doNothing());
        }
    
        @Override
        public NamedDomainObjectProvider<ResolvableConfiguration> resolvable(String name, Action<? super ResolvableConfiguration> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/spec/ResolvableConfigurationsSpec.java

            return getReportedConfigurationDirection() + " " + getReportedTypeAlias();
        }
    
        @Override
        public String getReportedConfigurationDirection() {
            return "resolvable";
        }
    
        @Override
        public boolean isIncludeCapabilities() {
            return false;
        }
    
        @Override
        public boolean isIncludeArtifacts() {
            return false;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 07 20:56:10 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/ResolvableConfigurationsReportTask.java

    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * A task which reports the configurations of a project which can be resolved on the command line.
     *
     * This is useful for determining which attributes are associated with the resolvable
     * configurations being used to resolve a project's dependencies.  The output can help predict which variant of
     * each dependency will be resolved.
     *
     * @since 7.5
     */
    @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 08 12:54:53 UTC 2022
    - 3K bytes
    - Viewed (0)
Back to top