Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,556 for action1 (0.16 sec)

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

            manager.withPlugin("bar", action2)
    
            then:
            2 * action1.execute(_) >> { AppliedPlugin p ->
                assert p.id == "foo"
            }
            2 * action2.execute(_) >> { AppliedPlugin p ->
                assert p.id == "bar"
            }
            0 * action1._
            0 * action2._
        }
    
        def "action is notified for plugin with org.gradle id"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultBinaryCollectionTest.groovy

            def binary2 = Stub(SwiftBinary)
            def action1 = Mock(Action)
            def action2 = Mock(Action)
            def finalizeAction = Mock(Action)
    
            spec.isSatisfiedBy(binary2) >> true
    
            given:
            def p = container.get(spec)
            p.whenFinalized(finalizeAction)
            p.configure(action1)
            container.configureEach(action2)
            container.add(binary1)
    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. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccessTest.groovy

                    def release1 = cacheAccess.acquireFileLock()
                    thread.blockUntil.action2
                    release1.run()
                    instant.action1
                }
                start {
                    def release2 = cacheAccess.acquireFileLock()
                    instant.action2
                    thread.blockUntil.action1
                    release2.run()
                }
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/DefaultCommandLineActionFactoryTest.groovy

            outputs.stdOut.contains(expectedText)
            outputs.stdOut.contains("action1")
            !action1Intermediary || outputs.stdOut.contains("action2")
    
            and:
            1 * actionFactory1.createAction(!null, !null) >> {
                def action1 = { println "action1" }
                action1Intermediary ? action1 as ContinuingAction<ExecutionListener> : action1 as Action<ExecutionListener>
    
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. testing/internal-testing/src/test/groovy/org/gradle/test/fixtures/concurrent/ConcurrentSpecTest.groovy

            given:
            def action1 = {
                instant.action1Start
                thread.block()
                instant.action1End
            }
            def action2 = {
                instant.action2Start
            }
    
            when:
            start {
                synchronizer.runNow(action1)
            }
            async {
                thread.blockUntil.action1Start
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandlerTest.groovy

            client?.stop()
        }
    
        def "manages contention for multiple locks"() {
            def action1 = new AtomicBoolean()
            def action2 = new AtomicBoolean()
    
            when:
            int port = handler.reservePort()
            handler.start(10, { action1.set(true) })
            handler.start(11, { action2.set(true) })
    
            client.maybePingOwner(port, 10, "lock 1", 50000, null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/BuildActionCrossVersionSpec.groovy

            def cl1 = new URLClassLoader([implJar.toURI().toURL()] as URL[], getClass().classLoader)
            def action1 = cl1.loadClass("ActionImpl").getConstructor().newInstance()
    
            when:
            File actualJar1 = withConnection { ProjectConnection connection ->
                connection.action(action1).run()
            }
            cl1.close()
            Files.delete(implJar.toPath())
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/DefaultBuildControllerTest.groovy

            then:
            result.getModel() == model
        }
    
        def "runs supplied actions"() {
            def action1 = Mock(Supplier)
            def action2 = Mock(Supplier)
            def action3 = Mock(Supplier)
    
            when:
            def result = controller.run([action1, action2, action3])
    
            then:
            result == ["one", "two", "three"]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:30 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/async/ServiceLifecycleTest.groovy

        def "can use service when not stopped"() {
            def action = Mock(Runnable)
    
            when:
            lifecycle.use(action)
    
            then:
            1 * action.run()
            0 * _._
        }
    
        def "can use service concurrently from multiple threads"() {
            given:
            def action1 = {
                instant.action1Started
                thread.blockUntil.action2Done
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:55 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AbstractSpockTaskTest.groovy

        }
    
        def testSetActions() {
            when:
            Action action1 = Actions.doNothing()
            getTask().actions = [action1]
    
            Action action2 = Actions.doNothing()
            getTask().actions = [action2]
    
            then:
            [new AbstractTask.TaskActionWrapper(action2, "doLast(Action)")] ==  getTask().actions
        }
    
        def testAddActionWithNull() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 23 14:27:55 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top