Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for ListenConfig (0.19 sec)

  1. api/go1.23.txt

    pkg net, type KeepAliveConfig struct, Enable bool #62254
    pkg net, type KeepAliveConfig struct, Idle time.Duration #62254
    pkg net, type KeepAliveConfig struct, Interval time.Duration #62254
    pkg net, type ListenConfig struct, KeepAliveConfig KeepAliveConfig #62254
    pkg net/http, func ParseCookie(string) ([]*Cookie, error) #66008
    pkg net/http, func ParseSetCookie(string) (*Cookie, error) #66008
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	}
    	if s.BindPort <= 0 && s.Listener == nil {
    		return nil
    	}
    
    	if s.Listener == nil {
    		var err error
    		addr := net.JoinHostPort(s.BindAddress.String(), strconv.Itoa(s.BindPort))
    
    		c := net.ListenConfig{}
    
    		ctls := multipleControls{}
    		if s.PermitPortSharing {
    			ctls = append(ctls, permitPortReuse)
    		}
    		if s.PermitAddressSharing {
    			ctls = append(ctls, permitAddressReuse)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (1)
  3. src/net/tcpsock.go

    	}
    	return c, nil
    }
    
    // TCPListener is a TCP network listener. Clients should typically
    // use variables of type [Listener] instead of assuming TCP.
    type TCPListener struct {
    	fd *netFD
    	lc ListenConfig
    }
    
    // SyscallConn returns a raw network connection.
    // This implements the [syscall.Conn] interface.
    //
    // The returned RawConn only supports calling Control. Read and
    // Write return an error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. src/net/dial_test.go

    	})
    
    	handler := func(ls *localServer, ln Listener) {
    		for {
    			c, err := ln.Accept()
    			if err != nil {
    				return
    			}
    			c.Close()
    		}
    	}
    	ln := newLocalListener(t, "tcp", &ListenConfig{
    		KeepAlive: -1, // prevent calling hook from accepting
    	})
    	ls := (&streamListener{Listener: ln}).newLocalServer()
    	defer ls.teardown()
    	if err := ls.buildup(handler); err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*IPNet).String", Method, 0},
    		{"(*Interface).Addrs", Method, 0},
    		{"(*Interface).MulticastAddrs", Method, 0},
    		{"(*ListenConfig).Listen", Method, 11},
    		{"(*ListenConfig).ListenPacket", Method, 11},
    		{"(*ListenConfig).MultipathTCP", Method, 21},
    		{"(*ListenConfig).SetMultipathTCP", Method, 21},
    		{"(*OpError).Error", Method, 0},
    		{"(*OpError).Temporary", Method, 0},
    		{"(*OpError).Timeout", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. src/cmd/trace/testdata/go122.test

    String id=119
    	data="net.(*netFD).listenStream"
    String id=120
    	data="net.(*sysListener).listenTCPProto"
    String id=121
    	data="net.(*sysListener).listenTCP"
    String id=122
    	data="net.(*ListenConfig).Listen"
    String id=123
    	data="net.Listen"
    String id=124
    	data="runtime.(*scavengerState).park"
    String id=125
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mgcscavenge.go"
    String id=126
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
Back to top