Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,908 for wren (0.05 sec)

  1. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdaterTest.groovy

         *
         * For use in interaction tests, when an interaction only happens for non-hierarchical watchers.
         * E.g.:
         * ifNonHierarchical * watcher.startWatching(_)
         */
        abstract int getIfNonHierarchical()
    
        /**
         * Returns 1 for hierarchical watchers, and 0 for non-hierarchical watchers.
         *
         * For use in interaction tests, when an interaction only happens for hierarchical watchers.
         * E.g.:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

        def "from List"() {
            when:
            spec.from(absoluteTestSources)
    
            then:
            spec.sourcePaths as List == [absoluteTestSources]
        }
    
        def "from Array"() {
            when:
            spec.from(absoluteTestSources as File[])
    
            then:
            spec.sourcePaths as List == absoluteTestSources
        }
    
        def "from with Closure"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

            when:
            run installApp
    
            then:
            allSkipped()
        }
    
        @ToBeFixedForConfigurationCache
        def "recompiles binary when implementation header file changes"() {
            given:
            run installApp
            libObjects.snapshot()
            appObjects.snapshot()
    
            when:
            libraryImplHeaderFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

                    outputDirectory =  Paths.get('${root}')
                }
            """
    
            when:
            target.createFile()
            run 'producesLink'
            then:
            executedAndNotSkipped ':producesLink'
    
            when:
            run 'producesLink'
            then:
            skipped ':producesLink'
    
            when:
            target.delete()
            run 'producesLink'
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/test/groovy/org/gradle/api/tasks/util/PatternSetTest.groovy

        }
    
        def takesGlobalExcludesFromAnt() {
            when:
            DirectoryScanner.defaultExcludes.each {
                DirectoryScanner.removeDefaultExclude(it)
            }
            updateSettingsDefaults()
    
            then:
            included dir('.svn')
            included file('.svn', 'abc')
            included file('foo', '.DS_Store')
    
            when:
            DirectoryScanner.addDefaultExclude('*X*')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 12:37:12 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DefaultDaemonConnectionTest.groovy

            1 * handler.onEndOfInput() >> { received.countDown() }
            0 * handler._
        }
    
        def "generates end of stdin event when connection disconnects"() {
            StdinHandler handler = Mock()
            def input1 = new ForwardInput("hello".bytes)
            def received = new CountDownLatch(1)
    
            when:
            daemonConnection.onStdin(handler)
            connection.queueIncoming(input1)
            received.await()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompileAvoidanceIntegrationSpec.groovy

                public class Main { ToolImpl t = new ToolImpl(); }
            """
    
            when:
            succeeds ":b:${language.compileTaskName}"
    
            then:
            executedAndNotSkipped ":a:${language.compileTaskName}"
            executedAndNotSkipped ":b:${language.compileTaskName}"
    
            when:
            // ABI change of inner class
            sourceFile.text = """
                public class ToolImpl {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerTest.groovy

            !manager.hasListeners(TestFooListener)
    
            when:
            manager.getBroadcaster(TestFooListener)
    
            then:
            !manager.hasListeners(TestFooListener)
    
            when:
            manager.addListener(fooListener1)
    
            then:
            manager.hasListeners(TestFooListener)
            !manager.hasListeners(TestBarListener)
    
            when:
            manager.removeListener(fooListener1)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            when:
            run(":api:build")
    
            then:
            fixture.assertProjectsConfigured(":", ":api")
    
            when:
            inDirectory("impl")
            run(":api:build")
    
            then:
            fixture.assertProjectsConfigured(":", ":api")
    
            when:
            run(":impl:build")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/BroadcastDispatchTest.groovy

            when:
            def original = BroadcastDispatch.empty(TestListener).add(listener1).add(listener2).add(listener3)
            def dispatch = original.remove(listener1)
            dispatch.dispatch(invocation)
    
            then:
            1 * listener2.dispatch(invocation)
            1 * listener3.dispatch(invocation)
            0 * _
    
            when:
            dispatch = dispatch.remove(listener3)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 14.9K bytes
    - Viewed (0)
Back to top