Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 141 for connc (0.05 sec)

  1. src/net/net_test.go

    			t.Parallel()
    
    			ln := newLocalListener(t, network)
    			connc := make(chan Conn, 1)
    			defer func() {
    				ln.Close()
    				for c := range connc {
    					if c != nil {
    						c.Close()
    					}
    				}
    			}()
    			go func() {
    				defer close(connc)
    				c, err := ln.Accept()
    				if err != nil {
    					t.Error(err)
    				}
    				connc <- c // might be nil
    			}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 21:04:44 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/net/dial_test.go

    	const timeoutTick = 100
    
    	var d Dialer
    	cancel := make(chan struct{})
    	d.Cancel = cancel
    	errc := make(chan error, 1)
    	connc := make(chan Conn, 1)
    	go func() {
    		if c, err := d.Dial("tcp", blackholeIPPort); err != nil {
    			errc <- err
    		} else {
    			connc <- c
    		}
    	}()
    	ticks := 0
    	for {
    		select {
    		case <-ticker.C:
    			ticks++
    			if ticks == cancelTick {
    				close(cancel)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    	conn.selectedProtocol = negotiated[0]
    	p := conn.protocols[conn.selectedProtocol]
    	if p.Binary {
    		conn.codec = rawCodec
    	} else {
    		conn.codec = base64Codec
    	}
    	conn.ws = ws
    	conn.channels = make([]*websocketChannel, len(p.Channels))
    	for i, t := range p.Channels {
    		switch t {
    		case ReadChannel:
    			conn.channels[i] = newWebsocketChannel(conn, byte(i), true, false)
    		case WriteChannel:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/ztunnelserver.go

    // nolint: unparam
    func (z *ztunnelServer) handleConn(ctx context.Context, conn *ZtunnelConnection) error {
    	defer conn.Close()
    
    	context.AfterFunc(ctx, func() {
    		log.Debug("context cancelled - closing conn")
    		conn.Close()
    	})
    
    	// before doing anything, add the connection to the list of active connections
    	z.conns.addConn(conn)
    	defer z.conns.deleteConn(conn)
    
    	// get hello message from ztunnel
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/net/http/httptest/server.go

    	oldHook := s.Config.ConnState
    	s.Config.ConnState = func(c net.Conn, cs http.ConnState) {
    		s.mu.Lock()
    		defer s.mu.Unlock()
    
    		switch cs {
    		case http.StateNew:
    			if _, exists := s.conns[c]; exists {
    				panic("invalid state transition")
    			}
    			if s.conns == nil {
    				s.conns = make(map[net.Conn]http.ConnState)
    			}
    			// Add c to the set of tracked conns and increment it to the
    			// waitgroup.
    			s.wg.Add(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. src/net/tcpsock_test.go

    	testHookUninstaller.Do(uninstallTestHooks)
    
    	const msgLen = 512
    	conns := b.N
    	numConcurrent := runtime.GOMAXPROCS(-1) * 2
    	msgs := 1
    	if persistent {
    		conns = numConcurrent
    		msgs = b.N / conns
    		if msgs == 0 {
    			msgs = 1
    		}
    		if conns > b.N {
    			conns = b.N
    		}
    	}
    	sendMsg := func(c Conn, buf []byte) bool {
    		n, err := c.Write(buf)
    		if n != len(buf) || err != nil {
    			b.Log(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  7. src/database/sql/driver/driver.go

    // Pinger is an optional interface that may be implemented by a [Conn].
    //
    // If a [Conn] does not implement Pinger, the [database/sql.DB.Ping] and
    // [database/sql.DB.PingContext] will check if there is at least one [Conn] available.
    //
    // If Conn.Ping returns [ErrBadConn], [database/sql.DB.Ping] and [database/sql.DB.PingContext] will remove
    // the [Conn] from pool.
    type Pinger interface {
    	Ping(ctx context.Context) error
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  8. pilot/pkg/autoregistration/controller.go

    				return nil
    			}
    			conns := c.adsConnections.ConnectionsForGroup(key)
    			for _, conn := range conns {
    				proxy := conn.Proxy()
    				entryName := autoregisteredWorkloadEntryName(proxy)
    				if entryName == "" {
    					continue
    				}
    				if err := c.registerWorkload(entryName, proxy, conn.ConnectedAt()); err != nil {
    					log.Error(err)
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. src/net/net.go

    	// A zero value for t means Write will not time out.
    	SetWriteDeadline(t time.Time) error
    }
    
    type conn struct {
    	fd *netFD
    }
    
    func (c *conn) ok() bool { return c != nil && c.fd != nil }
    
    // Implementation of the Conn interface.
    
    // Read implements the Conn Read method.
    func (c *conn) Read(b []byte) (int, error) {
    	if !c.ok() {
    		return 0, syscall.EINVAL
    	}
    	n, err := c.fd.Read(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

            for ( SmbTransportImpl conn : this.connections ) {
                if ( conn.matches(address, port, localAddr, localPort, hostName)
                        && ( tc.getConfig().getSessionLimit() == 0 || conn.getNumSessions() < tc.getConfig().getSessionLimit() ) ) {
                    try {
                        if ( conn.isFailed() || ( connectedOnly && conn.isDisconnected() ) ) {
                            continue;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 12.5K bytes
    - Viewed (0)
Back to top