Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for GeneralComponentSpec (0.18 sec)

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

        def "@ComponentBinaries rule is not applied to component reference field of managed binary"() {
            buildFile << """
                @Managed interface SampleLibrary extends GeneralComponentSpec {}
                @Managed interface SampleBinary extends BinarySpec {
                    SampleLibrary getParent()
                    void setParent(SampleLibrary parent)
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/ApplicationSpec.java

    package org.gradle.platform.base;
    
    import org.gradle.api.Incubating;
    
    /**
     * A specification of a {@link org.gradle.platform.base.Application}.
     */
    @Incubating
    public interface ApplicationSpec extends GeneralComponentSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 843 bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentModelIntegrationTest.groovy

    import org.gradle.platform.base.ApplicationSpec
    import org.gradle.platform.base.BinarySpec
    import org.gradle.platform.base.ComponentSpec
    import org.gradle.platform.base.GeneralComponentSpec
    import org.gradle.platform.base.LibrarySpec
    import spock.lang.Issue
    
    import static org.gradle.util.Matchers.containsText
    
    @UnsupportedWithConfigurationCache(because = "software model")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/AbstractComponentModelIntegrationTest.groovy

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

    @UnsupportedWithConfigurationCache(because = "software model")
    class CustomComponentBinariesIntegrationTest extends AbstractIntegrationSpec {
    
        def "setup"() {
            buildFile << """
        @Managed interface SampleLibrary extends GeneralComponentSpec {}
        @Managed interface SampleBinary extends BinarySpec {}
        @Managed interface OtherSampleBinary extends SampleBinary {}
        @Managed interface LibrarySourceSet extends LanguageSourceSet {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/ComponentModelBasePlugin.java

    import org.gradle.platform.base.BinaryContainer;
    import org.gradle.platform.base.BinarySpec;
    import org.gradle.platform.base.ComponentSpecContainer;
    import org.gradle.platform.base.ComponentType;
    import org.gradle.platform.base.GeneralComponentSpec;
    import org.gradle.platform.base.LibrarySpec;
    import org.gradle.platform.base.PlatformAwareComponentSpec;
    import org.gradle.platform.base.PlatformContainer;
    import org.gradle.platform.base.SourceComponentSpec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentSourceSetIntegrationTest.groovy

    @UnsupportedWithConfigurationCache(because = "software model")
    class CustomComponentSourceSetIntegrationTest extends AbstractIntegrationSpec {
    
        def "setup"() {
            buildFile << """
        @Managed interface SampleLibrary extends GeneralComponentSpec {}
        @Managed interface SampleBinary extends BinarySpec {}
        @Managed interface LibrarySourceSet extends LanguageSourceSet {}
    
        class MyBinaryDeclarationModel implements Plugin<Project> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomBinaryTasksIntegrationTest.groovy

    @UnsupportedWithConfigurationCache(because = "software model")
    class CustomBinaryTasksIntegrationTest extends AbstractIntegrationSpec {
    
        def "setup"() {
            buildFile << """
            @Managed interface SampleLibrary extends GeneralComponentSpec {}
            @Managed interface SampleBinary extends BinarySpec {}
    
            class MyComponentBasePlugin extends RuleSource {
                @ComponentType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/internal/ComponentTypeModelRuleExtractorTest.groovy

        }
    
        static interface SomeComponentSpec extends ComponentSpec {}
    
        static interface SomeGeneralComponentSpec extends GeneralComponentSpec {}
    
        static interface SomeLibrarySpec extends LibrarySpec {}
    
        static interface SomeApplicationSpec extends ApplicationSpec {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top