Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 113 of 113 for It (0.02 sec)

  1. pkg/test/framework/components/echo/echotest/filters_test.go

    		if _, ok := expected[k]; !ok {
    			unexpected[k] = struct{}{}
    		}
    	}
    	for _, i := range got {
    		k := instanceKey(i)
    		// just remove the items rather than looping over expected, if anythings left we missed it
    		delete(expected, k)
    		if _, ok := unexpected[k]; ok {
    			t.Errorf("expected %s to be filtered out", k)
    		}
    	}
    	if len(expected) > 0 {
    		t.Errorf("did not include %v", expected)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/status/server_test.go

    		http.Redirect(w, r, "/redirect-loop", http.StatusMovedPermanently)
    	case "remote-redirect":
    		http.Redirect(w, r, "http://example.com/foo", http.StatusMovedPermanently)
    	case "", "hello/sunnyvale":
    		w.Write([]byte("welcome, it works"))
    	case "status":
    		code, _ := strconv.Atoi(segments[1])
    		w.Header().Set("Location", "/")
    		w.WriteHeader(code)
    	default:
    		return
    	}
    }
    
    func TestNewServer(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/kube.go

    	}
    
    	return operatorCfg.Spec, nil
    }
    
    // installControlPlaneCluster installs the istiod control plane to the given cluster.
    // The cluster is considered a "primary" cluster if it is also a "config cluster", in which case components
    // like ingress will be installed.
    func (i *istioImpl) installControlPlaneCluster(c cluster.Cluster) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top