Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for meisten (0.14 sec)

  1. pilot/pkg/bootstrap/server.go

    	// the grpc server would be started before CA is registered. Listening should be last.
    	if s.secureGrpcAddress != "" {
    		grpcListener, err := net.Listen("tcp", s.secureGrpcAddress)
    		if err != nil {
    			return err
    		}
    		go func() {
    			log.Infof("starting secure gRPC discovery service at %s", grpcListener.Addr())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. src/os/exec/exec_test.go

    func TestExtraFilesRace(t *testing.T) {
    	if runtime.GOOS == "windows" {
    		maySkipHelperCommand("describefiles")
    		t.Skip("no operating system support; skipping")
    	}
    	t.Parallel()
    
    	listen := func() net.Listener {
    		ln, err := net.Listen("tcp", "127.0.0.1:0")
    		if err != nil {
    			t.Fatal(err)
    		}
    		return ln
    	}
    	listenerFile := func(ln net.Listener) *os.File {
    		f, err := ln.(*net.TCPListener).File()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  3. cni/pkg/cmd/root.go

    		if cfg.InstallConfig.AmbientEnabled {
    			// Start ambient controller
    
    			// node agent will spawn a goroutine and watch the K8S API for events,
    			// as well as listen for messages from the CNI binary.
    			log.Info("Starting ambient node agent with inpod redirect mode")
    			ambientAgent, err := nodeagent.NewServer(ctx, watchServerReady, cfg.InstallConfig.CNIEventAddress,
    				nodeagent.AmbientArgs{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. cmd/sftp-server.go

    		SSHConfig:            sshConfig,
    		HandleSFTPSession:    handleSFTPSession,
    	})
    	if err != nil {
    		logger.Fatal(err, "Unable to start SFTP Server")
    	}
    
    	err = sftpServer.Listen()
    	if err != nil {
    		logger.Fatal(err, "SFTP Server had an unrecoverable error while accepting connections")
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. internal/grid/muxclient.go

    		ticker := time.NewTicker(m.clientPingInterval)
    		defer ticker.Stop()
    		pingTimer = ticker.C
    		atomic.StoreInt64(&m.LastPong, time.Now().UnixNano())
    	}
    
    	// Listen for client messages.
    reqLoop:
    	for !errState {
    		select {
    		case <-m.ctx.Done():
    			if debugPrint {
    				fmt.Println("Client sending disconnect to mux", m.MuxID)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. pilot/test/xds/fake.go

    		var err error
    		if listener, err = opts.ListenerBuilder(); err != nil {
    			t.Fatal(err)
    		}
    	} else {
    		// Start in memory gRPC listener
    		buffer := 1024 * 1024
    		listener = bufconn.Listen(buffer)
    	}
    
    	grpcServer := grpc.NewServer()
    	s.Register(grpcServer)
    	go func() {
    		if err := grpcServer.Serve(listener); err != nil && !(err == grpc.ErrServerStopped || err.Error() == "closed") {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway.go

    // Note that today any Servers in the combined gateways listening on the same port must have the same protocol.
    // If servers with different protocols attempt to listen on the same port, one of the protocols will be chosen at random.
    func MergeGateways(gateways []gatewayWithInstances, proxy *Proxy, ps *PushContext) *MergedGateway {
    	gatewayPorts := sets.New[uint32]()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. pkg/istio-agent/agent.go

    // Eventually most non-test settings should graduate to ProxyConfig
    // Please don't add 100 parameters to the NewAgent function (or any other)!
    type AgentOptions struct {
    	// ProxyXDSDebugViaAgent if true will listen on 15004 and forward queries
    	// to XDS istio.io/debug.
    	ProxyXDSDebugViaAgent bool
    	// Port value for the debugging endpoint.
    	ProxyXDSDebugViaAgentPort int
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. 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)
  10. CHANGELOG/CHANGELOG-1.31.md

    - The kube-proxy nodeportAddresses / --nodeport-addresses option now
      accepts the value "primary", meaning to only listen for NodePort connections
      on the node's primary IPv4 and/or IPv6 address (according to the Node object).
      This is strongly recommended, if you were not previously using
      --nodeport-addresses, to avoid surprising behavior.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
Back to top