Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for withCustomComponentType (0.3 sec)

  1. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentBinariesIntegrationTest.groovy

    @UnsupportedWithConfigurationCache(because = "software model")
    class ComponentBinariesIntegrationTest extends AbstractComponentModelIntegrationTest {
        def setup() {
            withCustomComponentType()
            withCustomBinaryType()
            withCustomLanguageType()
    
            buildFile << '''
    model {
        components {
            mylib(CustomComponent) {
                binaries {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentSourcesIntegrationTest.groovy

    @UnsupportedWithConfigurationCache(because = "software model")
    class ComponentSourcesIntegrationTest extends AbstractComponentModelIntegrationTest {
    
        def "setup"() {
            withCustomComponentType()
            withCustomLanguageType()
            buildFile << """
                model {
                    components {
                        main(CustomComponent)
                    }
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/AbstractComponentModelIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    abstract class AbstractComponentModelIntegrationTest extends AbstractIntegrationSpec {
        /**
         * Registers CustomComponent type
         */
        void withCustomComponentType() {
            buildFile << """
                @Managed interface CustomComponent extends GeneralComponentSpec {}
    
                class ComponentTypeRules extends RuleSource {
                    @ComponentType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentBinarySourcesIntegrationTest.groovy

    @UnsupportedWithConfigurationCache(because = "software model")
    class ComponentBinarySourcesIntegrationTest extends AbstractComponentModelIntegrationTest {
        def setup() {
            withCustomComponentType()
            withCustomBinaryType()
            withCustomLanguageType()
    
            buildFile << '''
    model {
        components {
            mylib(CustomComponent) {
                binaries {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentModelIntegrationTest.groovy

    @UnsupportedWithConfigurationCache(because = "software model")
    class ComponentModelIntegrationTest extends AbstractComponentModelIntegrationTest {
    
        def "setup"() {
            withCustomComponentType()
            buildFile << """
                model {
                    components {
                        main(CustomComponent)
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 20.4K bytes
    - Viewed (0)
Back to top