Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 380 for Runner (0.1 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/TaskOutputCachingSwiftPerformanceTest.groovy

    )
    class TaskOutputCachingSwiftPerformanceTest extends AbstractTaskOutputCachingPerformanceTest {
        def setup() {
            runner.minimumBaseVersion = "4.5"
        }
    
        def "clean assemble with local cache (swift)"() {
            given:
            runner.tasksToRun = ["assemble"]
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/TaskCreationPerformanceTest.groovy

    )
    class TaskCreationPerformanceTest extends AbstractCrossVersionPerformanceTest {
    
        def "create many tasks"() {
            given:
            runner.tasksToRun = ['help']
            runner.runs = 60
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/VerboseTestOutputPerformanceTest.groovy

    )
    class VerboseTestOutputPerformanceTest extends AbstractCrossVersionPerformanceTest {
    
        def "cleanTest test with verbose test output"() {
            given:
            runner.tasksToRun = ['cleanTest', 'test']
            runner.args = ['-q']
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AutoTestedSamplesUtil.groovy

        String includes = '**/*.groovy **/*.java'
    
        void findSamples(String dir, Closure runner) {
            def sources = findDir(dir)
            def ant = new AntBuilder()
    
            def list = ant.fileScanner {
                fileset(dir: sources, includes: includes)
            }
    
            list.each() { runSamplesFromFile(it, runner) }
        }
    
        static String findDir(String dir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/ShadowPluginSmokeTest.groovy

            and:
            if (GradleContextualExecuter.isConfigCache()) {
                result.assertConfigurationCacheStateStored()
            }
    
            when:
            runner('clean').build()
            shadowJarRunner = runner('shadowJar')
            if (hasDeprecations) {
                shadowJarRunner.expectLegacyDeprecationWarning(FILE_TREE_ELEMENT_GET_MODE_DEPRECATION)
            }
            result = shadowJarRunner.build()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/AbstractGradleVsMavenPerformanceTest.groovy

        final IntegrationTestBuildContext buildContext = new IntegrationTestBuildContext()
    
        GradleVsMavenPerformanceTestRunner runner
    
        def setup() {
            runner = new GradleVsMavenPerformanceTestRunner(
                temporaryFolder,
                new GradleVsMavenBuildExperimentRunner(gradleProfilerReporter, outputDirSelector),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/par/work.go

    	}
    
    	w.running = n
    	w.f = f
    	w.wait.L = &w.mu
    
    	for i := 0; i < n-1; i++ {
    		go w.runner()
    	}
    	w.runner()
    }
    
    // runner executes work in w until both nothing is left to do
    // and all the runners are waiting for work.
    // (Then all the runners return.)
    func (w *Work[T]) runner() {
    	for {
    		// Wait for something to do.
    		w.mu.Lock()
    		for len(w.todo) == 0 {
    			w.waiting++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:54:54 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/TestRetryPluginSmokeTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.testkit.runner.BuildResult
    import org.gradle.testkit.runner.TaskOutcome
    import spock.lang.Issue
    
    class TestRetryPluginSmokeTest extends AbstractSmokeTest {
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. .github/workflows/tests.yml

        - name: Check out code into the Go module directory
          uses: actions/checkout@v4
    
        - name: go mod package cache
          uses: actions/cache@v4
          with:
            path: ~/go/pkg/mod
            key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }}
    
        - name: Tests
          run: GITHUB_ACTION=true GORM_DIALECT=sqlite ./tests/tests_all.sh
    
      mysql:
        strategy:
          matrix:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/main/AnalysisDocumentUtils.kt

    import org.gradle.internal.declarativedsl.evaluator.conventions.findUsedSoftwareTypeNames
    import org.gradle.internal.declarativedsl.evaluator.runner.AnalysisStepResult
    import org.gradle.internal.declarativedsl.evaluator.runner.EvaluationResult
    import org.gradle.internal.declarativedsl.evaluator.runner.stepResultOrPartialResult
    
    
    object AnalysisDocumentUtils {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:40 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top