Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 625 for dial (0.04 sec)

  1. src/crypto/tls/tls.go

    		return nil, err
    	}
    	return conn, nil
    }
    
    // Dial connects to the given network address using net.Dial
    // and then initiates a TLS handshake, returning the resulting
    // TLS connection.
    // Dial interprets a nil configuration as equivalent to
    // the zero configuration; see the documentation of Config
    // for the defaults.
    func Dial(network, addr string, config *Config) (*Conn, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. pkg/kubelet/pluginmanager/operationexecutor/operation_generator.go

    		return fmt.Errorf("%s: %w", errStr, err)
    	}
    
    	if errStr != "" {
    		return errors.New(errStr)
    	}
    
    	return nil
    }
    
    // Dial establishes the gRPC communication with the picked up plugin socket. https://godoc.org/google.golang.org/grpc#Dial
    func dial(unixSocketPath string, timeout time.Duration) (registerapi.RegistrationClient, *grpc.ClientConn, error) {
    	ctx, cancel := context.WithTimeout(context.Background(), timeout)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. src/net/timeout_test.go

    				delay := afterDial.Sub(beforeDial)
    				if delay < d.Timeout {
    					t.Errorf("Dial returned after %v; want ≥%v", delay, d.Timeout)
    				}
    			}
    
    			if perr := parseDialError(err); perr != nil {
    				t.Errorf("unexpected error from Dial: %v", perr)
    			}
    			if nerr, ok := err.(Error); !ok || !nerr.Timeout() {
    				t.Errorf("Dial: %v, want timeout", err)
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. src/internal/nettrace/nettrace.go

    	// ConnectStart is called before a Dial, excluding Dials made
    	// during DNS lookups. In the case of DualStack (Happy Eyeballs)
    	// dialing, this may be called multiple times, from multiple
    	// goroutines.
    	ConnectStart func(network, addr string)
    
    	// ConnectDone is called after a Dial with the results, excluding
    	// Dials made during DNS lookups. It may also be called multiple
    	// times, like ConnectStart.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:57:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/plugin/v1beta1/client.go

    }
    
    func (c *client) API() api.DevicePluginClient {
    	return c.client
    }
    
    func (c *client) SocketPath() string {
    	return c.socket
    }
    
    // dial establishes the gRPC communication with the registered device plugin. https://godoc.org/google.golang.org/grpc#Dial
    func dial(unixSocketPath string) (api.DevicePluginClient, *grpc.ClientConn, error) {
    	ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
    	defer cancel()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:35:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. src/log/syslog/syslog.go

    func New(priority Priority, tag string) (*Writer, error) {
    	return Dial("", "", priority, tag)
    }
    
    // Dial establishes a connection to a log daemon by connecting to
    // address raddr on the specified network. Each write to the returned
    // writer sends a log message with the facility and severity
    // (from priority) and tag. If tag is empty, the [os.Args][0] is used.
    // If network is empty, Dial will connect to the local syslog server.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. src/net/tcpsock_posix.go

    		}
    	}
    	fd, err := internetSocket(ctx, sd.network, laddr, raddr, syscall.SOCK_STREAM, proto, "dial", ctrlCtxFn)
    
    	// TCP has a rarely used mechanism called a 'simultaneous connection' in
    	// which Dial("tcp", addr1, addr2) run on the machine at addr1 can
    	// connect to a simultaneous Dial("tcp", addr2, addr1) run on the machine
    	// at addr2, without either machine executing Listen. If laddr == nil,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. src/net/textproto/textproto.go

    	}
    }
    
    // Close closes the connection.
    func (c *Conn) Close() error {
    	return c.conn.Close()
    }
    
    // Dial connects to the given address on the given network using [net.Dial]
    // and then returns a new [Conn] for the connection.
    func Dial(network, addr string) (*Conn, error) {
    	c, err := net.Dial(network, addr)
    	if err != nil {
    		return nil, err
    	}
    	return NewConn(c), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. src/net/iprawsock.go

    	}
    	return
    }
    
    func newIPConn(fd *netFD) *IPConn { return &IPConn{conn{fd}} }
    
    // DialIP acts like [Dial] for IP networks.
    //
    // The network must be an IP network name; see func Dial for details.
    //
    // If laddr is nil, a local address is automatically chosen.
    // If the IP field of raddr is nil or an unspecified IP address, the
    // local system is assumed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. src/net/rpc/jsonrpc/client.go

    func NewClient(conn io.ReadWriteCloser) *rpc.Client {
    	return rpc.NewClientWithCodec(NewClientCodec(conn))
    }
    
    // Dial connects to a JSON-RPC server at the specified network address.
    func Dial(network, address string) (*rpc.Client, error) {
    	conn, err := net.Dial(network, address)
    	if err != nil {
    		return nil, err
    	}
    	return NewClient(conn), err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top