Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for meisten (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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