Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for testTimeouts (0.22 sec)

  1. guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java

        service.runSecondBarrier.await();
        service.awaitTerminated();
        // Only called once overall.
        assertEquals(1, service.numberOfTimesSchedulerCalled.get());
      }
    
      public void testTimeout() {
        // Create a service whose executor will never run its commands
        Service service =
            new AbstractScheduledService() {
              @Override
              protected Scheduler scheduler() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/timeout_test.go

    		select {
    		case resp := <-responseCh:
    			_, err := w.Write([]byte(resp))
    			writeErrCh <- err
    		case panicReason := <-panicCh:
    			panic(panicReason)
    		}
    	})
    }
    
    func TestTimeout(t *testing.T) {
    	origReallyCrash := runtime.ReallyCrash
    	runtime.ReallyCrash = false
    	defer func() {
    		runtime.ReallyCrash = origReallyCrash
    	}()
    
    	sendResponse := make(chan string, 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. tests/integration/pilot/analyze_test.go

    						g.Expect(line).To(ContainSubstring(msg.ConflictingGateways.Code()))
    						foundCount++
    					}
    				}
    			}
    			g.Expect(foundCount).To(Equal(6))
    		})
    }
    
    func TestTimeout(t *testing.T) {
    	t.Skip("https://github.com/istio/istio/issues/25893")
    	// nolint: staticcheck
    	framework.
    		NewTest(t).
    		RequiresSingleCluster().
    		Run(func(t framework.TestContext) {
    			g := NewWithT(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. pkg/test/framework/features/allowlist.txt

    pilot,TestJsonInputFile
    pilot,TestJsonOutput
    pilot,TestJsonOutput/invalid_file_does_not_output_error_in_stdout
    pilot,TestJsonOutput/no_other_output_except_analysis_json_output
    pilot,TestKubeOnly
    pilot,TestNamespace
    pilot,TestTimeout
    pilot,TestValidation
    pilot,TestWebhook
    galley_test,TestAllNamespaces
    galley_test,TestConversion/config.istio.io_v1alpha2_rule
    galley_test,TestConversion/core_v1_namespace
    galley_test,TestConversion/core_v1_service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 103.9K bytes
    - Viewed (0)
Back to top