Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for meisten (0.16 sec)

  1. pkg/kubelet/cm/dra/plugin/client_test.go

    	if err != nil {
    		return "", nil, err
    	}
    
    	closeCh := make(chan struct{})
    	addr := filepath.Join(p, "server.sock")
    	teardown := func() {
    		close(closeCh)
    		os.RemoveAll(addr)
    	}
    
    	listener, err := net.Listen("unix", addr)
    	if err != nil {
    		teardown()
    		return "", nil, err
    	}
    
    	s := grpc.NewServer()
    	switch version {
    	case v1alpha3Version:
    		fakeGRPCServer := &fakeV1alpha3GRPCServer{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. tests/integration/security/util/framework.go

    				Name:         "https",
    				Protocol:     protocol.HTTPS,
    				ServicePort:  443,
    				WorkloadPort: 8443,
    				TLS:          true,
    			},
    		},
    		// Set up TLS certs on the server. This will make the server listen with these credentials.
    		TLSSettings: &common.TLSSettings{
    			// Echo has these test certs baked into the docker image
    			RootCert:   mustReadCert("root-cert.pem"),
    			ClientCert: mustReadCert("cert-chain.pem"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/cmd/root.go

    	flag.BindEnv(fs, constants.RestoreFormat, "f", "Print iptables rules in iptables-restore interpretable format.",
    		&cfg.RestoreFormat)
    
    	flag.BindEnv(fs, constants.IptablesProbePort, "", "Set listen port for failure detection.", &cfg.IptablesProbePort)
    
    	flag.BindEnv(fs, constants.ProbeTimeout, "", "Failure detection timeout.", &cfg.ProbeTimeout)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    * Providing user-specific information (e.g., authentication credentials)
    * Defining machine-specific details (e.g., JDK locations)
    * Registering build listeners (e.g., external tools that wish to listen to Gradle events might find this helpful)
    * Registering loggers (e.g., customize how Gradle logs the events that it generates)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/server-workers.md

        * Here we pass the class that Gunicorn can import and use with:
    
            ```Python
            import uvicorn.workers.UvicornWorker
            ```
    
    * `--bind`: This tells Gunicorn the IP and the port to listen to, using a colon (`:`) to separate the IP and the port.
        * If you were running Uvicorn directly, instead of `--bind 0.0.0.0:80` (the Gunicorn option) you would use `--host 0.0.0.0` and `--port 80`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/net/ipsock.go

    package net
    
    import (
    	"context"
    	"internal/bytealg"
    	"runtime"
    	"sync"
    	_ "unsafe" // for linkname
    )
    
    // BUG(rsc,mikio): On DragonFly BSD and OpenBSD, listening on the
    // "tcp" and "udp" networks does not listen for both IPv4 and IPv6
    // connections. This is due to the fact that IPv4 traffic will not be
    // routed to an IPv6 socket - two separate sockets are required if
    // both address families are to be supported.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top