Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 5,778 for wren (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelIncrementalIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "visual studio tasks re-execute when source files are added"() {
            app.writeSources(file("src/main"))
    
            when:
            run "visualStudio"
    
            then:
            executedAndNotSkipped ":appVisualStudioSolution"
            executedAndNotSkipped getComponentTasks("main")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. 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)
  6. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/async/ServiceLifecycleTest.groovy

            noExceptionThrown()
        }
    
        def "throws exception when attempting to use service after it has stopped"() {
            when:
            lifecycle.stop()
            lifecycle.use { }
    
            then:
            IllegalStateException e = thrown()
            e.message == 'Cannot use [service] as it has been stopped.'
        }
    
        def "throws exception when attempting to use service after stop has been requested"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:55 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/result/DefaultBuildableModuleComponentMetaDataResolveResultTest.groovy

            then:
            thrown(IllegalStateException)
        }
    
        def "cannot get meta-data when has no result"() {
            when:
            descriptor.metaData
    
            then:
            thrown(IllegalStateException)
        }
    
        def "cannot get authoritative flag when has no result"() {
            when:
            descriptor.authoritative
    
            then:
            thrown(IllegalStateException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/time/src/test/groovy/org/gradle/internal/time/MonotonicClockTest.groovy

        def "prevents time from going backwards"() {
            when:
            setNanos 0
    
            then:
            clock.currentTime == START_MILLIS + 0
    
            when:
            setNanos 10
    
            then:
            clock.currentTime == START_MILLIS + 10
    
            when:
            setNanos 8
    
            then:
            clock.currentTime == START_MILLIS + 10
    
            when:
            setNanos 10
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/result/DefaultBuildableArtifactSetResolveResultTest.groovy

        def "cannot get artifacts when no result specified"() {
            when:
            result.result
    
            then:
            IllegalStateException e = thrown()
            e.message == 'No result has been specified.'
        }
    
        def "cannot get failure when no result specified"() {
            when:
            result.failure
    
            then:
            IllegalStateException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/ClientBuildEventGeneratorTest.groovy

            when:
            generator.started(operation, startEvent)
    
            then:
            0 * _
    
            when:
            generator.progress(operationId, progressEvent)
    
            then:
            0 * _
    
            when:
            generator.finished(operation, finishEvent)
    
            then:
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top