Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for Resolvable (0.13 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesLocalComponentIntegrationTest.groovy

                        }
                        attributes.attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.class, "foo"))
                    }
                    dependencyScope("deps")
                    resolvable("res") {
                        extendsFrom(deps)
                        attributes.attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.class, "foo"))
                    }
                }
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 20 03:06:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Contains classes implementing an enhanced dependency resolution API, intended to
     * replace resolvable configurations.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 826 bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoReportAggregationPlugin.java

            jacocoAggregation.setVisible(false);
    
            Configuration codeCoverageResultsConf = configurations.resolvable("aggregateCodeCoverageReportResults").get();
            codeCoverageResultsConf.setDescription("Resolvable configuration used to gather files for the JaCoCo coverage report aggregation via ArtifactViews, not intended to be used directly");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 16:25:42 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. testing/public-api-tests/build.gradle.kts

        id("gradlebuild.internal.java")
    
    //    id("gradlebuild.repositories")
    //    id("gradlebuild.integration-tests")
    }
    
    val testRepo = configurations.dependencyScope("testRepo")
    val resolveTestRepo = configurations.resolvable("resolveTestRepo") {
        attributes {
            attribute(Usage.USAGE_ATTRIBUTE, project.objects.named(Usage.JAVA_RUNTIME))
            attribute(Category.CATEGORY_ATTRIBUTE, project.objects.named(Category.LIBRARY))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. .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)
  9. 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)
  10. 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)
Back to top