Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for TestServer (0.15 sec)

  1. cmd/kube-apiserver/app/testing/testserver.go

    	// an apiserver version skew scenario where all apiservers use the same proxyCA to verify client connections.
    	ProxyCA *ProxyCA
    }
    
    // TestServer return values supplied by kube-test-ApiServer
    type TestServer struct {
    	ClientConfig      *restclient.Config        // Rest client config
    	ServerOpts        *options.ServerRunOptions // ServerOpts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/testing/testserver.go

    }
    
    // TearDownFunc is to be called to tear down a test server.
    type TearDownFunc func()
    
    // TestServerInstanceOptions Instance options the TestServer
    type TestServerInstanceOptions struct {
    }
    
    // TestServer return values supplied by kube-test-ApiServer
    type TestServer struct {
    	ClientConfig    *restclient.Config                              // Rest client config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 9K bytes
    - Viewed (1)
  3. cmd/kube-controller-manager/app/testing/testserver.go

    	logsapi.ReapplyHandling = logsapi.ReapplyHandlingIgnoreUnchanged
    }
    
    // TearDownFunc is to be called to tear down a test server.
    type TearDownFunc func()
    
    // TestServer return values supplied by kube-test-ApiServer
    type TestServer struct {
    	LoopbackClientConfig *restclient.Config // Rest client config using the magic token
    	Options              *options.KubeControllerManagerOptions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. cmd/kube-scheduler/app/testing/testserver.go

    	logsapi.ReapplyHandling = logsapi.ReapplyHandlingIgnoreUnchanged
    }
    
    // TearDownFunc is to be called to tear down a test server.
    type TearDownFunc func()
    
    // TestServer return values supplied by kube-test-ApiServer
    type TestServer struct {
    	LoopbackClientConfig *restclient.Config // Rest client config using the magic token
    	Options              *options.Options
    	Config               *kubeschedulerconfig.Config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 10:35:59 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/plugin_test.go

    		b.Log("to run a standalone server, run:")
    		b.Log("go run k8s.io/apiserver/pkg/admission/plugin/webhook/testing/main/main.go")
    		testServer := webhooktesting.NewTestServer(b)
    		testServer.StartTLS()
    		defer testServer.Close()
    		testServerURL = testServer.URL
    	}
    
    	serverURL, err := url.ParseRequestURI(testServerURL)
    	if err != nil {
    		b.Fatalf("this should never happen? %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. cni/pkg/plugin/cnieventclient_test.go

    	testServer := httptest.NewServer(http.HandlerFunc(func(res http.ResponseWriter, req *http.Request) {
    		res.WriteHeader(http.StatusOK)
    		res.Write([]byte("server happy"))
    	}))
    	defer func() { testServer.Close() }()
    
    	cniC := fakeCNIEventClient(testServer.URL)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/test.go

    )
    
    // NewTestServer constructs a new [TestServer]
    // that will sign its tree with the given signer key
    // (see [golang.org/x/mod/sumdb/note])
    // and fetch new records as needed by calling gosum.
    func NewTestServer(signer string, gosum func(path, vers string) ([]byte, error)) *TestServer {
    	return &TestServer{signer: signer, gosum: gosum}
    }
    
    // A TestServer is an in-memory implementation of [ServerOps] for testing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/plugin_test.go

    		b.Log("to run a standalone server, run:")
    		b.Log("go run k8s.io/apiserver/pkg/admission/plugin/webhook/testing/main/main.go")
    		testServer := webhooktesting.NewTestServer(b)
    		testServer.StartTLS()
    		defer testServer.Close()
    		testServerURL = testServer.URL
    	}
    
    	objectInterfaces := webhooktesting.NewObjectInterfacesForTest()
    
    	serverURL, err := url.ParseRequestURI(testServerURL)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. pkg/kubelet/client/kubelet_client_test.go

    	}
    	if rt == nil {
    		t.Error("rt should not be nil")
    	}
    }
    
    func TestMakeInsecureTransport(t *testing.T) {
    	testServer := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		w.WriteHeader(http.StatusOK)
    	}))
    	defer testServer.Close()
    
    	testURL, err := url.Parse(testServer.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    	_, portStr, err := net.SplitHostPort(testURL.Host)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 01:34:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/status/ready/probe_test.go

    	g.Expect(probe.atleastOnceReady).Should(BeFalse())
    	server.Close()
    
    	server = testserver.CreateAndStartServer(liveServerStats)
    	probe.AdminPort = uint16(server.Listener.Addr().(*net.TCPAddr).Port)
    	err = probe.Check()
    	g.Expect(err).NotTo(HaveOccurred())
    	g.Expect(probe.atleastOnceReady).Should(BeTrue())
    	server.Close()
    
    	server = testserver.CreateAndStartServer(noServerStats)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top