Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for myElements (0.25 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

           - Configuration ':myElements' declares attribute 'color' with value 'blue':
               - Incompatible because this component declares attribute 'artifactType' with value 'jar' and the consumer needed attribute 'artifactType' with value 'dll'
           - Configuration ':myElements' variant secondary declares attribute 'color' with value 'blue':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    [listing]
    ----
    > No variants of project : match the consumer attributes:
       - Configuration ':myElements' declares attribute 'color' with value 'blue':
           - Incompatible because this component declares attribute 'artifactType' with value 'jar' and the consumer needed attribute 'artifactType' with value 'dll'
       - Configuration ':myElements' variant secondary declares attribute 'color' with value 'blue':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicatorTest.groovy

            elementName("root:api:myelement") == "api-myelement"
            elementName("root:api:myelement:myelement-foo") == "api-myelement-foo"
            elementName("root:api:myelement:myelement-foo:app") == "api-myelement-foo-app"
    
            elementName("root:impl") == "impl"
            elementName("root:impl:myelement") == "impl-myelement"
            elementName("root:impl:myelement:myelement-foo") == "impl-myelement-foo"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/ivy-publish/customize-identity/groovy/build.gradle

                module = 'project1-sample'
                revision = '1.1'
                descriptor.status = 'milestone'
                descriptor.branch = 'testing'
                descriptor.extraInfo 'http://my.namespace', 'myElement', 'Some value'
    
                from components.java
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 660 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/ivy-publish/customize-identity/kotlin/build.gradle.kts

                module = "project1-sample"
                revision = "1.1"
                descriptor.status = "milestone"
                descriptor.branch = "testing"
                descriptor.extraInfo("http://my.namespace", "myElement", "Some value")
    
                from(components["java"])
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 678 bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

        get() = NamedDomainObjectContainerCreatingDelegateProvider.of(this)
    
    
    /**
     * Provides a property delegate that creates elements of the default collection type with the given [configuration].
     *
     * `val myElement by myContainer.creating { myProperty = 42 }`
     */
    fun <T : Any> NamedDomainObjectContainer<T>.creating(configuration: T.() -> Unit) =
        NamedDomainObjectContainerCreatingDelegateProvider.of(this, configuration)
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top