Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,625 for _run (0.04 sec)

  1. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/KotlinGradlePluginInitIntegrationTest.groovy

            when:
            run('check')
    
            then:
            assertTestPassed("org.example.SomeThingPluginTest", "plugin registers task")
            assertFunctionalTestPassed("org.example.SomeThingPluginFunctionalTest", "can run task")
    
            when:
            run('check', '--rerun-tasks')
    
            then:
            assertTestPassed("org.example.SomeThingPluginTest", "plugin registers task")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcTaskExecutionIntegrationTest.groovy

                }
            """
    
            expect:
            2.times {
                run(":buildSrc:something")
                result.assertTaskExecuted(":buildSrc:something")
            }
    
            run(":buildSrc:jar")
            result.assertTaskExecuted(":buildSrc:jar")
    
            run(":buildSrc:jar")
            // Task will not run when configuration cache is enabled
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaApplicationInitIntegrationTest.groovy

            and:
            commonJvmFilesGenerated(scriptDsl)
            dslFixture.assertDoesNotUseTestSuites()
    
            when:
            run("build")
    
            then:
            assertTestPassed("org.example.AppTest", "appHasAGreeting")
    
            when:
            run("run")
    
            then:
            outputContains("Hello World!")
    
            where:
            scriptDsl << ScriptDslFixture.SCRIPT_DSLS
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

            target.createFile()
            run 'producesLink'
            then:
            executedAndNotSkipped ':producesLink'
    
            when:
            run 'producesLink'
            then:
            skipped ':producesLink'
    
            when:
            target.delete()
            run 'producesLink'
            then:
            executedAndNotSkipped ':producesLink'
    
            when:
            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)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/console/AbstractExecOutputIntegrationTest.groovy

                apply plugin: 'java'
    
                task run(type: JavaExec) {
                    dependsOn 'compileJava'
                    classpath = sourceSets.main.runtimeClasspath
                    mainClass = 'Main'
                }
            """
    
            when:
            executer.withConsole(consoleType)
            succeeds("run")
    
            then:
            def output = result.groupedOutput.task(':run').output
            output.contains(EXPECTED_OUTPUT)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. .github/workflows/test-redistribute.yml

            run: python -m build --sdist
          - name: Decompress source distribution
            run: |
              cd dist
              tar xvf fastapi*.tar.gz
          - name: Install test dependencies
            run: |
              cd dist/fastapi*/
              pip install -r requirements-tests.txt
            env:
              TIANGOLO_BUILD_PACKAGE: ${{ matrix.package }}
          - name: Run source distribution tests
            run: |
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 07 18:31:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecToolchainIntegrationTest.groovy

                }
    
                tasks.register("run", JavaExec) {
                    javaLauncher = javaToolchains.launcherFor {
                        languageVersion = JavaLanguageVersion.of(${jdk.javaVersion.majorVersion})
                    }
                    setJvmArgs(['-version'])
                    mainClass = 'None'
                }
            """
    
            when:
            withInstallations(jdk).run(":run", "--info")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 8.4K 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. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceParallelExecutionIntegrationTest.groovy

            """
    
            expect:
            blockingServer.expectConcurrent("a", "b")
    
            run ":a:ping", ":b:ping"
    
            and:
            blockingServer.expectConcurrent("a", "b")
    
            run ":a:ping", ":b:ping"
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects")
        def "tasks are not run in parallel when they require an exclusive shared service"() {
            given:
            withParallelThreads(2)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top