Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 8,420 for wren (0.14 sec)

  1. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/connection/ToolingParameterProxyTest.groovy

    class ToolingParameterProxyTest extends Specification {
    
        def "returns parameter valid when well defined"() {
            when:
            ToolingParameterProxy.validateParameter(ValidParameter)
    
            then:
            noExceptionThrown()
        }
    
        def "returns parameter invalid when not a getter or setter"() {
            when:
            ToolingParameterProxy.validateParameter(InvalidParameter1)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-full-in.yaml

      - when:
        - key: "destination.ip"
          values: ["10.10.10.10", "192.168.10.0/24"]
          notValues: ["90.10.10.10", "90.168.10.0/24"]
      - when:
        - key: "destination.port"
          values: ["91", "92"]
          notValues: ["9001", "9002"]
      - when:
        - key: "connection.sni"
          values: ["exact.com", "*.suffix.com", "prefix.*", "*"]
          notValues: ["not-exact.com", "*.not-suffix.com", "not-prefix.*", "*"]
      - when:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenPomPackagingResolveIntegrationTest.groovy

            // Check caching
            when:
            server.resetExpectations()
            then:
            succeeds 'retrieve'
        }
    
        def "will use dependency type to locate artifact, even when custom packaging matches artifact type"() {
            when:
            buildWithDependencies("""
    compile('group:projectA:1.0') {
        artifact {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/connection/ProviderOperationParameters.java

        /**
         * @return When null, assume empty stdin (rather than consume from the current process' stdin).
         */
        @Nullable
        InputStream getStandardInput();
    
        /**
         * @return When null, use the provider's default Java home.
         */
        @Nullable
        File getJavaHome();
    
        /**
         * @return When null, use the provider's default JVM arguments. When empty, use no JVM arguments.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/IoActionsTest.groovy

        def "can handle null resource when closing"() {
            when:
            uncheckedClose(null)
    
            then:
            noExceptionThrown()
    
            when:
            closeQuietly(null)
    
            then:
            noExceptionThrown()
        }
    
        def "can close a valid resource"() {
            def resource = Mock(Closeable)
    
            when:
            uncheckedClose(resource)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/io/src/test/groovy/org/gradle/internal/io/LinePerThreadBufferingOutputStreamTest.groovy

            when:
            outstr.flush()
    
            then:
            0 * action._
        }
    
        def closeForwardsBufferedText() {
            TextStream action = Mock()
            def outstr = new LinePerThreadBufferingOutputStream(action)
    
            when:
            outstr.print("text")
    
            then:
            0 * action._
    
            when:
            outstr.close()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:13 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/RelativePathParserTest.groovy

        def "can work when empty"() {
            def parser = new RelativePathParser("tree-some/")
    
            expect:
            parser.root
    
            when:
            parser.exitToRoot(exitHandler)
            then:
            0 * _
        }
    
        def "can exit when moved to different root"() {
            def parser = new RelativePathParser("tree-some/")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexerTest.groovy

            when:
            lexer.pushText("<P></End>")
            lexer.visit(visitor)
    
            then:
            1 * visitor.onStartHtmlElement('p')
            1 * visitor.onStartHtmlElementComplete('p')
            1 * visitor.onEndHtmlElement('end')
            1 * visitor.onEnd()
            0 * visitor._
        }
    
        def parsesHtmlEntities() {
            when:
            lexer.pushText("before &amp; after")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/GroovyLibraryInitIntegrationTest.groovy

            when:
            run("build")
    
            then:
            assertTestPassed("my.lib.LibraryTest", "someLibraryMethod returns true")
    
            where:
            scriptDsl << ScriptDslFixture.SCRIPT_DSLS
        }
    
        def "creates with gradle.properties when using #scriptDsl build scripts with --incubating"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. platforms/software/resources/src/main/java/org/gradle/internal/resource/TextResource.java

         *
         * @return The charset. Returns null when this resource is not available as a file.
         */
        @Nullable
        Charset getCharset();
    
        /**
         * Returns true when the content of this resource is cached in-heap or uses a hard-coded value. Returns false when the content requires IO on each query.
         *
         * <p>When this method returns false, the caller should avoid querying the content more than once.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top