Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,259 for thingo (0.19 sec)

  1. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocRendererTest.groovy

        <section>
            <title>Properties</title>
            <section>
                <title>Properties added by the <literal>thingo</literal> plugin</title>
                <titleabbrev><literal>thingo</literal> plugin</titleabbrev>
                <table>
                    <title>Properties - <literal>thingo</literal> plugin</title>
                    <thead>
                        <tr>
                            <td>Property</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 40.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/internal/types/testdata/fixedbugs/issue50918.go

    // license that can be found in the LICENSE file.
    
    package p
    
    type thing1 struct {
    	things []string
    }
    
    type thing2 struct {
    	things []thing1
    }
    
    func _() {
    	var a1, b1 thing1
    	_ = a1 /* ERROR "struct containing []string cannot be compared" */ == b1
    
    	var a2, b2 thing2
    	_ = a2 /* ERROR "struct containing []thing1 cannot be compared" */ == b2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 453 bytes
    - Viewed (0)
  10. 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)
Back to top