Home | History | Annotate | Download | only in grpc

Lines Matching refs:Dial

80 // The following errors are returned from Dial and DialContext
97 // dialOptions configure a Dial call. dialOptions are set by the DialOption
98 // values passed to Dial.
111 // This is used by v1 balancer dial option WithBalancer to support v1
112 // balancer, and also by WithBalancerName dial option.
298 // WithBlock returns a DialOption which makes caller of Dial blocks until the underlying
299 // connection is up. Without this, Dial returns immediately and connecting the server
373 // FailOnNonTempDialError returns a DialOption that specifies if gRPC fails on non-temporary dial errors.
422 // parent. This function is used in nested channel creation (e.g. grpclb dial).
438 // Dial creates a client connection to the given target.
439 func Dial(target string, opts ...DialOption) (*ClientConn, error) {
444 // a non-blocking dial (the function won't wait for connections to be
446 // dial, use WithBlock() dial option.
617 // A blocking dial blocks until the clientConn is ready.
767 // Only look at balancer types and switch balancer if balancer dial
798 // Balancer dial option was set, and this is the first time handling
953 grpclog.Warningf("Failed to dial %s: %v; please retry.", ac.addrs[0].Addr, err)
1218 // This will be the duration that dial gets to finish.
1221 // Give dial more time as we keep failing to connect.