Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,259 for thingo (0.16 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyLifecycleIntegrationTest.groovy

                }
    
                project.extensions.create('thing', ProjectModel.class)
                thing.prop.disallowUnsafeRead()
    
                task show {
                    def thing = thing
                    dependsOn {
                        thing.prop.set("123")
                        println("value = " + thing.prop.get())
                        try {
                            thing.prop.set("ignore me")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:00:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcIntegrationTest.groovy

            outerBuild.file('buildSrc/src/main/java/Thing.java') << """
                class Thing {
                    Thing() { System.out.println("outer thing"); }
                }
            """
            outerBuild.buildFile << "new Thing()"
    
            childBuild.settingsFile << "rootProject.name = 'someBuild'"
            childBuild.file('buildSrc/src/main/java/Thing.java') << """
                class Thing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:27 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/DefaultCacheAwareExternalResourceAccessorTest.groovy

            and:
            1 * index.lookup("thing") >> null
            1 * localCandidates.isNone() >> false
            1 * repository.resource(location, true) >> remoteResource
            1 * remoteResource.metaData >> null
            0 * _._
        }
    
        def "downloads resource and moves it into the cache when it is not cached"() {
            def location = new ExternalResourceName("thing")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 17:19:47 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/typeregistration/BaseInstanceFactoryTest.groovy

                .withImplementation(ModelType.of(DefaultThingSpec))
            instanceFactory.register(ModelType.of(OtherThingSpec), new SimpleModelRuleDescriptor("thing"))
                .withImplementation(ModelType.of(DefaultOtherThingSpec))
            instanceFactory.register(ModelType.of(MultiplePathsToRoot), new SimpleModelRuleDescriptor("thing"))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. src/go/doc/comment/testdata/linklist4.txt

    {"DocLinkBaseURL": "https://pkg.go.dev"}
    -- input --
    Cool things:
    
      - Foo
      - [Go] is great
        
        [Go]: https://go.dev/
      - Bar
    
    -- text --
    Cool things:
    
      - Foo
    
      - Go is great
    
      - Bar
    
    [Go]: https://go.dev/
    -- markdown --
    Cool things:
    
      - Foo
    
      - [Go](https://go.dev/) is great
    
      - Bar
    
    -- html --
    <p>Cool things:
    <ul>
    <li><p>Foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 21:57:02 UTC 2022
    - 407 bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyLifecycleIntegrationTest.groovy

                    output = layout.buildDir.dir("dir.out")
                }
    
                def thing = project.extensions.create("thing", ProjectModel)
    
                thing.prop.disallowUnsafeRead()
                thing.prop.set(producer.output)
                def prop = thing.prop
    
                try {
                    prop.get()
                } catch(IllegalStateException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            classFile.isFile()
            new ZipTestFixture(jarFile).hasDescendants("META-INF/MANIFEST.MF", "Thing.class")
    
            when:
            file("src/main/java/thing/NewThing.java") << """
                package thing;
    
                public class NewThing { }
            """
            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)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/metaobject/MixInClosurePropertiesAsMethodsDynamicObjectTest.groovy

            obj2.tryInvokeMethod(_, _) >> DynamicInvokeResult.notFound()
            obj1.tryGetProperty("things") >> DynamicInvokeResult.notFound()
            obj2.tryGetProperty("things") >> DynamicInvokeResult.found(container)
    
            when:
            obj.invokeMethod("things", [cl] as Object[])
    
            then:
            1 * container.configure(cl)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. subprojects/build-events/src/integTest/groovy/org/gradle/build/event/BuildEventsIntegrationTest.groovy

                apply plugin: LoggingPlugin
                task thing {
                    dependsOn gradle.includedBuilds*.task(':thing')
                }
            """
            file("a/build.gradle") << """
                task thing
            """
            file("b/build.gradle") << """
                task thing
            """
    
            when:
            run("thing")
    
            then:
            output.count("EVENT:") == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AttributeValuesIntegrationTest.groovy

            given:
            buildFile << """
        class Thing implements Named, Serializable {
            String name
        }
        def attr = Attribute.of(List)
    
        configurations {
            ok
        }
        def value = [new Thing(name: 'a'), new Thing(name: 'b')]
        configurations.ok.attributes.attribute(attr, value)
    
        value[0].name = 'other'
        value.add(new Thing(name: 'c'))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top