Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of about 10,000 for _run (0.05 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DirectoryOutputArtifactIntegrationTest.groovy

                }
            }
    
            task run(dependsOn: configurations.compile) {
                doLast {
                    assert files*.listFiles().flatten().text == ['some text']
                }
            }
            '''
    
            when:
            run 'check'
    
            then:
            executed ':check'
    
            when:
            run 'run'
    
            then:
            executed ':run'
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/expressionInfoProvider/returnExpressionTargetSymbol/labeledReturn.kt

    fun test() {
        run {
            return@run/* <anonymous>@(2,9) */
        }
        run {
            return@test/* test@(1,1) */
        }
        run a@{
            return@a/* <anonymous>@(8,11) */
        }
        run {
            with("") {
                return@with/* <anonymous>@(12,18) */
                return@run/* <anonymous>@(11,9) */
                return@test/* test@(1,1) */
            }
        }
    }
    
    val i = a@{
        return@a/* <anonymous>@(20,11) */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Nov 19 22:29:17 UTC 2021
    - 418 bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/execution/JavaModuleExecutionIntegrationTest.groovy

            def mainClass = consumingModuleClass('moda.ModaClass')
            mainClass.text = mainClass.text.replace('.run()', '.run(); MainModule.class.getModule().getResourceAsStream("data.txt").readAllBytes()')
            file('src/main/resources/data.txt').text = "some data"
    
            when:
            succeeds ':run'
    
            then:
            outputContains("Module Name: consumer")
            outputContains("Module Version: 1.0-beta2")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/SequentialExecutorTest.java

        fakePool.execute(
            new Runnable() {
              @Override
              public void run() {
                Thread.currentThread().interrupt();
              }
            });
        // Run a task that expects that it is not interrupted while it is running.
        e.execute(
            new Runnable() {
              @Override
              public void run() {
                assertThat(Thread.currentThread().isInterrupted()).isFalse();
              }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/RelativePathParserTest.groovy

            then:
            0 * exitHandler.run()
            then:
            parser.name == "first"
            parser.relativePath == "first"
            !parser.root
            !outsideOfRoot
    
            when:
            outsideOfRoot = parser.nextPath("tree-some/first/file.txt", false, exitHandler)
            then:
            0 * exitHandler.run()
            then:
            parser.name == "file.txt"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/RecoverFromBrokenResolutionIntegrationTest.groovy

                """
        }
    
        @ToBeFixedForConfigurationCache
        def "can run offline mode after hitting broken repo url"() {
            given:
            buildFileWithSnapshotDependency()
            and:
            noAuthorizationRepo()
    
            publishedMavenModule()
            when:
            moduleAvailableViaHttp()
            then:
            run 'retrieve'
    
            when:
            server.resetExpectations()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

              sudo cp /var/run/secrets/istio/bootstrap/root-cert.pem /var/run/secrets/istio/root-cert.pem
              sudo cp /var/run/secrets/istio/bootstrap/*.env /var/lib/istio/envoy/
              sudo cp /var/run/secrets/istio/bootstrap/mesh.yaml /etc/istio/config/mesh
    
              # don't overwrite /etc/hosts since it's managed by kubeproxy
              #sudo sh -c 'cat /var/run/secrets/istio/bootstrap/hosts >> /etc/hosts'
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/TestMainActionTest.groovy

            def failure = new RuntimeException()
    
            when:
            action.run()
    
            then:
            1 * resultProcessor.started(!null, !null)
            then:
            1 * processor.startProcessing(!null)
            then:
            1 * detector.run() >> { throw failure }
            then:
            1 * workerLeaseService.blocking(_) >> { Runnable runnable -> runnable.run() }
            1 * processor.stop()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/process/internal/MultiRequestWorkerProcessIntegrationTest.groovy

            when:
            def builder = workerFactory.multiRequestWorker(StatefulTestWorker.class)
            def worker = builder.build()
            worker.start()
            def result1 = worker.run("value")
            def result2 = worker.run("value")
            def result3 = worker.run("value")
            worker.stop()
    
            then:
            result1 == "value:1"
            result2 == "value:2"
            result3 == "value:3"
    
            cleanup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 15 22:51:06 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/BuildProgressCrossVersionSpec.groovy

                            .addProgressListener(events)
                            .run()
            }
    
            then:
            events.assertIsABuild()
    
            def root = events.operation("Run build")
            root.descendant("Run init scripts")
        }
    
        def "generates buildSrc operation when there is a nested buildSrc build"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top