Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of about 10,000 for wren (0.1 sec)

  1. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningTasksIntegrationSpec.groovy

                }
            """
    
            when:
            run "signCustomFile"
    
            then:
            executedAndNotSkipped(":signCustomFile")
            file("input.txt.asc").exists()
    
            when:
            inputFile.text = "bar"
            run "signCustomFile"
    
            then:
            executedAndNotSkipped(":signCustomFile")
    
            when:
            run "signCustomFile"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginContainerTest.groovy

            !container.hasPlugin("x")
            !container.findPlugin("x")
        }
    
        def "fails when getting unknown plugin"() {
            when:
            container.getPlugin("unknown")
    
            then:
            thrown(UnknownPluginException)
        }
    
        def "fails when getting plugin of unknown type"() {
            when:
            container.getPlugin(plugin1Class)
    
            then:
            thrown(UnknownPluginException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultExclusiveCacheAccessCoordinatorTest.groovy

            access.open()
            access.close()
    
            then:
            1 * cleanupExecutor.cleanup()
            0 * _
        }
    
        def "does not clean up on close when clean up has already occurred"() {
            def access = newAccess(OnDemand)
    
            when:
            access.open()
            access.cleanup()
    
            then:
            1 * cleanupExecutor.cleanup()
            0 * _
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

            result.assertTasksNotSkipped(":a", ":b")
    
            when:
            outputFileB.delete()
            succeeds "b"
    
            then:
            result.assertTasksNotSkipped(":b")
            result.assertTasksSkipped(":a")
    
            when:
            succeeds "b"
    
            then:
            result.assertTasksSkipped(":a", ":b")
        }
    
        def "skips task when output dir contents are up-to-date"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/UriTextResourceTest.groovy

            when:
            file.text = '<content>'
            UriTextResource resource = new UriTextResource('<display-name>', file, resolver)
    
            then:
            resource.exists
            !resource.hasEmptyContent
            resource.text == '<content>'
            resource.asReader.text == '<content>'
        }
    
        def assumesFileIsEncodedUsingUtf8() throws IOException {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/actor/internal/DefaultActorFactorySpec.groovy

        def cleanup() {
            factory.stop()
        }
    
        def createsANonBlockingActorForATargetObject() {
            when:
            def actor = factory.createActor(target)
    
            then:
            actor != null
        }
    
        def cachesTheNonBlockingActorForATargetObject() {
            when:
            def actor1 = factory.createActor(target)
            def actor2 = factory.createActor(target)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/AbstractLineChoppingStyledTextOutputTest.groovy

        def "appends text to current line"() {
            def output = output()
    
            when:
            output.text("some text")
    
            then:
            result.toString() == "[some text]"
        }
    
        def "append empty lines [#type]"() {
            def output = output()
    
            when:
            output.text(eol)
            output.text(eol)
            output.text("$eol$eol")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecToolchainIntegrationTest.groovy

            "current JVM"    | "when toolchains are not configured" | null     | null           | null              | "current"
            "java extension" | "when configured"                    | null     | null           | "other"           | "other"
            "executable"     | "when configured"                    | null     | "other"        | null              | "other"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocToolchainIntegrationTest.groovy

            "current JVM"    | "when toolchains are not configured" | null     | null           | null              | "current"
            "java extension" | "when configured"                    | null     | null           | "other"           | "other"
            "executable"     | "when configured"                    | null     | "other"        | null              | "other"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

        void 'cannot create task with no name'() {
            when:
            container.create([:])
    
            then:
            InvalidUserDataException e = thrown()
            e.message == "The task name must be provided."
        }
    
        void 'can create task with dependencies'() {
            def task = task("task")
            taskFactory.create(_ as TaskIdentity) >> task
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
Back to top