Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for consumable (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    <2> Assign the <<variant_attributes.adoc#sub:gradle_plugins_default_attributes,Gradle API version attribute>> to all <<declaring_dependencies.adoc#sec:resolvable-consumable-configs,consumable configurations>> of our Gradle7 variant. Gradle uses this information to determine which variant to select during plugin resolution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    // limitations under the License.
    
    [[sec:abm_artifact_transforms]]
    = Transforming dependency artifacts on resolution
    
    As described in <<declaring_dependencies.adoc#sec:resolvable-consumable-configs,different kinds of configurations>>, there may be different variants for the same dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    Verification failures are also useful for tasks that need to report a failure even after producing useful output consumable by other tasks.
    
    ====
    include::sample[dir="snippets/failures/verificationFailure/kotlin",files="build.gradle.kts[tags=verification-failure]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

     *
     * <p>The notation <code>project(':project-a')</code> is similar to the syntax you use
     * when configuring a projectA in a multi-module gradle project.
     *
     * <p>Project dependencies are resolved by treating each consumable configuration in the target
     * project as a variant and performing variant-aware attribute matching against them.
     * However, in order to override this process, an explicit target configuration can be specified:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    In this case, the following deprecation warning is emitted:
    
    ```
    When creating configurations during sourceSet custom setup, Gradle found that configuration customCompileClasspath already exists with permitted usage(s):
    	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
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  9. pkg/kubelet/container/runtime.go

    }
    
    // ContainerID is a type that identifies a container.
    type ContainerID struct {
    	// The type of the container runtime. e.g. 'docker'.
    	Type string
    	// The identification of the container, this is comsumable by
    	// the underlying container runtime. (Note that the container
    	// runtime interface still takes the whole struct as input).
    	ID string
    }
    
    // BuildContainerID returns the ContainerID given type and id.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top