Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 996 for thingo (0.1 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryIntegrationTest.groovy

                thing.extensions.create('thing2', Thing)
                thing.thing.extensions.create('thing2', Thing)
                thing.thing.thing2.extensions.create('thing2', Thing)
                thing.thing2.extensions.create('thing2', Thing)
    
                thing {
                    thing {
                        thing2 {
                            name = 'thing'
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 07 02:25:12 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedByRuleMethodIntegrationTest.groovy

                    abstract void setThing(Thing t)
    
                    @Defaults
                    void defaultB(@Path('thingB') Thing thingB) {
                        assert thing.name == 'thing a from dsl'
                        thingB.name = thing.name
                    }
    
                    @Finalize
                    void defaultC(@Path('thingC') Thing thingC) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            outputContains("processing thing1-1.2.jar using []")
            outputContains("processing thing2-1.2.jar using []")
            outputContains("processing thing3-1.2.jar using [thing1-1.2.jar, thing2-1.2.jar]")
            outputContains("files = [thing3-1.2.jar.green, thing1-1.2.jar.green, thing2-1.2.jar.green]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelRuleBindingFailureIntegrationTest.groovy

                    }
                    foo.bla {
                        println $.unknown.thing
                        println $.unknown.thing2
                    }
                    thing1(Thing) {
                        println $.unknown.thing
                    }
                }
            '''
    
            when:
            fails "tasks"
    
            then:
            // TODO - should report unknown inputs as well
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/adapter/WeakIdentityHashMapTest.groovy

            WeakIdentityHashMap.WeakKey<Thing> weakKey1 = new WeakIdentityHashMap.WeakKey<>(thing1)
            WeakIdentityHashMap.WeakKey<Thing> weakKey2 = new WeakIdentityHashMap.WeakKey<>(thing2)
    
            expect:
            weakKey1 != weakKey2
        }
    
        def "hashCodes of weakKeys for equal objects are different"() {
            Thing thing1 = new Thing("thing")
            Thing thing2 = new Thing("thing")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/ModelDslCreationIntegrationTest.groovy

                        name = $.thing1.name + " bar"
                    }
                    tasks {
                        create("echo") {
                            doLast {
                                println "thing2.name: " + $.thing2.name
                            }
                        }
                    }
                }
            '''
    
            then:
            succeeds "echo"
            output.contains "thing2.name: foo bar"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryNamedTypeIntegrationTest.groovy

                    }
    
                    void apply(Project project) {
                        project.tasks.create('thing1', CustomTask) {
                            thing = objects.named(Thing, 'thing1')
                        }
                        project.tasks.create('thing2', CustomTask) {
                            thing = project.objects.named(Thing, 'thing2')
                        }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 05:39:53 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec/groovyToolClassesAreNotVisible/src/main/groovy/Thing.groovy

    class Thing {
        def builder = new groovy.ant.AntBuilder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 62 bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/Thing.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot.impl
    
    import org.gradle.api.Named
    
    interface Thing extends Named {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 723 bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

            def dir = testDir.file("thing.dir")
            classesDir(dir)
            def file = testDir.file("thing.jar")
            jar(file)
            def dir2 = testDir.file("thing2.dir")
            classesDir(dir2)
            def file2 = testDir.file("thing2.jar")
            jar(file2)
            def dir3 = testDir.file("thing3.dir")
            classesDir(dir3)
            def file3 = testDir.file("thing3.jar")
            jar(file3)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top