Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 134 for downstream (0.27 sec)

  1. 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)
  2. 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)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ParallelDependencyResolutionIntegrationTest.groovy

                settingsFile << "include '$it'\n"
                file("${it}/build.gradle") << """
                    apply plugin: 'java-library'
                """
                ['project1', 'project2'].each { downstream ->
                    file("$downstream/build.gradle") << """
                        dependencies {
                            implementation project(":$it")
                        }
                    """
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskClassChangesIncrementalCompilationIntegrationTest.groovy

            when:
            source impl: ["class A { \n}"]
            run "impl:${language.compileTaskName}"
    
            then:
            impl.recompiledClasses 'A', 'B', 'C'
        }
    
        def "recompiles downstream dependents of classes whose package-info changed"() {
            given:
            source api: ["""
                package annotations;
                import java.lang.annotation.*;
                @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/autoscaler_contract/lister_contract_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // This file helps to detect whether we changed the interface of Listers.
    // This is important for downstream projects who import the Listers to not
    // breaking their codes.
    
    package contract
    
    import (
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    var _ framework.NodeInfoLister = &nodeInfoListerContract{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 20 02:30:08 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/FilterChainTest.java

            // This is a no-op transform, however it ensures FilterChain executes full byte->string->byte sequence
            filterChain.add(s -> s);
    
            // Make the input string longer to ensure the downstream implementations would have to use a buffer
            // instead of converting the full string at once
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < 10000; i++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 20 13:25:37 UTC 2021
    - 6.3K bytes
    - Viewed (0)
Back to top