Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for testExecution (0.44 sec)

  1. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/DefaultWorkerExecutorParallelTest.groovy

                6.times {
                    start {
                        thread.blockUntil.allStarted
                        WorkQueue queue = workerExecutor."${isolationMode}" Actions.doNothing()
                        queue.submit(TestExecution.class, Actions.doNothing())
                    }
                }
                instant.allStarted
            }
    
            then:
            6 * workerThreadRegistry.workerThread >> true
            6 * executionQueue.submit(_)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:22:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r43/ToolingApiVersionSpecification.groovy

                def action = connection.action(new NullAction())
                action.standardOutput = outputStream
                action.run()
            }
        }
    
        // since 2.6
        def testExecution() {
            buildFile << """
    apply plugin: 'java'
    repositories {
        maven {
            url '${buildContext.localRepository.toURI()}'
        }
    }
    ${mavenCentralRepository()}
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalBuildProgressListener.java

     */
    public interface InternalBuildProgressListener {
    
        /**
         * The constant for the test execution operations.
         */
        String TEST_EXECUTION = "TEST_EXECUTION";
    
        /**
         * The constant for the task execution operations.
         */
        String TASK_EXECUTION = "TASK_EXECUTION";
    
        /**
         * The constant for the build execution operations.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterTest.groovy

    import static org.gradle.tooling.internal.protocol.InternalBuildProgressListener.TASK_EXECUTION
    import static org.gradle.tooling.internal.protocol.InternalBuildProgressListener.TEST_EXECUTION
    import static org.gradle.tooling.internal.protocol.InternalBuildProgressListener.TEST_OUTPUT
    import static org.gradle.tooling.internal.protocol.InternalBuildProgressListener.TRANSFORM_EXECUTION
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DistributionFactoryTest.groovy

            then:
            1 * buildProgressListener.subscribedOperations >> [InternalBuildProgressListener.TEST_EXECUTION]
            1 * cancellationToken.addCallback(_)
    
            then:
            1 * progressLoggerFactory.newOperation(DistributionInstaller.class) >>> loggerOne
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForTestOperationsTest.groovy

            when:
            def listener = Mock(ProgressListener)
            adapter = createAdapter(listener)
    
            then:
            adapter.subscribedOperations == [InternalBuildProgressListener.TEST_EXECUTION]
        }
    
        def "only TestProgressEventX instances are processed if a test listener is added"() {
            given:
            def listener = Mock(ProgressListener)
            def adapter = createAdapter(listener)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderConnection.java

            private static final Map<String, OperationType> OPERATION_TYPE_MAPPING = ImmutableMap.<String, OperationType>builderWithExpectedSize(OperationType.values().length)
                .put(InternalBuildProgressListener.TEST_EXECUTION, OperationType.TEST)
                .put(InternalBuildProgressListener.TASK_EXECUTION, OperationType.TASK)
                .put(InternalBuildProgressListener.WORK_ITEM_EXECUTION, OperationType.WORK_ITEM)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

        public List<String> getSubscribedOperations() {
            List<String> operations = new ArrayList<>();
    
            if (!testProgressListeners.isEmpty()) {
                operations.add(InternalBuildProgressListener.TEST_EXECUTION);
            }
            if (!taskProgressListeners.isEmpty()) {
                operations.add(InternalBuildProgressListener.TASK_EXECUTION);
            }
            if (!buildOperationProgressListeners.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
Back to top