Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 84 of 84 for downstream (2.45 sec)

  1. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

        private val socket: Socket,
        private val protocol: Protocol,
      ) : Http2Connection.Listener() {
        private val sequenceNumber = AtomicInteger()
    
        @Throws(IOException::class)
        override fun onStream(stream: Http2Stream) {
          val peekedResponse = dispatcher.peek()
          if (peekedResponse.socketPolicy is ResetStreamAtStart) {
            dispatchBookkeepingRequest(sequenceNumber.getAndIncrement(), socket)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener.go

    		// If Mesh TLSDefaults are set, use them.
    		applyDownstreamTLSDefaults(mesh.GetTlsDefaults(), ctx.CommonTlsContext)
    		applyServerTLSSettings(serverTLSSettings, ctx.CommonTlsContext)
    	}
    
    	// Compliance for Envoy TLS downstreams.
    	authnmodel.EnforceCompliance(ctx.CommonTlsContext)
    	return ctx
    }
    
    func applyDownstreamTLSDefaults(tlsDefaults *meshconfig.MeshConfig_TLSConfig, ctx *auth.CommonTlsContext) {
    	if tlsDefaults == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. RELEASE.md

    *   Build, Compilation and Packaging
        * TensorFlow is now compiled with `_GLIBCXX_USE_CXX11_ABI=1`. Downstream projects that encounter `std::__cxx11` or `[abi:cxx11]` linker errors will need to adopt this compiler option. See [the GNU C++ Library docs on Dual ABI](https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_dual_abi.html).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        val maxConcurrentStreamsUpdated = CountDownLatch(1)
        val maxConcurrentStreams = AtomicInteger()
        val listener: Http2Connection.Listener =
          object : Http2Connection.Listener() {
            override fun onStream(stream: Http2Stream) {
              throw AssertionError()
            }
    
            override fun onSettings(
              connection: Http2Connection,
              settings: Settings,
            ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
Back to top