Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Beta (0.16 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ModelSetIntegrationTest.groovy

    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    
    @UnsupportedWithConfigurationCache(because = "software model")
    class ModelSetIntegrationTest extends AbstractIntegrationSpec {
    
        def "provides basic meta-data for set"() {
            when:
            buildScript '''
                @Managed
                interface Person {
                }
    
                class Rules extends RuleSource {
                  @Model
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/AssembleDslDocTask.groovy

    import org.w3c.dom.Element
    /**
     * Generates the docbook source for the DSL reference guide.
     *
     * Uses the following as input:
     * <ul>
     * <li>Meta-data extracted from the source by {@link gradlebuild.docs.dsl.source.ExtractDslMetaDataTask}.</li>
     * <li>Meta-data about the plugins, in the form of an XML file.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelMapIntegrationTest.groovy

    import org.gradle.platform.base.ComponentSpec
    import spock.lang.Issue
    
    @UnsupportedWithConfigurationCache(because = "software model")
    class ModelMapIntegrationTest extends AbstractIntegrationSpec {
        def "provides basic meta-data for map"() {
            when:
            buildScript '''
                @Managed
                interface Thing {
                }
    
                class Rules extends RuleSource {
                  @Model
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            def classFile = file("build/classes/java/main/Thing.class")
            classFile.isFile()
            def jarFile = file("build/libs/somelib.jar")
            new ZipTestFixture(jarFile).hasDescendants("META-INF/MANIFEST.MF", "Thing.class", "answer.txt", "META-INF/some.Service")
    
            when:
            configurationCacheRun "build"
    
            then:
            assertStateLoaded()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top