Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for connc (0.04 sec)

  1. src/net/http/httputil/reverseproxy_test.go

    			http.Error(w, "Unexpected request", 400)
    			return
    		}
    		conn, bufrw, err := w.(http.Hijacker).Hijack()
    		if err != nil {
    			t.Error(err)
    			return
    		}
    		defer conn.Close()
    
    		upgradeMsg := "HTTP/1.1 101 Switching Protocols\r\nConnection: upgrade\r\nUpgrade: WebSocket\r\n\r\n"
    		if _, err := io.WriteString(conn, upgradeMsg); err != nil {
    			t.Error(err)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. src/net/dnsclient_unix_test.go

    }
    
    func (server *fakeDNSServer) DialContext(_ context.Context, n, s string) (Conn, error) {
    	if server.alwaysTCP || n == "tcp" || n == "tcp4" || n == "tcp6" {
    		return &fakeDNSConn{tcp: true, server: server, n: n, s: s}, nil
    	}
    	return &fakeDNSPacketConn{fakeDNSConn: fakeDNSConn{tcp: false, server: server, n: n, s: s}}, nil
    }
    
    type fakeDNSConn struct {
    	Conn
    	tcp    bool
    	server *fakeDNSServer
    	n      string
    	s      string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

    // CHECK: %[[DQ0:.*]] = "tfl.dequantize"(%[[RQ0]]) : (tensor<1x2x!quant.uniform<u8:f32, 1.000000e-01:128>>) -> tensor<1x2xf32>
    // CHECK: %[[CONC:.*]] = "tfl.concatenation"(%[[DQ0]], %[[DQ1]]) <{axis = 0 : i32, fused_activation_function = "NONE"}> : (tensor<1x2xf32>, tensor<1x2xf32>) -> tensor<2x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    	// version advertised by the client, so values other than the greatest
    	// might be rejected if used.
    	SupportedVersions []uint16
    
    	// Conn is the underlying net.Conn for the connection. Do not read
    	// from, or write to, this connection; that will cause the TLS
    	// connection to fail.
    	Conn net.Conn
    
    	// config is embedded by the GetCertificate or GetConfigForClient caller,
    	// for use with SupportsCertificate.
    	config *Config
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. cmd/sts-handlers_test.go

    	}{
    		{
    			username: "Пользователь",
    			dn:       "uid=Пользователь,ou=people,ou=swengg,dc=min,dc=io",
    		},
    	}
    
    	conn, err := globalIAMSys.LDAPConfig.LDAP.Connect()
    	if err != nil {
    		c.Fatalf("LDAP connect failed: %v", err)
    	}
    	defer conn.Close()
    
    	for i, testCase := range cases {
    		ldapID := cr.LDAPIdentity{
    			Client:       s.TestSuiteCommon.client,
    			STSEndpoint:  s.endPoint,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  6. docs/bucket/notifications/README.md

      go func() {
       for {
        // Reconnect if the connection is lost.
        if stanConnection == nil || stanConnection.NatsConn() == nil ||  !stanConnection.NatsConn().IsConnected() {
         stanConnection, _ = stan.Connect("test-cluster", "test-client", stan.NatsURL("nats://yourusername:yoursecret@0.0.0.0:4222"), stan.SetConnectionLostHandler(func(c stan.Conn, _ error) {
          if c.NatsConn() != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. cmd/api-errors.go

    // errors returned by underlying layers.
    func toAPIErrorCode(ctx context.Context, err error) (apiErr APIErrorCode) {
    	if err == nil {
    		return ErrNone
    	}
    
    	// Errors that are generated by net.Conn and any context errors must be handled here.
    	if errors.Is(err, os.ErrDeadlineExceeded) || errors.Is(err, context.DeadlineExceeded) {
    		return ErrRequestTimedout
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //	_ = unix.Bind(fd, &unix.SockaddrRFCOMM{
    //		Channel: 1,
    //		Addr:    [6]uint8{0, 0, 0, 0, 0, 0}, // BDADDR_ANY or 00:00:00:00:00:00
    //	})
    //	_ = Listen(fd, 1)
    //	nfd, sa, _ := Accept(fd)
    //	fmt.Printf("conn addr=%v fd=%d", sa.(*unix.SockaddrRFCOMM).Addr, nfd)
    //	Read(nfd, buf)
    //
    // Client example:
    //
    //	fd, _ := Socket(AF_BLUETOOTH, SOCK_STREAM, BTPROTO_RFCOMM)
    //	_ = Connect(fd, &SockaddrRFCOMM{
    //		Channel: 1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top