Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for spdyStream (0.5 sec)

  1. pkg/kube/spdy.go

    		// nolint: gosec
    		tlsConfig = &tls.Config{
    			InsecureSkipVerify: true,
    		}
    	}
    
    	var upgrader *spdyStream.SpdyRoundTripper
    	if restConfig.Proxy != nil {
    		upgrader, err = spdyStream.NewRoundTripperWithProxy(tlsConfig, restConfig.Proxy)
    		if err != nil {
    			return nil, nil, err
    		}
    	} else {
    		upgrader, err = spdyStream.NewRoundTripper(tlsConfig)
    		if err != nil {
    			return nil, nil, err
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 21:30:37 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/connection.go

    */
    
    package spdy
    
    import (
    	"net"
    	"net/http"
    	"sync"
    	"time"
    
    	"github.com/moby/spdystream"
    	"k8s.io/apimachinery/pkg/util/httpstream"
    	"k8s.io/klog/v2"
    )
    
    // connection maintains state about a spdystream.Connection and its associated
    // streams.
    type connection struct {
    	conn             *spdystream.Connection
    	streams          map[uint32]httpstream.Stream
    	streamLock       sync.Mutex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 01 15:04:07 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/upgrade.go

    // capable of upgrading HTTP responses using SPDY/3.1 via the
    // spdystream package.
    func NewResponseUpgrader() httpstream.ResponseUpgrader {
    	return NewResponseUpgraderWithPings(0)
    }
    
    // NewResponseUpgraderWithPings returns a new httpstream.ResponseUpgrader that
    // is capable of upgrading HTTP responses using SPDY/3.1 via the spdystream
    // package.
    //
    // If pingPeriod is non-zero, for each incoming connection a background
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 28 08:02:09 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/connection_test.go

    limitations under the License.
    */
    
    package spdy
    
    import (
    	"fmt"
    	"io"
    	"net"
    	"net/http"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    
    	"github.com/moby/spdystream"
    	"k8s.io/apimachinery/pkg/util/httpstream"
    )
    
    func runProxy(t *testing.T, backendUrl string, proxyUrl chan<- string, proxyDone chan<- struct{}, errCh chan<- error) {
    	listener, err := net.Listen("tcp4", "localhost:0")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 11:58:57 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/go.mod

    	github.com/golang/protobuf v1.5.4
    	github.com/google/gnostic-models v0.6.8
    	github.com/google/go-cmp v0.6.0
    	github.com/google/gofuzz v1.2.0
    	github.com/google/uuid v1.3.1
    	github.com/moby/spdystream v0.2.0
    	github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f
    	github.com/onsi/ginkgo/v2 v2.19.0
    	github.com/spf13/pflag v1.0.5
    	github.com/stretchr/testify v1.8.4
    	golang.org/x/net v0.25.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. LICENSES/vendor/github.com/moby/spdystream/LICENSE

    = vendor/github.com/moby/spdystream licensed under: =
    
    
                                     Apache License
                               Version 2.0, January 2004
                            http://www.apache.org/licenses/
    
       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    
       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 29 09:26:05 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/go.sum

    github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0=
    github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
    github.com/moby/spdystream v0.2.0 h1:cjW1zVyyoiM0T7b6UoySUFqzXMoqRckQtXwGPiBhOM8=
    github.com/moby/spdystream v0.2.0/go.mod h1:f7i0iNDQJ059oMTcWxx8MA/zKFIuD/lY+0GqbN2Wy8c=
    github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/go.mod

    	github.com/jonboulle/clockwork v0.2.2 // indirect
    	github.com/josharian/intern v1.0.0 // indirect
    	github.com/json-iterator/go v1.1.12 // indirect
    	github.com/mailru/easyjson v0.7.7 // indirect
    	github.com/moby/spdystream v0.2.0 // indirect
    	github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
    	github.com/modern-go/reflect2 v1.0.2 // indirect
    	github.com/pkg/errors v0.9.1 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/go.mod

    	github.com/jonboulle/clockwork v0.2.2 // indirect
    	github.com/josharian/intern v1.0.0 // indirect
    	github.com/json-iterator/go v1.1.12 // indirect
    	github.com/mailru/easyjson v0.7.7 // indirect
    	github.com/moby/spdystream v0.2.0 // indirect
    	github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
    	github.com/modern-go/reflect2 v1.0.2 // indirect
    	github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/go.sum

    github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
    github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
    github.com/moby/spdystream v0.2.0/go.mod h1:f7i0iNDQJ059oMTcWxx8MA/zKFIuD/lY+0GqbN2Wy8c=
    github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top