Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for zeroing (0.1 sec)

  1. pilot/pkg/model/gateway.go

    	autoPassthrough := false
    
    	log.Debugf("MergeGateways: merging %d gateways", len(gateways))
    	for _, gwAndInstance := range gateways {
    		gatewayConfig := gwAndInstance.gateway
    		gatewayName := gatewayConfig.Namespace + "/" + gatewayConfig.Name // Format: %s/%s
    		gatewayCfg := gatewayConfig.Spec.(*networking.Gateway)
    		log.Debugf("MergeGateways: merging gateway %q :\n%v", gatewayName, gatewayCfg)
    		snames := sets.String{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    	// Block until either a request is received or a push is triggered.
    	// We need 2 go routines because 'read' blocks in Recv().
    	go s.receiveDelta(con, ids)
    
    	// Wait for the proxy to be fully initialized before we start serving traffic. Because
    	// initialization doesn't have dependencies that will block, there is no need to add any timeout
    	// here. Prior to this explicit wait, we were implicitly waiting by receive() not sending to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    * Add external link [Machine learning model serving in Python using FastAPI and Streamlit](https://davidefiocco.github.io/2020/06/27/streamlit-fastapi-ml-serving.html) to docs. PR [#1669](https://github.com/tiangolo/fastapi/pull/1669) by [@davidefiocco](https://github.com/davidefiocco).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    			kubeDeps.TLSOptions.Config.GetCertificate = func(*tls.ClientHelloInfo) (*tls.Certificate, error) {
    				cert := klet.serverCertificateManager.Current()
    				if cert == nil {
    					return nil, fmt.Errorf("no serving certificate available for the kubelet")
    				}
    				return cert, nil
    			}
    		}
    	}
    
    	if kubeDeps.ProbeManager != nil {
    		klet.probeManager = kubeDeps.ProbeManager
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top