Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 134 for downstream (0.16 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/MultiProjectContinuousIntegrationTest.groovy

            succeeds "a"
            executedAndNotSkipped(":a", ":upstream:a", ":downstream:a")
    
            when:
            file("A").text = "A"
    
            then:
            buildTriggeredAndSucceeded()
            executedAndNotSkipped(":a", ":upstream:a", ":downstream:a")
    
            expect:
            succeeds(":downstream:a")
            executedAndNotSkipped(":downstream:a")
            notExecuted(":a", ":upstream:a")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java

        /**
         * Gets the downstream projects of the specified project. A downstream project is a project that directly or
         * indirectly depends on the given project.
         *
         * @param project The project whose downstream projects should be retrieved, must not be {@code null}.
         * @param transitive A flag whether to retrieve all direct and indirect downstream projects or just the immediate
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIntegrationTest.groovy

            when:
            succeeds("resolve")
            then:
            result.assertTasksExecutedInOrder(":second:generate", ":first:generate", ":resolve")
    
            // Updating the remote repository causes changes downstream
            when:
            changeMessage("goodbye world", first, second)
    
            then:
            succeeds("resolve")
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  7. 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)
  8. releasenotes/notes/auto-san-validation-support.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
       - |
         **Added** the ability to perform automatic SAN validation based on the downstream HTTP host/authority header
         when `ENABLE_AUTO_SNI` and `VERIFY_CERTIFICATE_AT_CLIENT` feature flags are enabled.
    docs:
       - https://docs.google.com/document/d/1pTUl-Ng3nXAWJb7UGJtalftznpxQEfID/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 17 16:51:08 UTC 2022
    - 503 bytes
    - Viewed (0)
  9. pkg/hbone/server.go

    	w.WriteHeader(http.StatusOK)
    
    	wg := sync.WaitGroup{}
    	wg.Add(1)
    	go func() {
    		// downstream (hbone client) <-- upstream (app)
    		copyBuffered(w, dst, log.WithLabels("name", "dst to w"))
    		err = r.Body.Close()
    		if err != nil {
    			log.Infof("connection to hbone client is not closed: %v", err)
    		}
    		wg.Done()
    	}()
    	// downstream (hbone client) --> upstream (app)
    	copyBuffered(dst, r.Body, log.WithLabels("name", "body to dst"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 10 02:05:07 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/image_format/README.md

    automatically save with the new format (`.cpb` instead of `.pb`).
    
    <!-- **Compatibility** -->
    
    The official TF APIs (TF1/TF2 python or C++ loading) have already been
    integrated to handle the new format, but some downstream converters may not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 29 22:11:19 UTC 2023
    - 674 bytes
    - Viewed (0)
Back to top