Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 604 for executors (0.16 sec)

  1. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

            //
    
            assertEquals(16, executions.size());
    
            assertEquals("clean:clean", executions.get(0).getMojoDescriptor().getFullGoalName());
            assertEquals("it:xpp3-writer", executions.get(1).getMojoDescriptor().getFullGoalName());
            assertEquals("it:java", executions.get(2).getMojoDescriptor().getFullGoalName());
            assertEquals("it:xpp3-reader", executions.get(3).getMojoDescriptor().getFullGoalName());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 20:57:17 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGLoggingOutputCaptureIntegrationTest.groovy

                // Broken in 5.12.1, fixed in 5.13
                assert containsLinesThatMatch(result.output,
                    "Gradle Test Executor \\d+ -> static out",
                    "Gradle Test Executor \\d+ -> static err",
                    "Gradle Test Executor \\d+ -> constructor out",
                    "Gradle Test Executor \\d+ -> constructor err"
                )
            }
    
            outputContains expectedOutput('The Foo Test')
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParallelIntegrationTest.groovy

            def handler = blockingHttpServer.expectConcurrentAndBlock(maxWorkers, calls)
    
            when:
            args("--max-workers=${maxWorkers}")
            executer.withTasks("parallelWorkTask")
            def gradle = executer.start()
    
            then:
            handler.waitForAllPendingCalls()
    
            when:
            handler.release(1)
    
            then:
            handler.waitForAllPendingCalls()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/cache/CacheConfigurationsContinuousIntegrationTest.groovy

        def setup() {
            requireOwnGradleUserHomeDir()
        }
    
        @Override
        TestFile getGradleUserHomeDir() {
            return executer.gradleUserHomeDir
        }
    
        def "can configure caches via init script and execute multiple builds in a session"() {
            def initDir = new File(executer.gradleUserHomeDir, "init.d")
            initDir.mkdirs()
            new File(initDir, "cache-settings.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestTaskIntegrationTest.groovy

            when:
            run("build")
    
            then:
            result.assertTaskSkipped(":test")
        }
    
        @Requires(UnitTestPreconditions.Jdk9OrLater)
        def "compiles and executes a Java 9 test suite"() {
            given:
            buildFile << java9Build()
    
            file('src/test/java/MyTest.java') << standaloneTestClass
    
            when:
            succeeds 'test'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

            });
        }
    
        private void maybeStartWorkers(MergedQueues queue, Executor executor) {
            int executorCount = workerLimits.getMaxWorkerCount();
            state.maybeStartWorkers(() -> {
                LOGGER.debug("Using {} parallel executor threads", executorCount);
                for (int i = 1; i < executorCount; i++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    This means that it a given test class is executed by multiple test tasks, then the test report will include executions of that class, but it can be hard to distinguish individual executions of that class and their output....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. maven-core/pom.xml

                  </models>
                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>buildnumber-maven-plugin</artifactId>
            <executions>
              <execution>
                <id>create-buildnumber</id>
                <goals>
                  <goal>create</goal>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

                executer.withTasks("d").withArguments("-x", ":sub:c").run().assertTasksExecuted(":a", ":b", ":c", ":d", ":sub:d")
                executer.withTasks("d").withArguments("-x", "d").run().assertTasksExecuted()
                // Project defaults
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/concurrent/src/test/groovy/org/gradle/internal/concurrent/DefaultExecutorFactoryTest.groovy

            when:
            def executor = factory.create('<display-name>')
            def action = {
                executor.stop()
            }
            executor.execute(action)
            executor.stop()
    
            then:
            IllegalStateException e = thrown()
            e.message == 'Cannot stop this executor from an executor thread.'
        }
    
        def stopThrowsExceptionOnTimeout() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top