Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 488 for Parallel (0.21 sec)

  1. src/cmd/go/internal/par/work.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package par implements parallel execution helpers.
    package par
    
    import (
    	"errors"
    	"math/rand"
    	"sync"
    	"sync/atomic"
    )
    
    // Work manages a set of work items to be executed in parallel, at most once each.
    // The items in the set must all be valid map keys.
    type Work[T comparable] struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:54:54 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

            }
            try {
                final long start = System.currentTimeMillis();
                final Stream<QueryLog> stream = Stream.of(queryLogs);
                if (parallel) {
                    stream.parallel();
                }
                final SuggestItem[] array = stream
                        .flatMap(queryLog -> contentsParser
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. testing/performance/src/templates/archivePerformanceProject/gradle.properties

    org.gradle.jvmargs=-Xms256m -Xmx256m
    org.gradle.parallel=true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 87 bytes
    - Viewed (0)
  4. testing/performance/src/templates/generateLotsOfDeprecationWarnings/gradle.properties

    org.gradle.jvmargs=-Xms1G -Xmx1G
    org.gradle.parallel=true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 83 bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidBuildPerformanceTest.groovy

        def "run #tasks"() {
            given:
            AndroidTestProject testProject = androidTestProject
            testProject.configure(runner)
            runner.tasksToRun = tasks.split(' ')
            runner.args.add('-Dorg.gradle.parallel=true')
            runner.warmUpRuns = warmUpRuns
            runner.runs = runs
            if (IncrementalAndroidTestProject.NOW_IN_ANDROID == testProject) {
                configureRunnerSpecificallyForNowInAndroid()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/os/path_windows_test.go

    			want = strings.ReplaceAll(want, veryLong, "long")
    			t.Errorf("addExtendedPrefix(%#q) = %#q; want %#q", in, got, want)
    		}
    	}
    }
    
    func TestMkdirAllLongPath(t *testing.T) {
    	t.Parallel()
    
    	tmpDir := t.TempDir()
    	path := tmpDir
    	for i := 0; i < 100; i++ {
    		path += `\another-path-component`
    	}
    	if err := os.MkdirAll(path, 0777); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:37:32 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. docs/em/docs/async.md

    <img src="/img/async/parallel-burgers/parallel-burgers-04.png" class="illustration">
    
    โคด๏ธ ๐Ÿ‘† ๐Ÿง/๐Ÿณ ๐Ÿ‘ถ ๐Ÿ‘ถ ๐Ÿ˜’ ๐Ÿ‘Ÿ ๐Ÿ”™ โฎ๏ธ ๐Ÿ‘† ๐Ÿ”, โฎ๏ธ ๐Ÿ“ ๐Ÿ•ฐ โŒ› ๐Ÿ‘ถ ๐Ÿ“ค ๐Ÿšช โฒ.
    
    <img src="/img/async/parallel-burgers/parallel-burgers-05.png" class="illustration">
    
    ๐Ÿ‘† โœŠ ๐Ÿ‘† ๐Ÿ” &amp; ๐Ÿšถ ๐Ÿ“ โฎ๏ธ ๐Ÿ‘† ๐Ÿฅฐ.
    
    ๐Ÿ‘† ๐Ÿด ๐Ÿ‘ซ, &amp; ๐Ÿ‘† ๐Ÿ”จ. โน
    
    <img src="/img/async/parallel-burgers/parallel-burgers-06.png" class="illustration">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. src/runtime/runtime-gdb_test.go

    	if runtime.GOOS == "netbsd" {
    		testenv.SkipFlaky(t, 15603)
    	}
    	if flag.Lookup("test.parallel").Value.(flag.Getter).Get().(int) < 2 {
    		// It is possible that this test will hang for a long time due to an
    		// apparent GDB bug reported in https://go.dev/issue/37405.
    		// If test parallelism is high enough, that might be ok: the other parallel
    		// tests will finish, and then this test will finish right before it would
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top