Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UnmanagedComponentSpec (0.5 sec)

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

                            assert it.displayName == "UnmanagedComponentSpec 'sampleLib'"
                            assert it.toString() == "UnmanagedComponentSpec 'sampleLib'"
                            unmanagedData = "unmanaged"
                        }
                        sampleLib {
                            assert it instanceof UnmanagedComponentSpec
                            assert it.name == "sampleLib"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

            given:
            buildFile << """
                interface UnmanagedComponentSpec extends ComponentSpec {}
                class DefaultUnmanagedComponentSpec extends BaseComponentSpec implements UnmanagedComponentSpec {}
    
                @Managed
                interface SampleComponentSpec extends UnmanagedComponentSpec {
                    String getPublicData()
                    void setPublicData(String data)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top