Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,220 for executors (0.16 sec)

  1. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/IntegrationTestSamplesRunner.java

     * limitations under the License.
     */
    package org.gradle.docs.samples;
    
    import org.gradle.api.GradleException;
    import org.gradle.exemplar.executor.CommandExecutor;
    import org.gradle.exemplar.executor.ExecutionMetadata;
    import org.gradle.exemplar.model.Command;
    import org.gradle.exemplar.model.Sample;
    import org.gradle.exemplar.test.runner.SamplesRunner;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 22:10:58 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java

       * calling thread. Tasks are run to completion before a {@code Future} is returned to the caller
       * (unless the executor has been shutdown).
       *
       * <p>The returned executor is backed by the executor returned by {@link
       * MoreExecutors#newDirectExecutorService} and subject to the same constraints.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:12:37 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. testing/integ-test/src/integTest/groovy/org/gradle/integtests/GradleBuildCacheServiceCorruptionTest.groovy

                        dir = rootDir
                        tasks = ["jar"]
                    }
                }
            """
            executer.withArguments("--parallel", "--info")
            expect:
            succeeds("clean", "breakBuild")
            // This fails when running with the forking executor
            succeeds("clean", "breakBuild")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/AbstractVisualStudioIntegrationSpec.groovy

            // Gradle needs to be isolated so that msbuild does not leave behind daemons
            assert executer.distribution.gradleHomeDir != null
            assert !executer.usesSharedDaemons()
            def executer = new MSBuildExecutor(testDirectory, toolChain)
            executer.withArgument('/p:Platform=Win32')
            return executer
        }
    
        protected SolutionFile solutionFile(String path) {
            return solutionFile(file(path))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/SampleOutputNormalizer.groovy

     * limitations under the License.
     */
    package org.gradle.integtests.fixtures.logging
    
    import groovy.transform.CompileStatic
    import org.gradle.integtests.fixtures.executer.OutputScrapingExecutionResult
    import org.gradle.internal.logging.ConsoleRenderer
    import org.gradle.exemplar.executor.ExecutionMetadata
    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    import java.util.regex.Pattern
    
    @CompileStatic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java

       * calling thread. Tasks are run to completion before a {@code Future} is returned to the caller
       * (unless the executor has been shutdown).
       *
       * <p>The returned executor is backed by the executor returned by {@link
       * MoreExecutors#newDirectExecutorService} and subject to the same constraints.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:12:37 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CachingRuleExecutor.java

    import org.gradle.api.Transformer;
    import org.gradle.api.internal.artifacts.configurations.dynamicversion.CachePolicy;
    import org.gradle.internal.action.InstantiatingAction;
    
    /**
     * A caching rule executor allows caching the result of processing a rule. A rule is represented by a
     * {@link InstantiatingAction<DETAILS> instantiating action}, which is responsible for instantiating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskSelectionIntegrationTest.groovy

                }
                """
    
            when:
            run "thing"
    
            then:
            result.assertTasksExecuted(":a:thing", ":b:thing", ":a:a:thing", ":b:b:thing")
    
            when:
            executer.inDirectory(file("a"))
            run "thing"
    
            then:
            result.assertTasksExecuted(":a:thing", ":a:a:thing")
    
            // camel case matching
            when:
            run "th"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestListenerBuildOperationAdapterIntegrationTest.groovy

                details.testDescriptor.className == null
                details.testDescriptor.composite == true
            }
            with(iterator.next()) {
                details.testDescriptor.name ==~ "Gradle Test Executor \\d+"
                details.testDescriptor.className == null
                details.testDescriptor.composite == true
            }
            checkForSuiteOperations(iterator, "org.gradle.ASuite")
            if (emitsTestClassOperations) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiDistributionResolver.groovy

    import org.gradle.api.internal.project.ProjectInternal
    import org.gradle.integtests.fixtures.RepoScriptBlockUtil
    import org.gradle.integtests.fixtures.executer.CommitDistribution
    import org.gradle.integtests.fixtures.executer.IntegrationTestBuildContext
    import org.gradle.internal.exceptions.DefaultMultiCauseException
    import org.gradle.testfixtures.ProjectBuilder
    import org.gradle.testfixtures.internal.ProjectBuilderImpl
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top