Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestStealOrder (0.1 sec)

  1. src/runtime/proc_test.go

    			for j := j0; j < j1; j++ {
    				for k := k0; k < k1; k++ {
    					C[i][j] += A[i][k] * B[k][j]
    				}
    			}
    		}
    	}
    	if done != nil {
    		done <- struct{}{}
    	}
    }
    
    func TestStealOrder(t *testing.T) {
    	runtime.RunStealOrderTest()
    }
    
    func TestLockOSThreadNesting(t *testing.T) {
    	if runtime.GOARCH == "wasm" {
    		t.Skip("no threads on wasm yet")
    	}
    
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
Back to top