Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for meisten (0.12 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. 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)
  7. 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)
Back to top