Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for meisten (0.13 sec)

  1. 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)
  2. security/pkg/nodeagent/test/mock/caserver.go

    	ghc.RegisterHealthServer(server.GRPCServer, server)
    	return server, server.start(port)
    }
    
    func (s *CAServer) start(port int) error {
    	listener, err := net.Listen("tcp", fmt.Sprintf("127.0.0.1:%d", port))
    	if err != nil {
    		caServerLog.Errorf("cannot listen on port %d (error: %v)", port, err)
    		return err
    	}
    
    	// If passed in port is 0, get the actual chosen port.
    	port = listener.Addr().(*net.TCPAddr).Port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/net/http/transport_internal_test.go

    func isTransportReadFromServerError(err error) bool {
    	_, ok := err.(transportReadFromServerError)
    	return ok
    }
    
    func newLocalListener(t *testing.T) net.Listener {
    	ln, err := net.Listen("tcp", "127.0.0.1:0")
    	if err != nil {
    		ln, err = net.Listen("tcp6", "[::1]:0")
    	}
    	if err != nil {
    		t.Fatal(err)
    	}
    	return ln
    }
    
    func dummyRequest(method string) *Request {
    	req, err := NewRequest(method, "http://fake.tld/", nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:57:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. 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)
  5. internal/logger/logrotate.go

    	w.pw.CloseWithError(nil)
    
    	if w.f != nil {
    		if err := w.closeCurrentFile(); err != nil {
    			return err
    		}
    	}
    
    	return nil
    }
    
    var stdErrEnc = json.NewEncoder(os.Stderr)
    
    func (w *Writer) listen() {
    	for {
    		var r io.Reader = w.pr
    		if w.opts.MaximumFileSize > 0 {
    			r = io.LimitReader(w.pr, w.opts.MaximumFileSize)
    		}
    		if _, err := io.Copy(w.f, r); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/net/tcpsock_posix.go

    	// which Dial("tcp", addr1, addr2) run on the machine at addr1 can
    	// connect to a simultaneous Dial("tcp", addr2, addr1) run on the machine
    	// at addr2, without either machine executing Listen. If laddr == nil,
    	// it means we want the kernel to pick an appropriate originating local
    	// address. Some Linux kernels cycle blindly through a fixed range of
    	// local ports, regardless of destination port. If a kernel happens to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/common/deployment/external.go

    		Service:           ExternalSvc,
    		Namespace:         e.Namespace,
    		DefaultHostHeader: ExternalHostname,
    		Ports:             ports.All(),
    		// Set up TLS certs on the server. This will make the server listen with these credentials.
    		TLSSettings: &common.TLSSettings{
    			// Echo has these test certs baked into the docker image
    			RootCert:   file.MustAsString(path.Join(env.IstioSrc, "tests/testdata/certs/dns/root-cert.pem")),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. 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)
  9. src/net/udpsock_posix.go

    			return sl.ListenConfig.Control(network, address, c)
    		}
    	}
    	fd, err := internetSocket(ctx, sl.network, laddr, nil, syscall.SOCK_DGRAM, 0, "listen", ctrlCtxFn)
    	if err != nil {
    		return nil, err
    	}
    	return newUDPConn(fd), nil
    }
    
    func (sl *sysListener) listenMulticastUDP(ctx context.Context, ifi *Interface, gaddr *UDPAddr) (*UDPConn, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. docs/de/docs/how-to/custom-docs-ui-assets.md

    ### Eine *Pfadoperation* erstellen, um statische Dateien zu testen
    
    Um nun testen zu können, ob alles funktioniert, erstellen Sie eine *Pfadoperation*:
    
    ```Python hl_lines="39-41"
    {!../../../docs_src/custom_docs_ui/tutorial002.py!}
    ```
    
    ### Benutzeroberfläche, mit statischen Dateien, testen
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top