Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for testIde (0.22 sec)

  1. src/net/http/serve_test.go

    	run(t, testServeWithSlashRedirectKeepsQueryString, []testMode{http1Mode})
    }
    func testServeWithSlashRedirectKeepsQueryString(t *testing.T, mode testMode) {
    	writeBackQuery := func(w ResponseWriter, r *Request) {
    		fmt.Fprintf(w, "%s", r.URL.RawQuery)
    	}
    
    	mux := NewServeMux()
    	mux.HandleFunc("/testOne", writeBackQuery)
    	mux.HandleFunc("/testTwo/", writeBackQuery)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    // Two subsequent requests and verify their response is the same.
    // The response from the server is our own IP:port
    func TestTransportKeepAlives(t *testing.T) { run(t, testTransportKeepAlives, []testMode{http1Mode}) }
    func testTransportKeepAlives(t *testing.T, mode testMode) {
    	ts := newClientServerTest(t, mode, hostPortHandler).ts
    
    	c := ts.Client()
    	for _, disableKeepAlive := range []bool{false, true} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/informers_test.go

    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/monitoring/monitortest"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func TestExistingPodAddedWhenNsLabeled(t *testing.T) {
    	setupLogging()
    	NodeName = "testnode"
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	pod := &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "test",
    			Namespace: "test",
    		},
    		Spec: corev1.PodSpec{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. internal/http/listener_test.go

    	}
    
    	for testIdx, testCase := range testCases {
    		listener, listenErrs := newHTTPListener(context.Background(),
    			testCase.serverAddrs,
    			TCPOptions{},
    		)
    		for i, expectedListenErr := range testCase.expectedListenErrs {
    			if !expectedListenErr {
    				if listenErrs[i] != nil {
    					t.Fatalf("Test %d:, listenErrs[%d] error: expected = <nil>, got = %v", testIdx+1, i, listenErrs[i])
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/ops.mlir

      %0 = "tfl.logical_not"(%arg0) : (tensor<? x i32>) -> tensor<? x i32>
      func.return %0 : tensor<? x i32>
    }
    
    // Binary math ops
    // -----
    
    // CHECK-LABEL: testAdd
    func.func @testAdd(tensor<? x i32>, tensor<? x i32>) -> tensor<? x i32> {
    ^bb0(%arg0: tensor<? x i32>, %arg1: tensor<? x i32>):
      // TODO(jpienaar): Enable specifying label of enum for parsing.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
Back to top