Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 66 for proxyEnv (0.11 sec)

  1. pkg/proxy/util/utils.go

    	if cidr == IPv4ZeroCIDR || cidr == IPv6ZeroCIDR {
    		return true
    	}
    	return false
    }
    
    // ShouldSkipService checks if a given service should skip proxying
    func ShouldSkipService(service *v1.Service) bool {
    	// if ClusterIP is "None" or empty, skip proxying
    	if !helper.IsServiceIPSet(service) {
    		klog.V(3).InfoS("Skipping service due to cluster IP", "service", klog.KObj(service), "clusterIP", service.Spec.ClusterIP)
    		return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    	FlushInterval time.Duration
    	// MaxBytesPerSec controls the maximum rate for an upstream connection. No rate is imposed if the value is zero.
    	MaxBytesPerSec int64
    	// Responder is passed errors that occur while setting up proxying.
    	Responder ErrorResponder
    	// Reject to forward redirect response
    	RejectForwardingRedirects bool
    }
    
    const defaultFlushInterval = 200 * time.Millisecond
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. docs/bucket/replication/test_del_marker_proxying.sh

    ./mc version enable sitea/bucket
    ./mc mb siteb/bucket
    ./mc version enable siteb/bucket
    
    # Set bucket replication
    ./mc replicate add sitea/bucket --remote-bucket siteb/bucket
    
    # Run the test to make sure proxying of DEL marker doesn't happen
    loop_count=0
    while true; do
    	if [ $loop_count -eq 100 ]; then
    		break
    	fi
    	echo "Hello World" | ./mc pipe sitea/bucket/obj$loop_count
    	./mc rm sitea/bucket/obj$loop_count
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 11:38:26 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/proxy/dial.go

    	"k8s.io/apimachinery/third_party/forked/golang/netutil"
    	"k8s.io/klog/v2"
    )
    
    // DialURL will dial the specified URL using the underlying dialer held by the passed
    // RoundTripper. The primary use of this method is to support proxying upgradable connections.
    // For this reason this method will prefer to negotiate http/1.1 if the URL scheme is https.
    // If you wish to ensure ALPN negotiates http2 then set NextProto=[]string{"http2"} in the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    	HTTPSProxy string
    
    	// NoProxy represents the NO_PROXY or no_proxy environment
    	// variable. It specifies a string that contains comma-separated values
    	// specifying hosts that should be excluded from proxying. Each value is
    	// represented by an IP address prefix (1.2.3.4), an IP address prefix in
    	// CIDR notation (1.2.3.4/8), a domain name, or a special DNS label (*).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. Makefile

    test-delete-replication:
    	@(env bash $(PWD)/docs/bucket/replication/delete-replication.sh)
    
    test-delete-marker-proxying:
    	@(env bash $(PWD)/docs/bucket/replication/test_del_marker_proxying.sh)
    
    test-replication: install-race test-replication-2site test-replication-3site test-delete-replication test-sio-error test-delete-marker-proxying ## verify multi site replication
    	@echo "Running tests for replicating three sites"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcweb/hg.go

    		}()
    
    		u, err := url.Parse(strings.TrimSpace(line))
    		if err != nil {
    			logger.Printf("%v: %v", cmd, err)
    			http.Error(w, err.Error(), http.StatusBadGateway)
    			return
    		}
    		logger.Printf("proxying hg request to %s", u)
    		httputil.NewSingleHostReverseProxy(u).ServeHTTP(w, req)
    	})
    
    	return handler, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 02:52:19 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. internal/config/api/help.go

    			Optional:    true,
    			Type:        "csv",
    		},
    		config.HelpKV{
    			Key:         apiRemoteTransportDeadline,
    			Description: `set the deadline for API requests on remote transports while proxying between federated instances e.g. "2h"` + defaultHelpPostfix(apiRemoteTransportDeadline),
    			Optional:    true,
    			Type:        "duration",
    		},
    		config.HelpKV{
    			Key:         apiListQuorum,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 15 01:07:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/sumdb.go

    	// client should first fetch <proxyURL>/sumdb/<sumdb-name>/supported.
    	//
    	// If that request returns a successful (HTTP 200) response, then the proxy
    	// supports proxying checksum database requests. In that case, the client
    	// should use the proxied access method only, never falling back to a direct
    	// connection to the database.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:02:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go

    	// Optional.
    	UpgradeTransport http.RoundTripper
    }
    
    // TLSClientConfig implements pkg/util/net.TLSClientConfigHolder for proper TLS checking during
    // proxying with a spdy roundtripper.
    func (s *SpdyRoundTripper) TLSClientConfig() *tls.Config {
    	return s.tlsConfig
    }
    
    // Dial implements k8s.io/apimachinery/pkg/util/net.Dialer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top