Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 509 for meisten (0.14 sec)

  1. pkg/kubelet/cm/devicemanager/plugin/v1beta1/server.go

    		klog.ErrorS(err, "Failed to cleanup the device plugin directory", "directory", s.socketDir)
    		return err
    	}
    
    	ln, err := net.Listen("unix", s.SocketPath())
    	if err != nil {
    		klog.ErrorS(err, "Failed to listen to socket while starting device plugin registry")
    		return err
    	}
    
    	s.wg.Add(1)
    	s.grpc = grpc.NewServer([]grpc.ServerOption{}...)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/status/testserver/server.go

    	mux := http.NewServeMux()
    	for k, v := range handlers {
    		mux.HandleFunc(k, http.HandlerFunc(v))
    	}
    
    	// Start a local HTTP server
    	server := httptest.NewUnstartedServer(mux)
    
    	l, err := net.Listen("tcp", ":0")
    	if err != nil {
    		panic("Could not create listener for test: " + err.Error())
    	}
    	server.Listener = l
    	server.Start()
    	return server
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 26 17:53:14 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/de/stopwords.txt

    jenes
    jetzt
    kann
    kein
    keine
    keinem
    keinen
    keiner
    keines
    können
    könnte
    machen
    man
    manche
    manchem
    manchen
    mancher
    manches
    mein
    meine
    meinem
    meinen
    meiner
    meines
    mit
    muss
    musste
    nach
    nicht
    nichts
    noch
    nun
    nur
    ob
    oder
    ohne
    sehr
    sein
    seine
    seinem
    seinen
    seiner
    seines
    selbst
    sich
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/staticpod/utils.go

    	if cfg.Local == nil || cfg.Local.ExtraArgs == nil {
    		return localhost, kubeadmconstants.EtcdMetricsPort, v1.URISchemeHTTP
    	}
    	if arg, idx := kubeadmapi.GetArgValue(cfg.Local.ExtraArgs, "listen-metrics-urls", -1); idx > -1 {
    		// Use the first url in the listen-metrics-urls if multiple URL's are specified.
    		arg = strings.Split(arg, ",")[0]
    		parsedURL, err := url.Parse(arg)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. pkg/test/echo/server/endpoint/tcp.go

    		config := &tls.Config{Certificates: []tls.Certificate{cert}, MinVersion: tls.VersionTLS12}
    		// Listen on the given port and update the port if it changed from what was passed in.
    		listener, port, err = listenOnAddressTLS(s.ListenerIP, s.Port.Port, config)
    		// Store the actual listening port back to the argument.
    		s.Port.Port = port
    	} else {
    		// Listen on the given port and update the port if it changed from what was passed in.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. src/crypto/tls/example_test.go

    	cert, err := tls.LoadX509KeyPair("testdata/example-cert.pem", "testdata/example-key.pem")
    	if err != nil {
    		log.Fatal(err)
    	}
    	cfg := &tls.Config{Certificates: []tls.Certificate{cert}}
    	listener, err := tls.Listen("tcp", ":2000", cfg)
    	if err != nil {
    		log.Fatal(err)
    	}
    	_ = listener
    }
    
    func ExampleX509KeyPair() {
    	certPem := []byte(`-----BEGIN CERTIFICATE-----
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. pkg/filewatcher/worker.go

    		dirWatcher:      dirWatcher,
    		watchedFiles:    make(map[string]*fileTracker),
    		retireTrackerCh: make(chan *fileTracker),
    		terminateCh:     make(chan bool),
    	}
    
    	go wk.listen()
    
    	return wk, nil
    }
    
    func (wk *worker) listen() {
    	wk.loop()
    
    	_ = wk.dirWatcher.Close()
    
    	// drain any retiring trackers that may be pending
    	wk.drainRetiringTrackers()
    
    	// clean up the rest
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 22:31:06 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. tests/integration/security/filebased_tls_origination/main_test.go

    			},
    			{
    				Name:         "tcp",
    				Protocol:     protocol.TCP,
    				WorkloadPort: 8092,
    				TLS:          true,
    			},
    		},
    		// Set up TLS certs on the server. This will make the server listen with these credentials.
    		TLSSettings: &common.TLSSettings{
    			RootCert:   mustReadCert("root-cert.pem"),
    			ClientCert: mustReadCert("cert-chain.pem"),
    			Key:        mustReadCert("key.pem"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/testing/v2/kms_plugin_mock.go

    	s.ver = ver
    }
    
    // start starts plugin's gRPC service.
    func (s *Base64Plugin) start() error {
    	var err error
    	s.listener, err = net.Listen(unixProtocol, s.socketPath)
    	if err != nil {
    		return fmt.Errorf("failed to listen on the unix socket, error: %v", err)
    	}
    	klog.InfoS("Starting KMS Plugin", "socketPath", s.socketPath)
    
    	go s.grpcServer.Serve(s.listener)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. pkg/hbone/README.md

    #### Server Golang Library
    
    An (unstable) library to run an HBONE server is available at `pkg/hbone`.
    
    Usage example:
    
    ```go
    s := hbone.NewServer()
    // TLS is strongly recommended in real world
    l, _ := net.Listen("tcp", "0.0.0.0:15008")
    s.Serve(l)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 11 16:27:16 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top