Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 1,023 for Parallel (0.24 sec)

  1. platforms/documentation/docs/src/snippets/performance/parallelTestExecution/kotlin/settings.gradle.kts

    rootProject.name = "parallel-test-execution"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 45 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator_test.go

    	ac.Event.Level = auditinternal.LevelMetadata
    	return ctx
    }
    
    func TestUnsafeConversions(t *testing.T) {
    	t.Parallel()
    
    	// needs to be large to force allocations so we pick a random value between [1024, 2048]
    	size := utilrand.IntnRange(1024, 2048+1)
    
    	t.Run("toBytes semantics", func(t *testing.T) {
    		t.Parallel()
    
    		s := utilrand.String(size)
    		b := toBytes(s)
    		if len(b) != size {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  3. src/io/pipe.go

    // the written data.
    // The data is copied directly from the Write to the corresponding
    // Read (or Reads); there is no internal buffering.
    //
    // It is safe to call Read and Write in parallel with each other or with Close.
    // Parallel calls to Read and parallel calls to Write are also safe:
    // the individual calls will be gated sequentially.
    func Pipe() (*PipeReader, *PipeWriter) {
    	pw := &PipeWriter{r: PipeReader{pipe: pipe{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:34:35 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/runtime/nbpipe_pipe_test.go

    // license that can be found in the LICENSE file.
    
    //go:build aix || darwin
    
    package runtime_test
    
    import (
    	"runtime"
    	"syscall"
    	"testing"
    )
    
    func TestSetNonblock(t *testing.T) {
    	t.Parallel()
    
    	r, w, errno := runtime.Pipe()
    	if errno != 0 {
    		t.Fatal(syscall.Errno(errno))
    	}
    	defer func() {
    		runtime.Close(r)
    		runtime.Close(w)
    	}()
    
    	checkIsPipe(t, r, w)
    
    	runtime.SetNonblock(r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 03 20:47:17 UTC 2022
    - 706 bytes
    - Viewed (0)
  10. 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)
Back to top