Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for meisten (0.11 sec)

  1. src/vendor/golang.org/x/net/nettest/nettest.go

    		if canListenTCP4OnLoopback {
    			if ln, err := net.Listen("tcp4", "127.0.0.1:0"); err == nil {
    				return ln, nil
    			}
    		}
    		if canListenTCP6OnLoopback {
    			return net.Listen("tcp6", "[::1]:0")
    		}
    	case "tcp4":
    		if canListenTCP4OnLoopback {
    			return net.Listen("tcp4", "127.0.0.1:0")
    		}
    	case "tcp6":
    		if canListenTCP6OnLoopback {
    			return net.Listen("tcp6", "[::1]:0")
    		}
    	case "unix", "unixpacket":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. internal/grid/debug.go

    		}
    	}
    }
    
    func getHosts(n int) (hosts []string, listeners []net.Listener, err error) {
    	for i := 0; i < n; i++ {
    		l, err := net.Listen("tcp", "127.0.0.1:0")
    		if err != nil {
    			if l, err = net.Listen("tcp6", "[::1]:0"); err != nil {
    				return nil, nil, fmt.Errorf("httptest: failed to listen on a port: %v", err)
    			}
    		}
    		addr := l.Addr()
    		hosts = append(hosts, "http://"+addr.String())
    		listeners = append(listeners, l)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. pkg/ctrlz/ctrlz.go

    			WriteTimeout:   time.Minute, // High timeout to allow profiles to run
    			MaxHeaderBytes: 1 << 20,
    			Handler:        router,
    		},
    	}
    
    	s.shutdown.Add(1)
    	go s.listen()
    
    	return s, nil
    }
    
    func (s *Server) listen() {
    	log.Infof("ControlZ available at %s", s.httpServer.Addr)
    	if listeningTestProbe != nil {
    		go listeningTestProbe()
    	}
    	err := s.httpServer.Serve(s.listener)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/cni-watcher.go

    		}
    	}()
    
    	context.AfterFunc(s.ctx, func() {
    		if err := s.cniListenServer.Close(); err != nil {
    			log.Errorf("CNI listen server terminated with error: %v", err)
    		} else {
    			log.Debug("CNI listen server terminated")
    		}
    	})
    	return nil
    }
    
    func (s *CniPluginServer) handleAddEvent(w http.ResponseWriter, req *http.Request) {
    	if req.Body == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. docs/en/docs/fastapi-cli.md

    By default it will listen on the IP address `127.0.0.1`, which is the IP for your machine to communicate with itself alone (`localhost`).
    
    ## `fastapi run`
    
    When you run `fastapi run`, it will run on production mode by default.
    
    It will have **auto-reload disabled** by default.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 23:39:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. src/crypto/tls/tls.go

    	l := new(listener)
    	l.Listener = inner
    	l.config = config
    	return l
    }
    
    // Listen creates a TLS listener accepting connections on the
    // given network address using net.Listen.
    // The configuration config must be non-nil and must include
    // at least one certificate or else set GetCertificate.
    func Listen(network, laddr string, config *Config) (net.Listener, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. security/pkg/nodeagent/sds/server.go

    					setUpUdsOK = false
    				}
    			}
    			if s.grpcWorkloadListener != nil {
    				sdsServiceLog.Infof("Starting SDS server for workload certificates, will listen on %q", security.WorkloadIdentitySocketPath)
    				if err = s.grpcWorkloadServer.Serve(s.grpcWorkloadListener); err != nil {
    					sdsServiceLog.Errorf("SDS grpc server for workload proxies failed to start: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 17:44:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/gateway/gateway.go

    				if svcSelector.Matches(podLabels) {
    					for _, port := range service.Ports {
    						if port.Protocol == "TCP" {
    							// Because the Gateway's server port is the port on which the proxy should listen for incoming connections,
    							// the actual port associated with the service is the `TargetPort` that reaches the sidecar *workload instances*.
    							if tp := port.TargetPort.IntValue(); tp != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. pkg/kubelet/server/server.go

    		// should be called instead.
    		if err := s.ListenAndServeTLS(tlsOptions.CertFile, tlsOptions.KeyFile); err != nil {
    			klog.ErrorS(err, "Failed to listen and serve")
    			os.Exit(1)
    		}
    	} else if err := s.ListenAndServe(); err != nil {
    		klog.ErrorS(err, "Failed to listen and serve")
    		os.Exit(1)
    	}
    }
    
    // ListenAndServeKubeletReadOnlyServer initializes a server to respond to HTTP network requests on the Kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  10. cmd/server-main.go

    	})
    }
    
    // Return the list of address that MinIO server needs to listen on:
    //   - Returning 127.0.0.1 is necessary so Console will be able to send
    //     requests to the local S3 API.
    //   - The returned List needs to be deduplicated as well.
    func getServerListenAddrs() []string {
    	// Use a string set to avoid duplication
    	addrs := set.NewStringSet()
    	// Listen on local interface to receive requests from Console
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top