Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test10303 (0.17 sec)

  1. src/cmd/cgo/internal/test/cgo_test.go

    func Test9510(t *testing.T)                  { test9510(t) }
    func Test9557(t *testing.T)                  { test9557(t) }
    func Test10303(t *testing.T)                 { test10303(t, 10) }
    func Test11925(t *testing.T)                 { test11925(t) }
    func Test12030(t *testing.T)                 { test12030(t) }
    func Test14838(t *testing.T)                 { test14838(t) }
    func Test17065(t *testing.T)                 { test17065(t) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/test.go

    	return issue8331Var
    }
    
    // issue 10303
    
    func test10303(t *testing.T, n int) {
    	if runtime.Compiler == "gccgo" {
    		t.Skip("gccgo permits C pointers on the stack")
    	}
    
    	// Run at a few different stack depths just to avoid an unlucky pass
    	// due to variables ending up on different pages.
    	if n > 0 {
    		test10303(t, n-1)
    	}
    	if t.Failed() {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    func TestImageLocalityPriority(t *testing.T) {
    	test40250 := v1.PodSpec{
    		Containers: []v1.Container{
    			{
    
    				Image: "gcr.io/40",
    			},
    			{
    				Image: "gcr.io/250",
    			},
    		},
    	}
    
    	test40300 := v1.PodSpec{
    		Containers: []v1.Container{
    			{
    				Image: "gcr.io/40",
    			},
    			{
    				Image: "gcr.io/300",
    			},
    		},
    	}
    
    	testMinMax := v1.PodSpec{
    		Containers: []v1.Container{
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top