Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 156 for Dialer (0.1 sec)

  1. pkg/test/echo/server/instance.go

    	Metrics               int
    	TLSCert               string
    	TLSKey                string
    	Version               string
    	UDSServer             string
    	Cluster               string
    	Dialer                common.Dialer
    	IstioVersion          string
    	Namespace             string
    	DisableALPN           bool
    }
    
    func (c Config) String() string {
    	var b strings.Builder
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 07:54:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. internal/grid/debug.go

    	if err != nil {
    		return nil, err
    	}
    	dialer := &net.Dialer{
    		Timeout: 5 * time.Second,
    	}
    	var res TestGrid
    	res.Hosts = hosts
    	ready := make(chan struct{})
    	ctx, cancel := context.WithCancel(context.Background())
    	res.cancel = cancel
    	for i, host := range hosts {
    		manager, err := NewManager(ctx, ManagerOptions{
    			Dialer: dialer.DialContext,
    			Local:  host,
    			Hosts:  hosts,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. pkg/client/tests/portfoward_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			url, _ := url.Parse(server.URL)
    			dialer := spdy.NewDialer(upgrader, &http.Client{Transport: transport}, "POST", url)
    
    			stopChan := make(chan struct{}, 1)
    			readyChan := make(chan struct{})
    
    			pf, err := New(dialer, test.ports, stopChan, readyChan, os.Stdout, os.Stderr)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 06:08:18 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. src/net/tcpconn_keepalive_test.go

    	})
    	ls := (&streamListener{Listener: ln}).newLocalServer()
    	defer ls.teardown()
    	if err := ls.buildup(handler); err != nil {
    		t.Fatal(err)
    	}
    
    	for _, cfg := range testConfigs {
    		d := Dialer{
    			KeepAlive:       defaultTCPKeepAliveIdle, // should be ignored
    			KeepAliveConfig: cfg}
    		c, err := d.Dial("tcp", ls.Listener.Addr().String())
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer c.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/net/iprawsock_posix.go

    	switch network {
    	case "ip", "ip4", "ip6":
    	default:
    		return nil, UnknownNetworkError(sd.network)
    	}
    	ctrlCtxFn := sd.Dialer.ControlContext
    	if ctrlCtxFn == nil && sd.Dialer.Control != nil {
    		ctrlCtxFn = func(ctx context.Context, network, address string, c syscall.RawConn) error {
    			return sd.Dialer.Control(network, address, c)
    		}
    	}
    	fd, err := internetSocket(ctx, network, laddr, raddr, syscall.SOCK_RAW, proto, "dial", ctrlCtxFn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. cmd/grid.go

    	hosts, local := eps.GridHosts()
    	lookupHost := globalDNSCache.LookupHost
    	g, err := grid.NewManager(ctx, grid.ManagerOptions{
    		// Pass Dialer for websocket grid, make sure we do not
    		// provide any DriveOPTimeout() function, as that is not
    		// useful over persistent connections.
    		Dialer:       grid.ContextDialer(xhttp.DialContextWithLookupHost(lookupHost, xhttp.NewInternodeDialContext(rest.DefaultTimeout, globalTCPOptions.ForWebsocket()))),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. pkg/test/echo/server/endpoint/instance.go

    type Config struct {
    	IsServerReady IsServerReadyFunc
    	Version       string
    	Cluster       string
    	TLSCert       string
    	TLSKey        string
    	UDSServer     string
    	Dialer        common.Dialer
    	Port          *common.Port
    	ListenerIP    string
    	IstioVersion  string
    	Namespace     string
    	DisableALPN   bool
    }
    
    // Instance of an endpoint that serves the Echo application on a single port/protocol.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. src/net/tcpsock_plan9.go

    	}
    	if raddr == nil {
    		return nil, errMissingAddress
    	}
    	fd, err := dialPlan9(ctx, sd.network, laddr, raddr)
    	if err != nil {
    		return nil, err
    	}
    	return newTCPConn(fd, sd.Dialer.KeepAlive, sd.Dialer.KeepAliveConfig, testPreHookSetKeepAlive, testHookSetKeepAlive), nil
    }
    
    func (ln *TCPListener) ok() bool { return ln != nil && ln.fd != nil && ln.fd.ctl != nil }
    
    func (ln *TCPListener) accept() (*TCPConn, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. doc/next/6-stdlib/99-minor/net/62254.md

    The new type [KeepAliveConfig] permits fine-tuning the keep-alive
    options for TCP connections, via a new [TCPConn.SetKeepAliveConfig]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 205 bytes
    - Viewed (0)
  10. pkg/kubelet/certificate/transport.go

    	if clientConfig.Transport != nil || clientConfig.Dial != nil {
    		return nil, fmt.Errorf("there is already a transport or dialer configured")
    	}
    
    	d := connrotation.NewDialer((&net.Dialer{Timeout: 30 * time.Second, KeepAlive: 30 * time.Second}).DialContext)
    
    	if clientCertificateManager != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 08 13:57:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
Back to top