Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 64 for Resolvable (0.47 sec)

  1. platforms/documentation/docs/src/snippets/java/sourceSets-badConfNames/tests/badConfNames.out

    	Consumable - this configuration can be selected by another project as a dependency
    	Resolvable - this configuration can be resolved by this project to a set of files
    	Declarable - this configuration can have dependencies added to it
    Yet Gradle expected to create it with the usage(s):
    	Resolvable - this configuration can be resolved by this project to a set of files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. 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)
  7. 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)
  8. platforms/documentation/docs/src/snippets/swift/testReport/groovy/build.gradle

    // tag::test-report[]
    // A resolvable configuration to collect test reports data
    plugins {
        id 'reporting-base'
    }
    
    configurations {
        testReportData {
            canBeConsumed = false
            attributes {
                attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.DOCUMENTATION))
                attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named(DocsType, 'test-report-data'))
            }
        }
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 757 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/InvalidConfigurationResolutionIntegrationTest.groovy

            """
    
            when:
            fails 'help'
    
            then:
            failure.hasErrorOutput("Archives can not be added to the `compile` configuration.")
        }
    
        def "fail if a non-resolvable configuration is resolved"() {
            given:
            buildFile << """
                task resolve {
                    dependsOn configurations.compileOnly
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. 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)
Back to top