Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 92 for downstream (0.78 sec)

  1. pkg/istio-agent/xds_proxy_delta_test.go

    	t.Helper()
    	adsClient := discovery.NewAggregatedDiscoveryServiceClient(conn)
    	downstream, err := adsClient.DeltaAggregatedResources(ctx)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return downstream
    }
    
    func sendDeltaDownstreamWithNode(t *testing.T, downstream discovery.AggregatedDiscoveryService_DeltaAggregatedResourcesClient, meta model.NodeMetadata) {
    	t.Helper()
    	node := &core.Node{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy_test.go

    		conn := setupDownstreamConnection(t, proxy)
    		downstream := stream(t, conn)
    		sendDownstreamWithNode(t, downstream, model.NodeMetadata{
    			Namespace:   "default",
    			InstanceIPs: []string{"1.1.1.1"},
    		})
    
    		downstream.CloseSend()
    		waitDisconnect(proxy)
    
    		downstream = stream(t, conn)
    		sendDownstreamWithNode(t, downstream, model.NodeMetadata{
    			Namespace:   "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. pkg/istio-agent/tap_proxy.go

    )
    
    func (p *tapProxy) StreamAggregatedResources(downstream DiscoveryStream) error {
    	timeout := time.Second * 15
    	req, err := downstream.Recv()
    	if err != nil {
    		log.Errorf("failed to recv: %v", err)
    		return err
    	}
    	if strings.HasPrefix(req.TypeUrl, TypeDebugPrefix) {
    		if resp, err := p.xdsProxy.tapRequest(req, timeout); err == nil {
    			err := downstream.Send(resp)
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. pkg/istio-agent/xds_proxy.go

    // as the new connection may not go to the same istiod. Vice versa case also applies.
    func (p *XdsProxy) StreamAggregatedResources(downstream DiscoveryStream) error {
    	proxyLog.Debugf("accepted XDS connection from Envoy, forwarding to upstream XDS server")
    	return p.handleStream(downstream)
    }
    
    func (p *XdsProxy) handleStream(downstream adsStream) error {
    	con := &ProxyConnection{
    		conID:           connectionNumber.Inc(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. pkg/istio-agent/xds_proxy_delta.go

    	go p.handleUpstreamDeltaResponse(con)
    
    	for {
    		select {
    		case err := <-con.upstreamError:
    			return err
    		case err := <-con.downstreamError:
    			// On downstream error, we will return. This propagates the error to downstream envoy which will trigger reconnect
    			return err
    		case <-con.stopChan:
    			log.Debugf("upstream stopped")
    			return nil
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. releasenotes/notes/enable-auto-sni.yaml

        is enabled by default. This means SNI will be set automatically based on the downstream HTTP host/authority header if `DestinationRule` does not explicitly set the same.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 24 15:53:10 UTC 2024
    - 691 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.cc

                                 const QuantizationSpecs& quantization_specs,
                                 const DebuggerConfig& debugger_config) {
      // Convert NCHW tensors to NHWC at along with extra optimizations as
      // downstream passes perform better optimizations when dealing with NHWC
      // formatted tensors.
      AddProcessNchwTensorPasses(pm);
    
      pm.addPass(CreateLiftQuantizableSpotsAsFunctionsPass(quantization_specs));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/proxy/doc.go

    // WebSocket data frame. The primary structure for this tunneling is
    // the TunnelingConnection. A lot of the other code in streamtunnel.go
    // is for properly upgrading both the upstream SPDY connection and the
    // downstream WebSocket connection before streaming begins.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 17:56:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/cache2/Relay.kt

    import okio.Timeout
    
    /**
     * Replicates a single upstream source into multiple downstream sources. Each downstream source
     * returns the same bytes as the upstream source. Downstream sources may read data either as it
     * is returned by upstream, or after the upstream source has been exhausted.
     *
     * As bytes are returned from upstream they are written to a local file. Downstream sources read
     * from this file as necessary.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. releasenotes/notes/fips.yaml

      `ECDHE-ECDSA-AES256-GCM-SHA384`, `ECDHE-RSA-AES256-GCM-SHA384`, and ECDH
      curves to `P-256`. These restrictions apply on the following data paths:
    
      * mTLS communication between Envoy proxies;
      * regular TLS on the downstream and the upstream of Envoy proxies (e.g. gateway);
      * Google gRPC side requests from Envoy proxies (e.g. Stackdriver extensions);
      * Istiod xDS server;
      * Istiod injection and validation webhook servers.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top