Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 144 for Resolvable (0.13 sec)

  1. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/script.js

                    classes.push('alreadyRendered');
                }
                if (dependency.hasConflict) {
                    classes.push('hasConflict');
                }
                if (!dependency.resolvable) {
                    classes.push('unresolvable');
                }
                if (classes.length > 0) {
                    node.attr['class'] = classes.join(' ');
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 24 19:38:03 UTC 2020
    - 8.2K bytes
    - Viewed (0)
  2. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/MavenToolchainsInstallationSupplierTest.groovy

            ])
            directories*.source == ["Maven Toolchains", "Maven Toolchains"]
    
            where:
            useProperty << [true, false]
        }
    
        def "supplies multiple paths for multiple toolchains with resolvable environment variable"(boolean useProperty) {
            given:
            def toolchain = '''<toolchains>
                                    <toolchain>
                                    <type>jdk</type>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. build-logic/jvm/src/main/kotlin/gradlebuild.start-scripts.gradle.kts

    import gradlebuild.configureAsRuntimeJarClasspath
    
    plugins {
        java
    }
    
    val agentsClasspath = configurations.dependencyScope("agentsClasspath")
    val resolveAgentsClasspath = configurations.resolvable("resolveAgentsClasspath") {
        extendsFrom(agentsClasspath.get())
        configureAsRuntimeJarClasspath(objects)
    }
    
    val startScripts = tasks.register<GradleStartScriptGenerator>("startScripts") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DetachedConfigurationsIntegrationTest.groovy

                "This will fail with an error in Gradle 9.0. Be sure to mark configurations meant for resolution as canBeConsumed=false or use the 'resolvable(String)' configuration factory method to create them. " +
                "Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#depending_on_root_configuration")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/bug_report.yml

            If you are unable to do so, please ensure you have collected the relevant debugging information manually and attached below;
            issue without enough information will not be resolvable.
      - type: checkboxes
        id: area
        attributes:
          label: Affected product area
          options:
          - label: "Ambient"
          - label: "Docs"
          - label: "Dual Stack"
          - label: "Installation"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 15:17:29 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultProjectDependency.java

        public Set<File> resolve(boolean transitive) {
    
            DeprecationLogger.deprecate("Directly resolving the files of project dependency '" + getIdentityPath() + "'")
                .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: Mon Mar 18 13:59:13 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/main/java/org/gradle/jvm/component/internal/DefaultJvmSoftwareComponent.java

     * corresponding source sets and any domain objects which are created by the {@link BasePlugin} on the source sets' behalf.
     * This includes their resolvable configurations and dependency scopes, as well as any associated tasks.
     *
     * TODO: We should strip almost all logic from this class. It should be a simple container for features and should provide
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:18:02 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/LocalConfigurationMetadataBuilder.java

        /**
         * A cache of the defined dependencies for dependency configurations. This tracks the cached internal
         * dependency representations for these types so when constructing leaf configuration metadata
         * (resolvable and consumable), these conversions do not need to be executed multiple times.
         */
        class DependencyCache {
            private final Map<String, DefaultLocalConfigurationMetadataBuilder.DependencyState> cache = new HashMap<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

        /**
         * Get the resolvable configuration containing the resolved runtime dependencies
         * for this feature. This configuration does not contain the artifacts from the
         * feature's compilation itself.
         *
         * @return The {@code runtimeClasspath} configuration.
         */
        Configuration getRuntimeClasspathConfiguration();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependenciesIntegrationTest.groovy

            given:
            mavenRepo.module("org", "foo").publish()
            buildFile << """
                configurations {
                    dependencyScope("deps")
                    resolvable("res")  {
                        extendsFrom(deps)
                        attributes {
                            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, "foo"))
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:37:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top