Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for disableCompression (0.26 sec)

  1. internal/http/transports.go

    	// 		// if a response to Ping is not received.
    	// 		trhttp2.PingTimeout = dialTimeout
    	// 		// DisableCompression, if true, prevents the Transport from
    	// 		// requesting compression with an "Accept-Encoding: gzip"
    	// 		trhttp2.DisableCompression = true
    	// 	}
    	// }
    
    	return tr
    }
    
    // NewInternodeHTTPTransport returns transport for internode MinIO connections.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/client-go/pkg/apis/clientauthentication/v1,Cluster,CertificateAuthorityData
    API rule violation: names_match,k8s.io/client-go/pkg/apis/clientauthentication/v1,Cluster,DisableCompression
    API rule violation: names_match,k8s.io/client-go/pkg/apis/clientauthentication/v1,Cluster,InsecureSkipTLSVerify
    API rule violation: names_match,k8s.io/client-go/pkg/apis/clientauthentication/v1,Cluster,ProxyURL
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/config.go

    	// Disable compression for self-communication, since we are going to be
    	// on a fast local network
    	genericConfig.LoopbackClientConfig.DisableCompression = true
    
    	kubeClientConfig := genericConfig.LoopbackClientConfig
    	clientgoExternalClient, err := clientgoclientset.NewForConfig(kubeClientConfig)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. cmd/update.go

    		ExpectContinueTimeout: timeout,
    		TLSClientConfig: &tls.Config{
    			RootCAs:            globalRootCAs,
    			ClientSessionCache: tls.NewLRUClientSessionCache(tlsClientSessionCacheSize),
    		},
    		DisableCompression: true,
    	}
    	return updateTransport
    }
    
    func getLatestReleaseTime(u *url.URL, timeout time.Duration, mode string) (sha256Sum []byte, releaseTime time.Time, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    		DialTLS:                t.DialTLS,
    		DialTLSContext:         t.DialTLSContext,
    		TLSHandshakeTimeout:    t.TLSHandshakeTimeout,
    		DisableKeepAlives:      t.DisableKeepAlives,
    		DisableCompression:     t.DisableCompression,
    		MaxIdleConns:           t.MaxIdleConns,
    		MaxIdleConnsPerHost:    t.MaxIdleConnsPerHost,
    		MaxConnsPerHost:        t.MaxConnsPerHost,
    		IdleConnTimeout:        t.IdleConnTimeout,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. src/net/http/clientserver_test.go

    			gz.Close()
    		},
    	}.run(t)
    }
    
    func TestH12_AutoGzip_Disabled(t *testing.T) {
    	h12Compare{
    		Opts: []any{
    			func(tr *Transport) { tr.DisableCompression = true },
    		},
    		Handler: func(w ResponseWriter, r *Request) {
    			fmt.Fprintf(w, "%q", r.Header["Accept-Encoding"])
    			if ae := r.Header.Get("Accept-Encoding"); ae != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    	}
    	if t.MaxReadFrameSize > http2maxFrameSize {
    		return http2maxFrameSize
    	}
    	return t.MaxReadFrameSize
    }
    
    func (t *http2Transport) disableCompression() bool {
    	return t.DisableCompression || (t.t1 != nil && t.t1.DisableCompression)
    }
    
    func (t *http2Transport) pingTimeout() time.Duration {
    	if t.PingTimeout == 0 {
    		return 15 * time.Second
    	}
    	return t.PingTimeout
    
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    		TLSClientConfig:        new(tls.Config),
    		TLSHandshakeTimeout:    time.Second,
    		DisableKeepAlives:      true,
    		DisableCompression:     true,
    		MaxIdleConns:           1,
    		MaxIdleConnsPerHost:    1,
    		MaxConnsPerHost:        1,
    		IdleConnTimeout:        time.Second,
    		ResponseHeaderTimeout:  time.Second,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"disable-compression": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top