Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 102 for dial (0.04 sec)

  1. src/net/http/transport_internal_test.go

    							StatusCode: 200,
    						}, nil
    					}
    					roundTripped = true
    					return nil, http2noCachedConnError{}
    				})
    			},
    		},
    		DialTLS: func(_, _ string) (net.Conn, error) {
    			tc, err := tls.Dial("tcp", addr, &tls.Config{
    				InsecureSkipVerify: true,
    				NextProtos:         []string{"foo"},
    			})
    			if err != nil {
    				return nil, err
    			}
    			if err := tc.Handshake(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:57:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/plugin/plugin.go

    	p.Lock()
    	defer p.Unlock()
    
    	if p.conn != nil {
    		return p.conn, nil
    	}
    
    	network := "unix"
    	klog.V(4).InfoS(log("creating new gRPC connection"), "protocol", network, "endpoint", p.endpoint)
    	conn, err := grpc.Dial(
    		p.endpoint,
    		grpc.WithTransportCredentials(insecure.NewCredentials()),
    		grpc.WithContextDialer(func(ctx context.Context, target string) (net.Conn, error) {
    			return (&net.Dialer{}).DialContext(ctx, network, target)
    		}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/crypto/tls/example_test.go

    	// default root set of the current operating system.
    	roots := x509.NewCertPool()
    	ok := roots.AppendCertsFromPEM([]byte(rootPEM))
    	if !ok {
    		panic("failed to parse root certificate")
    	}
    
    	conn, err := tls.Dial("tcp", "mail.google.com:443", &tls.Config{
    		RootCAs: roots,
    	})
    	if err != nil {
    		panic("failed to connect: " + err.Error())
    	}
    	conn.Close()
    }
    
    func ExampleConfig_keyLogWriter() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator.go

    // to SPDY to proxy to kubelet (and ContainerRuntime).
    type StreamTranslatorHandler struct {
    	// Location is the location of the upstream proxy. It is used as the location to Dial on the upstream server
    	// for upgrade requests.
    	Location *url.URL
    	// Transport provides an optional round tripper to use to proxy. If nil, the default proxy transport is used
    	Transport http.RoundTripper
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/authorizer/config.go

    	WebhookRetryBackoff *wait.Backoff
    
    	VersionedInformerFactory versionedinformers.SharedInformerFactory
    
    	// Optional field, custom dial function used to connect to webhook
    	CustomDial utilnet.DialFunc
    
    	// ReloadFile holds the filename to reload authorization configuration from
    	ReloadFile string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. pkg/test/echo/server/forwarder/http.go

    			AllowHTTP: true,
    			// Pretend we are dialing a TLS endpoint. (Note, we ignore the passed tls.Config)
    			DialTLSContext: func(ctx context.Context, network, addr string, _ *tls.Config) (net.Conn, error) {
    				return newDialer(cfg).Dial(network, addr)
    			},
    		}
    	}
    	closeFn := func(conn *http2.Transport) func() {
    		return conn.CloseIdleConnections
    	}
    	noCloseFn := func() {}
    
    	if cfg.newConnectionPerRequest {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. src/net/ipsock_posix.go

    //     "udp", with a wildcard address: If the platform supports
    //     both IPv6 and IPv4-mapped IPv6 communication capabilities,
    //     or does not support IPv4, we use a dual stack, AF_INET6 and
    //     IPV6_V6ONLY=0, wildcard address listen. The dual stack
    //     wildcard address listen may fall back to an IPv6-only,
    //     AF_INET6 and IPV6_V6ONLY=1, wildcard address listen.
    //     Otherwise we prefer an IPv4-only, AF_INET, wildcard address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. pkg/kubeapiserver/authorizer/reload.go

    type reloadableAuthorizerResolver struct {
    	// initialConfig holds the ReloadFile used to initiate background reloading,
    	// and information used to construct webhooks that isn't exposed in the authorization
    	// configuration file (dial function, backoff settings, etc)
    	initialConfig Config
    
    	apiServerID string
    
    	reloadInterval         time.Duration
    	requireNonWebhookTypes sets.Set[authzconfig.AuthorizerType]
    
    	nodeAuthorizer *node.NodeAuthorizer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/nettest/nettest.go

    func SupportsRawSocket() bool {
    	stackOnce.Do(probeStack)
    	return rawSocketSess
    }
    
    // TestableNetwork reports whether network is testable on the current
    // platform configuration.
    //
    // See func Dial of the standard library for the supported networks.
    func TestableNetwork(network string) bool {
    	ss := strings.Split(network, ":")
    	switch ss[0] {
    	case "ip+nopriv":
    		// This is an internal network name for testing on the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/net/udpsock_posix.go

    			return sd.Dialer.Control(network, address, c)
    		}
    	}
    	fd, err := internetSocket(ctx, sd.network, laddr, raddr, syscall.SOCK_DGRAM, 0, "dial", ctrlCtxFn)
    	if err != nil {
    		return nil, err
    	}
    	return newUDPConn(fd), nil
    }
    
    func (sl *sysListener) listenUDP(ctx context.Context, laddr *UDPAddr) (*UDPConn, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top