Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 453 for LISTEN (0.25 sec)

  1. cmd/listen-notification-handlers.go

    			return
    		}
    	}
    
    	rulesMap := event.NewRulesMap(eventNames, pattern, event.TargetID{ID: mustGetUUID()})
    
    	setEventStreamHeaders(w)
    
    	// Listen Publisher and peer-listen-client uses nonblocking send and hence does not wait for slow receivers.
    	// Use buffered channel to take care of burst sends or slow w.Write()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. src/net/fd_plan9.go

    	n                 string
    	dir               string
    	listen, ctl, data *os.File
    	laddr, raddr      Addr
    	isStream          bool
    }
    
    var netdir = "/net" // default network
    
    func newFD(net, name string, listen, ctl, data *os.File, laddr, raddr Addr) (*netFD, error) {
    	ret := &netFD{
    		net:    net,
    		n:      name,
    		dir:    netdir + "/" + net + "/" + name,
    		listen: listen,
    		ctl:    ctl, data: data,
    		laddr: laddr,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 04 16:01:50 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  3. test/fixedbugs/bug243.go

    // function call.
    
    func main() {
    	var listen, _ = Listen("tcp", "127.0.0.1:0")
    
    	go func() {
    		for {
    			var conn, _ = listen.Accept()
    			_ = conn
    		}
    	}()
    
    	var conn, _ = Dial("tcp", "", listen.Addr().Error())
    	_ = conn
    }
    
    // Simulated net interface to exercise bug
    // without involving a real network.
    type T chan int
    
    var global T
    
    func Listen(x, y string) (T, string) {
    	global = make(chan int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 893 bytes
    - Viewed (0)
  4. pkg/proxy/healthcheck/common.go

    package healthcheck
    
    import (
    	"net"
    	"net/http"
    )
    
    // listener allows for testing of ServiceHealthServer and ProxierHealthServer.
    type listener interface {
    	// Listen is very much like net.Listen, except the first arg (network) is
    	// fixed to be "tcp".
    	Listen(addr string) (net.Listener, error)
    }
    
    // httpServerFactory allows for testing of ServiceHealthServer and ProxierHealthServer.
    type httpServerFactory interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 29 09:11:29 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  5. src/net/rpc/client_test.go

    			t.Fatal("expected `reading body unexpected EOF', got", err)
    		}
    	}()
    	Register(new(S))
    
    	listen, err := net.Listen("tcp", "127.0.0.1:0")
    	if err != nil {
    		panic(err)
    	}
    	go Accept(listen)
    
    	client, err := Dial("tcp", listen.Addr().String())
    	if err != nil {
    		panic(err)
    	}
    
    	var reply Reply
    	err = client.Call("S.Recv", &struct{}{}, &reply)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. src/net/ipsock_posix.go

    //     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
    //     listen.
    //
    //   - A listen for a wildcard communication domain, "tcp" or
    //     "udp", with an IPv4 wildcard address: same as above.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/etcd/local_test.go

        - --initial-advertise-peer-urls=https://:2380
        - --initial-cluster==https://:2380
        - --key-file=etcd/server.key
        - --listen-client-urls=https://127.0.0.1:2379,https://:2379
        - --listen-metrics-urls=http://127.0.0.1:2381
        - --listen-peer-urls=https://:2380
        - --name=
        - --peer-cert-file=etcd/peer.crt
        - --peer-client-cert-auth=true
        - --peer-key-file=etcd/peer.key
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/process/JavaDebugOptions.java

        Property<Boolean> getEnabled();
    
        /**
         * Host address to listen on or connect to when debug is enabled. By default, no host is set.
         *
         * <p>
         * When run in {@link #getServer() server} mode, the process listens on the loopback address on Java 9+ and all interfaces on Java 8 and below by default.
         * Setting host to {@code *} will make the process listen on all network interfaces. This is not supported on Java 8 and below.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 14:16:38 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  9. src/net/unixsock_test.go

    	// SetUnlinkOnClose should do what it says.
    
    	t.Run("Listen/SetUnlinkOnClose(true)", func(t *testing.T) {
    		l := listen(t)
    		checkExists(t, "after Listen")
    		l.SetUnlinkOnClose(true)
    		l.Close()
    		checkNotExists(t, "after Listener close")
    	})
    
    	t.Run("Listen/SetUnlinkOnClose(false)", func(t *testing.T) {
    		l := listen(t)
    		checkExists(t, "after Listen")
    		l.SetUnlinkOnClose(false)
    		l.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. .github/workflows/mint/nginx-1-node.conf

        upstream minio {
            server minio1:9000;
        }
    
        upstream console {
            ip_hash;
            server minio1:9001;
        }
    
        server {
            listen       9000;
            listen  [::]:9000;
            server_name  localhost;
    
            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 31 21:38:10 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top