Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 226 for executors (0.22 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiInvocationValidationIntegrationTest.groovy

            buildFile << """
                allprojects {
                    plugins.apply('java-library')
                }
                plugins.apply(my.MyPlugin)
            """
    
            when:
            executer.withArguments(ENABLE_CLI)
            fetchModelFails()
    
            then:
            fixture.assertStateStoredAndDiscarded {
                projectConfigured(":buildSrc")
                modelsCreated(":")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/projects/transform/jar/before.pom

                                    </configuration>
                                </execution>
                            </executions>
                        </plugin>
                        <plugin>
                            <artifactId>maven-source-plugin</artifactId>
                            <version>3.3.1</version>
                            <executions>
                                <execution>
                                    <id>attach-sources</id>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 12:04:39 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. .teamcity/pom.xml

                    <version>1.11.1</version>
                    <executions>
                        <execution>
                            <id>check</id>
                            <goals>
                                <goal>check</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
                <plugin>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:44:21 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-main/src/crossVersionTest/groovy/org/gradle/integtests/wrapper/WrapperPropertiesLoaderCrossVersionTest.groovy

            output.contains('system_property_available in included settings.gradle: true')
    
            cleanup:
            cleanupDaemons(executer, executionVersion)
        }
    
        static void cleanupDaemons(GradleExecuter executer, GradleDistribution executionVersion) {
            new DaemonLogsAnalyzer(executer.daemonBaseDir, executionVersion.version.version).killAll()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperIntegrationTest.groovy

            prepareWrapper()
            def gradleUserHome = testDirectory.file('some-custom-user-home')
            when:
            def executer = wrapperExecuter.withGradleUserHomeDir(gradleUserHome)
            result = executer.withTasks("hello").run()
            then:
            result.assertTaskExecuted(":hello")
            executer.stop()
    
            when:
            // Delete important file in distribution
            boolean deletedSomething = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSoakTest.groovy

            executer.requireOwnGradleUserHomeDir("needs to test toolchain download functionality")
                    .withToolchainDownloadEnabled()
        }
    
        def cleanup() {
            executer.gradleUserHomeDir.file("jdks").deleteDir()
        }
    
        def "can download missing jdk automatically"() {
            when:
            result = executer
                    .withTasks("compileJava")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 16:13:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/TestDisplayNameSpockCrossVersionSpec.groovy

            }
    
            then:
            jvmTestEvents {
                task(":test") {
                    suite("Gradle Test Run :test") {
                        suite("Gradle Test Executor") {
                            testClass("org.example.SimpleTests") {
                                testDisplayName "SimpleTests"
                                test("success test") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/StdioIntegrationTest.groovy

    import org.gradle.util.internal.TextUtil
    
    class StdioIntegrationTest extends AbstractIntegrationSpec {
        def setup() {
            executer.requireDaemon()
            // This isn't actually required - the test is fine with shared daemons
            // In fact, it would be much better to test this feature using shared daemons
            executer.requireIsolatedDaemons()
        }
    
        def "task can read stdin when stdin has bounded length"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/LoggingBridgingBuildActionExecuterTest.groovy

        final ProviderOperationParameters providerParameters = Stub()
    
        //declared type-lessly to work around groovy eclipse plugin bug
        final executer = new LoggingBridgingBuildActionExecuter(target, loggingManager)
    
        def configuresLoggingWhileActionIsExecuting() {
            when:
            executer.execute(action, parameters, buildRequestContext)
    
            then:
            1 * loggingManager.addOutputEventListener(!null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/AbstractConsoleJvmTestLoggingFunctionalTest.groovy

    import org.gradle.api.logging.configuration.ConsoleOutput
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.integtests.fixtures.executer.ExecutionResult
    
    abstract class AbstractConsoleJvmTestLoggingFunctionalTest extends AbstractIntegrationSpec {
        private static final String TEST_TASK_NAME = 'test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 14:21:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top