Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 8,420 for wren (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtraPropertiesExtensionTest.groovy

            expect:
            extension.foo == null
    
            when:
            extension.foo = "bar"
    
            then:
            extension.foo == "bar"
        }
    
        def "cannot read or write unregistered property using groovy syntax"() {
            when:
            extension.foo
    
            then:
            thrown(MissingPropertyException)
    
            when:
            extension.foo = "bar"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/core/src/test/groovy/org/gradle/util/LineBufferingOutputStreamTest.groovy

            when:
            outputStream.close()
    
            then:
            action.endOfStream(null)
    
            when:
            outputStream.write("ignore me".getBytes())
    
            then:
            thrown(IOException)
        }
    
        def splitsLongLines() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 5.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/MultiLineBuildProgressAreaTest.groovy

                0 * ansi._
            }
        }
    
        def "doesn't do any ansi calls when visibility is set to false before the first redraw"() {
            given:
            fillArea()
    
            when:
            progressArea.setVisible(false)
            redraw()
    
            then:
            0 * ansi._
        }
    
        def "doesn't scroll the area when visibility is set to false"() {
            given:
            fillArea()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-groups-in.yaml

            methods: ["l7-method"]
      # L4 and L7 when
      - when:
        - key: "source.namespace"
          values: ["when-l4-l7-ns"]
        - key: "connection.sni"
          values: [ "when-l4-l7-sni"]
      # L4 only when
      - when:
        - key: "source.namespace"
          values: ["when-l4-ns"]
        - key: "source.ip"
          values: ["10.10.10.10"]
      # L7 only when
      - when:
        - key: "connection.sni"
          values: [ "when-l7-sni"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/CursorTest.groovy

        def "create a cursor at (0,0) when using factory method 'newBottomLeft'"() {
            when:
            Cursor cursor = Cursor.newBottomLeft()
    
            then:
            cursor.row == 0
            cursor.col == 0
        }
    
        def "create a cursor at (#row, #col) when using factory method 'at'"() {
            when:
            Cursor cursor = Cursor.at(row, col)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top