Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SkipIf (0.13 sec)

  1. tests/integration/pilot/common/routing.go

    	if len(t.Clusters().ByNetwork()) != 1 {
    		// Consistent hashing does not work for multinetwork. The first request will consistently go to a
    		// gateway, but that gateway will tcp_proxy it to a random pod.
    		t.Skipf("multi-network is not supported")
    	}
    	for _, app := range []echo.Instances{t.Apps.A, t.Apps.B} {
    		app := app
    		for _, c := range app {
    			c := c
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. src/crypto/x509/verify_test.go

    	for _, test := range verifyTests {
    		t.Run(test.name, func(t *testing.T) {
    			testVerify(t, test, false)
    		})
    	}
    }
    
    func TestSystemVerify(t *testing.T) {
    	if runtime.GOOS != "windows" {
    		t.Skipf("skipping verify test using system APIs on %q", runtime.GOOS)
    	}
    
    	for _, test := range verifyTests {
    		t.Run(test.name, func(t *testing.T) {
    			if test.systemSkip {
    				t.SkipNow()
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    					if time.Since(t0) < *MaxWriteWaitBeforeConnReuse/2 {
    						mu.Lock()
    						got := logbuf.String()
    						mu.Unlock()
    						t.Fatalf("i=%d: Do = %v; log:\n%s", i, err, got)
    					}
    					t.Skipf("connection likely wasn't recycled within %d, interfering with actual test; skipping", *MaxWriteWaitBeforeConnReuse)
    				}
    				res.Body.Close()
    				if res.Request != req {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top