Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for multiplexed (0.17 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/httpstream/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package httpstream adds multiplexed streaming support to HTTP requests and
    // responses via connection upgrades.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 20:10:42 UTC 2017
    - 758 bytes
    - Viewed (0)
  2. security/pkg/nodeagent/sds/sdsservice_test.go

    		Key:          fakePrivateKey,
    	}
    	expectRoot := Expectation{
    		ResourceName: rootResourceName,
    		RootCert:     fakeRootCert,
    	}
    	log.FindScope("ads").SetOutputLevel(log.DebugLevel)
    	t.Run("multiplexed", func(t *testing.T) {
    		// In reality Envoy doesn't do this, but it *could* per XDS spec
    		s := setupSDS(t)
    		c := s.Connect()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 20:12:58 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/httpstream/httpstream.go

    	Dial(protocols ...string) (Connection, string, error)
    }
    
    // UpgradeRoundTripper is a type of http.RoundTripper that is able to upgrade
    // HTTP requests to support multiplexed bidirectional streams. After RoundTrip()
    // is invoked, if the upgrade is successful, clients may retrieve the upgraded
    // connection by calling UpgradeRoundTripper.Connection().
    type UpgradeRoundTripper interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/upgrade.go

    func NewResponseUpgraderWithPings(pingPeriod time.Duration) httpstream.ResponseUpgrader {
    	return responseUpgrader{pingPeriod: pingPeriod}
    }
    
    // UpgradeResponse upgrades an HTTP response to one that supports multiplexed
    // streams. newStreamHandler will be called synchronously whenever the
    // other end of the upgraded connection creates a new stream.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 28 08:02:09 UTC 2022
    - 4K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/Protocol.kt

       *
       * [rfc_7540_34]: https://tools.ietf.org/html/rfc7540.section-3.4
       */
      H2_PRIOR_KNOWLEDGE("h2_prior_knowledge"),
    
      /**
       * QUIC (Quick UDP Internet Connection) is a new multiplexed and secure transport atop UDP,
       * designed from the ground up and optimized for HTTP/2 semantics. HTTP/1.1 semantics are layered
       * on HTTP/2.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. docs/contribute/concurrency.md

    #### Framed protocols
    
    Framed protocols like http/2 don't lend themselves to blocking APIs. Each application-layer thread wants to do blocking I/O for a specific stream, but the streams are multiplexed on the socket. You can't just talk to the socket, you need to cooperate with the other application-layer threads that you're sharing it with.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go

    	apiproxy "k8s.io/apimachinery/pkg/util/proxy"
    	"k8s.io/apimachinery/third_party/forked/golang/netutil"
    )
    
    // SpdyRoundTripper knows how to upgrade an HTTP request to one that supports
    // multiplexed streams. After RoundTrip() is invoked, Conn will be set
    // and usable. SpdyRoundTripper implements the UpgradeRoundTripper interface.
    type SpdyRoundTripper struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    	"tls":              "tls represents the TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/networking/v1beta1/generated.proto

      optional IngressBackend backend = 1;
    
      // tls represents the TLS configuration. Currently the Ingress only supports a
      // single TLS port, 443. If multiple members of this list specify different hosts,
      // they will be multiplexed on the same port according to the hostname specified
      // through the SNI TLS extension, if the ingress controller fulfilling the
      // ingress supports SNI.
      // +optional
      repeated IngressTLS tls = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1beta1/generated.proto

      optional IngressBackend backend = 1;
    
      // tls represents the TLS configuration. Currently the Ingress only supports a
      // single TLS port, 443. If multiple members of this list specify different hosts,
      // they will be multiplexed on the same port according to the hostname specified
      // through the SNI TLS extension, if the ingress controller fulfilling the
      // ingress supports SNI.
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top