Search Options

Results per page
Sort
Preferred Languages
Advance

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