Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for OtherThing (0.54 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

                sourceSets.main.java.srcDir("src/common/java")
            """
            file("src/common/java/OtherThing.java") << """
                class OtherThing {
                }
            """
            file("src/main/java/Thing.java") << """
                class Thing extends OtherThing {
                }
            """
    
            when:
            configurationCacheRun "assemble"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

            'SomeEnum'   | 'SomeEnum.free'                | 'SomeEnum.paid'
            'Thing'      | 'objects.named(Thing, "free")' | 'objects.named(Thing, "paid")'
            'OtherThing' | 'new OtherThing(name: "free")' | 'new OtherThing(name: "paid")'
        }
    
        def "compatibility and disambiguation rules can be defined by consuming build"() {
            given:
            createDirs("a", "b", "includedBuild")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            public String doSomething() {
                Number thing = getThing();
                List<String> otherThing = getOtherThing();
                return Joiner.on(" ").join(otherThing) + " " + thing;
            }
        }
    
        public static abstract class AbstractClassWithTypeParamProperty implements InterfacePropertyWithTypeParamBean<Param<String>> {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
Back to top