Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for proxyEnv (0.13 sec)

  1. pkg/istio-agent/xds_proxy.go

    type adsStream interface {
    	Send(*discovery.DiscoveryResponse) error
    	Recv() (*discovery.DiscoveryRequest, error)
    	Context() context.Context
    }
    
    // StreamAggregatedResources is an implementation of XDS API used for proxying between Istiod and Envoy.
    // Every time envoy makes a fresh connection to the agent, we reestablish a new connection to the upstream xds
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. cmd/server-main.go

    		//		DriveOPTimeout: globalDriveConfig.GetOPTimeout,
    		Interface:   ctxt.Interface,
    		SendBufSize: ctxt.SendBufSize,
    		RecvBufSize: ctxt.RecvBufSize,
    	}
    
    	// allow transport to be HTTP/1.1 for proxying.
    	globalProxyEndpoints = GetProxyEndpoints(globalEndpoints)
    	globalInternodeTransport = NewInternodeHTTPTransport(ctxt.MaxIdleConnsPerHost)()
    	globalRemoteTargetTransport = NewRemoteTargetHTTPTransport(false)()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (1)
  3. pkg/kubelet/server/server.go

    		podUID:       types.UID(req.PathParameter("uid")),
    	}
    }
    
    type responder struct{}
    
    func (r *responder) Error(w http.ResponseWriter, req *http.Request, err error) {
    	klog.ErrorS(err, "Error while proxying request")
    	http.Error(w, err.Error(), http.StatusInternalServerError)
    }
    
    // proxyStream proxies stream to url.
    func proxyStream(w http.ResponseWriter, r *http.Request, url *url.URL) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
Back to top