Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 125 for consumable (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    - `(n)`: A dependency or dependency configuration that <<declaring_dependencies.adoc#sec:resolvable-consumable-configs,cannot be resolved>>.
    
    === Specify a Dependency Configuration
    
    To focus on the information about one dependency configuration, provide the optional parameter `--configuration`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/model/ObjectFactory.java

        /**
         * Creates a {@link SourceDirectorySet}.
         *
         * @param name A short name for the set.
         * @param displayName A human consumable display name for the set.
         * @since 5.0
         */
        SourceDirectorySet sourceDirectorySet(String name, String displayName);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    .{cpp} Application Plugin configurations
    image::cpp-application-configurations.png[]
    
    * The configurations in white are the ones a user should use to declare dependencies
    * The configurations in pink, also known as consumable denoted by \(C), are the ones used when a component runs against the library
    * The configurations in blue, also known as resolvable denoted by \(R), are internal to the component, for its own use
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

            then:
            outputContains """
    project :A FAILED
       Failures:
          - Could not resolve project :A.
            Creating consumable variants is explained in more detail at https://docs.gradle.org/${GradleVersion.current().version}/userguide/declaring_dependencies.html#sec:resolvable-consumable-configs.
              - Unable to find a matching variant of project :A:
                  - No variants exist.
    
    project :A FAILED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/feature_variants.adoc

    - the configuration `mongodbSupportCompileOnlyApi`, used to _declare compile-only API dependencies_ for this feature
    
    Furthermore, consumable configurations are created in the same manner as for the main feature:
    
    - the configuration `mongodbSupportApiElements`, used by consumers to fetch the artifacts and API dependencies of this feature
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    .Swift Library Plugin configurations
    image::swift-library-configurations.png[]
    
    * The configurations in white are the ones a user should use to declare dependencies
    * The configurations in pink, also known as consumable denoted by \(C), are the ones used when a component compiles, links, or runs against the library
    * The configurations in blue, also known as resolvable denoted by \(R), are internal to the component, for its own use
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    .{cpp} Library Plugin configurations
    image::cpp-library-configurations.png[]
    
    * The configurations in white are the ones a user should use to declare dependencies
    * The configurations in pink, also known as consumable denoted by \(C), are the ones used when a component compiles, links, or runs against the library
    * The configurations in blue, also known as resolvable denoted by \(R), are internal to the component, for its own use
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    [[deactivate_included_build_substitutions]]
    === Deactivate included build substitutions for a configuration
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    - the <<declaring_dependencies.adoc#sec:resolvable-consumable-configs,outgoing configuration>> that is used as a variant source
    - a customization action which allows you to _filter_ which variants are going to be published
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

        def "classifier and extension do not need to match file name"() {
            given:
            buildFile.text = """
                configurations {
                    consumable("con") {
                        outgoing.artifact(file("foo.txt")) {
                            classifier = "HELLO"
                            extension = "123"
                        }
                        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top