Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 96 for Dialer (0.18 sec)

  1. src/net/http/socks_bundle.go

    // connecting to the command target address from the proxy server.
    func (c *socksConn) BoundAddr() net.Addr {
    	if c == nil {
    		return nil
    	}
    	return c.boundAddr
    }
    
    // A Dialer holds SOCKS-specific options.
    type socksDialer struct {
    	cmd          socksCommand // either CmdConnect or cmdBind
    	proxyNetwork string       // network between a proxy server and a client
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    			grpc.WithStreamInterceptor(otelgrpc.StreamClientInterceptor(tracingOpts...)))
    	}
    	if egressDialer != nil {
    		dialer := func(ctx context.Context, addr string) (net.Conn, error) {
    			if strings.Contains(addr, "//") {
    				// etcd client prior to 3.5 passed URLs to dialer, normalize to address
    				u, err := url.Parse(addr)
    				if err != nil {
    					return nil, err
    				}
    				addr = u.Host
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. pkg/client/tests/remotecommand_test.go

    		resp: &http.Response{
    			StatusCode: http.StatusSwitchingProtocols,
    			Body:       ioutil.NopCloser(&bytes.Buffer{}),
    		},
    	}
    	dialer := spdy.NewDialer(upgrader, &http.Client{Transport: upgrader}, "POST", &url.URL{Host: "something.com", Scheme: "https"})
    	conn, protocol, err := dialer.Dial("protocol1")
    	if err != nil {
    		t.Fatal(err)
    	}
    	if conn != upgrader.conn {
    		t.Errorf("unexpected connection: %#v", conn)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 06:08:18 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. src/net/lookup.go

    	// not enabled by default because it may affect compatibility
    	// with resolvers that process AAAA queries incorrectly.
    	StrictErrors bool
    
    	// Dial optionally specifies an alternate dialer for use by
    	// Go's built-in DNS resolver to make TCP and UDP connections
    	// to DNS services. The host in the address parameter will
    	// always be a literal IP address and not a host name, and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  5. src/net/timeout_test.go

    			// the kernel's accept queue is, and we don't want to accidentally saturate
    			// it with concurrent calls. (That could cause the Dial to fail with
    			// ECONNREFUSED or ECONNRESET instead of a timeout error.)
    			d := Dialer{Timeout: tt.initialTimeout}
    			delta := tt.initialDelta
    
    			var (
    				beforeDial time.Time
    				afterDial  time.Time
    				err        error
    			)
    			for {
    				if delta != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. src/net/tcpsock_test.go

    	// after calling Close on a Listener, the fake net implementation would
    	// erroneously Accept a connection dialed before the call to Close.
    
    	ln := newLocalListener(t, "tcp")
    	defer ln.Close()
    
    	var wg sync.WaitGroup
    	ctx, cancel := context.WithCancel(context.Background())
    
    	d := &Dialer{}
    	for n := 2; n > 0; n-- {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware_test.go

    }
    
    func TestProxyUpgrade(t *testing.T) {
    
    	localhostPool := x509.NewCertPool()
    	if !localhostPool.AppendCertsFromPEM(localhostCert) {
    		t.Errorf("error setting up localhostCert pool")
    	}
    	var d net.Dialer
    
    	testcases := map[string]struct {
    		ServerFunc       func(http.Handler) *httptest.Server
    		ProxyTransport   http.RoundTripper
    		UpgradeTransport UpgradeRequestRoundTripper
    		ExpectedAuth     string
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel_test.go

    	// a request to TunnelingHandler using new portforward version 2.
    	tunnelingURL, err := url.Parse(tunnelingServer.URL)
    	require.NoError(t, err)
    	dialer, err := portforward.NewSPDYOverWebsocketDialer(tunnelingURL, &restconfig.Config{Host: tunnelingURL.Host})
    	require.NoError(t, err)
    	spdyClient, protocol, err := dialer.Dial(constants.PortForwardV1Name)
    	require.NoError(t, err)
    	assert.Equal(t, constants.PortForwardV1Name, protocol)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 02:21:50 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/plugin/v1beta1/stub.go

    		grpc.WithTransportCredentials(insecure.NewCredentials()),
    		grpc.WithBlock(),
    		grpc.WithContextDialer(func(ctx context.Context, addr string) (net.Conn, error) {
    			return (&net.Dialer{}).DialContext(ctx, "unix", addr)
    		}))
    	if err != nil {
    		return err
    	}
    	defer conn.Close()
    	client := pluginapi.NewRegistrationClient(conn)
    	reqt := &pluginapi.RegisterRequest{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 11:19:10 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/sds/sdsservice_test.go

    	var opts []grpc.DialOption
    
    	opts = append(opts, grpc.WithTransportCredentials(insecure.NewCredentials()), grpc.WithContextDialer(func(ctx context.Context, addr string) (net.Conn, error) {
    		var d net.Dialer
    		return d.DialContext(ctx, "unix", socket)
    	}))
    
    	conn, err := grpc.Dial(socket, opts...)
    	if err != nil {
    		return nil, err
    	}
    
    	return conn, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 20:12:58 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top