Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for proxyv2 (0.29 sec)

  1. pilot/pkg/model/sidecar.go

    // DestinationRuleConfig returns merged destination rules for a svc.
    func (sc *SidecarScope) DestinationRuleConfig(direction TrafficDirection, proxy *Proxy, svc host.Name) *config.Config {
    	cdr := sc.DestinationRule(direction, proxy, svc)
    	if cdr == nil {
    		return nil
    	}
    	return cdr.rule
    }
    
    // Services returns the list of services that are visible to a sidecar.
    func (sc *SidecarScope) Services() []*Service {
    	return sc.services
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/run.go

    				// handle this case, we exclude port 53 from this rule. Note: We cannot just move the
    				// port 53 redirection rule further up the list, as we will want to avoid capturing
    				// DNS requests from the proxy UID/GID
    				cfg.ruleBuilder.AppendRule(iptableslog.UndefinedCommand, constants.ISTIOOUTPUT, constants.NAT, "-o", "lo", "-p", "tcp",
    					"!", "--dport", "53",
    					"-m", "owner", "!", "--uid-owner", uid, "-j", constants.RETURN)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  3. go.sum

    github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U=
    github.com/tmc/grpc-websocket-proxy v0.0.0-20220101234140-673ab2c3ae75 h1:6fotK7otjonDflCTK0BCfls4SPy3NcCVb5dqqmbRknE=
    github.com/tmc/grpc-websocket-proxy v0.0.0-20220101234140-673ab2c3ae75/go.mod h1:KO6IkyS8Y3j8OdNO85qEYBsRPuteD+YciPomcXdrMnk=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    The version control command restrictions only apply when using direct version
    control access to download code. When downloading modules from a proxy,
    'go get' uses the proxy protocol instead, which is always permitted.
    By default, the 'go get' command uses the Go module mirror (proxy.golang.org)
    for public packages and only falls back to version control for private
    packages or when the mirror refuses to serve a public package (typically for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    	{req: "http://insecure.tld/", env: "http.proxy.tld", httpsenv: "secure.proxy.tld", want: "http://http.proxy.tld"},
    	// Use secure for https.
    	{req: "https://secure.tld/", env: "http.proxy.tld", httpsenv: "secure.proxy.tld", want: "http://secure.proxy.tld"},
    	{req: "https://secure.tld/", env: "http.proxy.tld", httpsenv: "https://secure.proxy.tld", want: "https://secure.proxy.tld"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. CREDITS

    General Public License ever published by the Free Software Foundation.
    
      If the Library as you received it specifies that a proxy can decide
    whether future versions of the GNU Lesser General Public License shall
    apply, that proxy's public statement of acceptance of any version is
    permanent authorization for you to choose that version for the
    Library.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  7. src/net/http/server.go

    // support [Flusher], but ResponseWriter wrappers may not. Handlers
    // should always test for this ability at runtime.
    //
    // Note that even for ResponseWriters that support Flush,
    // if the client is connected through an HTTP proxy,
    // the buffered data may not reach the client until the response
    // completes.
    type Flusher interface {
    	// Flush sends any buffered data to the client.
    	Flush()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    	}
    }
    
    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