Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for meisten (0.19 sec)

  1. src/net/http/server.go

    }
    
    // A Server defines parameters for running an HTTP server.
    // The zero value for Server is a valid configuration.
    type Server struct {
    	// Addr optionally specifies the TCP address for the server to listen on,
    	// in the form "host:port". If empty, ":http" (port 80) is used.
    	// The service names are defined in RFC 6335 and assigned by IANA.
    	// See net.Dial for details of the address format.
    	Addr string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	procgetsockopt                                           = modws2_32.NewProc("getsockopt")
    	proclisten                                               = modws2_32.NewProc("listen")
    	procntohs                                                = modws2_32.NewProc("ntohs")
    	procrecvfrom                                             = modws2_32.NewProc("recvfrom")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    		return fmt.Errorf("body Close = %v", err)
    	}
    	return nil
    }
    
    func newLocalListener(t *testing.T) net.Listener {
    	ln, err := net.Listen("tcp", "127.0.0.1:0")
    	if err != nil {
    		ln, err = net.Listen("tcp6", "[::1]:0")
    	}
    	if err != nil {
    		t.Fatal(err)
    	}
    	return ln
    }
    
    type countCloseReader struct {
    	n *int
    	io.Reader
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

        etcd_apiserver_protocol="https"
        etcd_listen_metrics_port="2382"
        etcd_extra_args+=" --listen-metrics-urls=http://${ETCD_LISTEN_CLIENT_IP:-127.0.0.1}:${etcd_listen_metrics_port} "
      fi
    
      if [[ -n "${ETCD_PROGRESS_NOTIFY_INTERVAL:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    	if server := os.Getenv("TEST_BENCH_SERVER"); server != "" {
    		// Server process mode.
    		port := os.Getenv("TEST_BENCH_SERVER_PORT") // can be set by user
    		if port == "" {
    			port = "0"
    		}
    		ln, err := net.Listen("tcp", "localhost:"+port)
    		if err != nil {
    			fmt.Fprintln(os.Stderr, err.Error())
    			os.Exit(1)
    		}
    		fmt.Println(ln.Addr().String())
    		HandleFunc("/", func(w ResponseWriter, r *Request) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top