Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for wren (0.05 sec)

  1. 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)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultBinaryCollectionTest.groovy

            container.add(binary)
            container.configureEach { container.whenElementFinalized(action) }
    
            when:
            container.realizeNow()
    
            then:
            1 * action.execute(binary)
            0 * action._
        }
    
        def "executes when finalized actions eagerly when collection is finalized"() {
            given:
            def action = Mock(Action)
            def binary = Stub(SwiftBinary)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.4K 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/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdaterTest.groovy

            }
            0 * _
    
            when:
            invalidate(snapshotInsideFirstWatchableHierarchy.absolutePath)
            then:
            1 * watcher.stopWatching({ equalIgnoringOrder(it, [watchableHierarchies[0]]) })
            0 * _
    
            when:
            buildFinished()
            then:
            0 * _
    
            when:
            addSnapshotInWatchableHierarchy(watchableHierarchies[0])
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 12K 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/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)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecResolutionTest.groovy

        }
    
        def testChildResolvesUsingParentDestinationPathAsDefault() {
            when:
            parentSpec.into 'parent'
            CopySpecResolver parentContext = parentSpec.buildRootResolver()
    
            then:
            parentContext.destPath == new RelativePath(false, 'parent')
    
            when:
            DefaultCopySpec child = copySpec()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 12:39:32 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/IsolatingIncrementalAnnotationProcessingIntegrationTest.groovy

            withProcessor(helperProcessor)
        }
    
        def "generated files are recompiled when annotated file changes"() {
            given:
            def a = java "@Helper class A {}"
            java "class Unrelated {}"
    
            outputs.snapshot { run "compileJava" }
    
            when:
            a.text = "@Helper class A { public void foo() {} }"
            run "compileJava"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  10. 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)
Back to top