Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 519 for Parallel (0.17 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiIdeaModelCrossVersionSpec.groovy

            dependency.artifact(classifier: 'sources')
            dependency.artifact(classifier: 'javadoc')
            dependency.publish()
    
            projectDir.file("gradle.properties") << """
                org.gradle.parallel=$parallel
            """
            file('build.gradle').text = """
    subprojects {
        apply plugin: 'java'
    }
    
    project(':impl') {
        apply plugin: 'idea'
    
        repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/testing/internal/testdeps/deps.go

    		Log:             os.Stderr,
    		Timeout:         timeout,
    		Limit:           limit,
    		MinimizeTimeout: minimizeTimeout,
    		MinimizeLimit:   minimizeLimit,
    		Parallel:        parallel,
    		Seed:            seed,
    		Types:           types,
    		CorpusDir:       corpusDir,
    		CacheDir:        cacheDir,
    	})
    	if err == ctx.Err() {
    		return nil
    	}
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

            }
        }
    
        public Date getStartTime() {
            return request.getStartTime();
        }
    
        public boolean isParallel() {
            return parallel;
        }
    
        public void setParallel(boolean parallel) {
            this.parallel = parallel;
        }
    
        public RepositorySystemSession getRepositorySession() {
            return repositorySystemSession;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. docs/es/docs/async.md

    <img src="https://fastapi.tiangolo.com/img/async/parallel-burgers/parallel-burgers-01.png" alt="illustration">
    
    Entonces finalmente es tu turno, haces tu pedido de 2 hamburguesas 🍔 impresionantes para esa persona 😍 y para ti.
    
    Pagas 💸.
    
    <img src="https://fastapi.tiangolo.com/img/async/parallel-burgers/parallel-burgers-02.png" alt="illustration">
    
    El cajero va a la cocina 👨‍🍳.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/RealWorldNativePluginPerformanceTest.groovy

        def setup() {
            runner.minimumBaseVersion = "4.0"
        }
    
        def "build with #parallelWorkers parallel workers"() {
            given:
            runner.tasksToRun = ['build']
            runner.warmUpRuns = 5
            runner.runs = 10
    
            runner.args += ["-Dorg.gradle.parallel=${parallelWorkers ? true : false}"]
            if (parallelWorkers) {
                runner.args += ["--max-workers=$parallelWorkers".toString()]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            index.assertHasNoDuration()
            index.assertHasNoSuccessRate()
            index.assertHasNoNavLinks()
        }
    
        def "generates report with aggregated index page for build with no failures - #numThreads parallel thread(s)"() {
            given:
            report = reportWithMaxThreads(numThreads)
            def testTestResults = passingBuildResults()
    
            when:
            report.generateReport(testTestResults, reportDir)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

                // TODO - should fail
                succeeds 'b', 'a'
            }
        }
    
        void 'finalizer tasks are executed as expected in parallel builds'() {
            setupMultipleProjects()
            executer.beforeExecute {
                withArguments('--parallel')
            }
    
            expect:
            2.times {
                succeeds 'a'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. src/internal/fuzz/fuzz.go

    	if err := ctx.Err(); err != nil {
    		return err
    	}
    	if opts.Log == nil {
    		opts.Log = io.Discard
    	}
    	if opts.Parallel == 0 {
    		opts.Parallel = runtime.GOMAXPROCS(0)
    	}
    	if opts.Limit > 0 && int64(opts.Parallel) > opts.Limit {
    		// Don't start more workers than we need.
    		opts.Parallel = int(opts.Limit)
    	}
    
    	c, err := newCoordinator(opts)
    	if err != nil {
    		return err
    	}
    
    	if opts.Timeout > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. internal/cachevalue/cache_test.go

    	defer sl.Stop()
    
    	select {
    	case <-sl.C:
    	case <-ctx.Done():
    		return ctx.Err()
    	}
    
    	return nil
    }
    
    func TestCacheCtx(t *testing.T) {
    	cache := New[time.Time]()
    	t.Parallel()
    	cache.InitOnce(2*time.Second, Opts{},
    		func(ctx context.Context) (time.Time, error) {
    			return time.Now(), slowCaller(ctx)
    		},
    	)
    
    	ctx, cancel := context.WithCancel(context.Background())
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. src/os/os_windows_test.go

    func TestOneDrive(t *testing.T) {
    	t.Parallel()
    
    	dir, err := findOneDriveDir()
    	if err != nil {
    		t.Skipf("Skipping, because we did not find OneDrive directory: %v", err)
    	}
    	testDirStats(t, dir)
    }
    
    func TestWindowsDevNullFile(t *testing.T) {
    	t.Parallel()
    
    	f1, err := os.Open("NUL")
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer f1.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top