Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for sehf1 (0.09 sec)

  1. src/runtime/runtime-seh_windows_test.go

    	}
    	return pcs[:n]
    }
    
    // SEH unwinding does not report inlined frames.
    //
    //go:noinline
    func sehf3(pan bool) []uintptr {
    	return sehf4(pan)
    }
    
    //go:noinline
    func sehf4(pan bool) []uintptr {
    	var pcs []uintptr
    	if pan {
    		panic("sehf4")
    	}
    	pcs = sehCallers()
    	return pcs
    }
    
    func testSehCallersEqual(t *testing.T, pcs []uintptr, want []string) {
    	t.Helper()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 16:52:06 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/typeinst0.go

    // Parameterized types containing parameterized types
    
    type T3[P any] List[P]
    
    var _ T3[int] = T3[int](List[int]{1, 2, 3})
    
    // Self-recursive generic types are not permitted
    
    type self1[P any] self1 /* ERROR "invalid recursive type" */ [P]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	           Issuer: C = US, ST = My State, L = My City, O = My Org, O = My Unit, CN = self1
    	           Validity
    	               Not Before: May  2 00:25:12 2024 GMT
    	               Not After : Apr  8 00:25:12 2124 GMT
    	           Subject: C = US, ST = My State, L = My City, O = My Org, O = My Unit, CN = self1
    	           Subject Public Key Info:
    	               Public Key Algorithm: rsaEncryption
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top