Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 8,420 for wren (0.05 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectCollectionSpec.groovy

            when:
            container.named("a").configure(method)
            then:
            noExceptionThrown()
    
            when:
            container.named("a", method)
            then:
            noExceptionThrown()
    
            when:
            container.named("a", getType(), method)
            then:
            noExceptionThrown()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  2. cmd/typed-errors.go

    // error returned in IAM subsystem when user doesn't exist.
    var errNoSuchUser = errors.New("Specified user does not exist")
    
    // error returned by IAM when a use a builtin IDP command when they could mean
    // to use a LDAP command.
    var errNoSuchUserLDAPWarn = errors.New("Specified user does not exist. If you meant a user in LDAP please use command under `mc idp ldap`")
    
    // error returned when service account is not found
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/ListenerBroadcastTest.groovy

            expect:
            broadcast.type == TestListener
        }
    
        def 'source object does nothing when no listeners are added'() {
            expect:
            broadcast.source.event1("param")
        }
    
        def 'visit listeners does nothing when no listeners are added'() {
            def visitor = Mock(Action)
    
            when:
            broadcast.visitListeners(visitor)
    
            then:
            0 * visitor._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SimpleJavaContinuousIntegrationTest.groovy

                apply plugin: 'java'
            """
        }
    
        def "can build when no source dir present"() {
            when:
            assert !file("src/main/java").exists()
    
            then:
            succeeds("build")
            skipped(":compileJava")
            executed(":build")
        }
    
        def "can build when source dir is removed"() {
            when:
            file("src/main/java/Thing.java") << "class Thing {}"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoCachingIntegrationTest.groovy

                }
            """
            when:
            withBuildCache().run "jacocoTestReport"
            then:
            executedAndNotSkipped ":test", ":jacocoTestReport"
            reportFile.assertIsFile()
    
            when:
            succeeds "clean"
            then:
            reportFile.assertDoesNotExist()
    
            when:
            withBuildCache().run("integrationTest", "jacocoIntegrationTestReport")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/AbstractStyledTextOutputTest.groovy

        def onOutputWritesText() {
            when:
            output.onOutput('some message')
    
            then:
            output.value == 'some message'
        }
    
        def writesNullText() {
            when:
            output.text(null)
    
            then:
            output.value == 'null'
        }
    
        def writesEndOfLine() {
            when:
            output.println()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/ProjectConfigureEventsErrorIntegrationTest.groovy

        def "setup"() {
            settingsFile << "rootProject.name = 'projectConfigure'"
        }
    
        def "produces reasonable error message when Gradle.beforeProject closure fails"() {
            when:
            settingsFile << """
        gradle.beforeProject {
            throw new RuntimeException("beforeProject failure")
        }
    """
            buildFile << """
        task test
    """
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/test/groovy/org/gradle/api/internal/plugins/DefaultArtifactPublicationSetTest.groovy

            publication.addCandidate(jar)
    
            then:
            publication.defaultArtifactProvider.get() == set(jar)
    
            when:
            publication.addCandidate(ear)
    
            then:
            publication.defaultArtifactProvider.get() == set(ear)
    
            when:
            publication.addCandidate(jar)
    
            then:
            publication.defaultArtifactProvider.get() == set(ear)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/deny-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"]
          notValues: ["20.20.20.20"]
      # L7 only when
      - when:
        - key: "connection.sni"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheToolingApiInvocationIntegrationTest.groovy

        }
    
        def "can run tasks via tooling API when configuration cache is enabled"() {
            buildFile << """
                plugins {
                    id("java")
                }
                println("script log statement")
            """
    
            when:
            configurationCacheRun("assemble")
    
            then:
            outputContains("script log statement")
    
            when:
            configurationCacheRun("assemble")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top