Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 131 for proxyv2 (0.09 sec)

  1. pkg/util/iptables/testing/parse.go

    		}
    	}
    	return nil, fmt.Errorf("no such chain %q", chain)
    }
    
    // Rule represents a single parsed IPTables rule. (This currently covers all of the rule
    // types that we actually use in pkg/proxy/iptables or pkg/proxy/ipvs.)
    //
    // The parsing is mostly-automated based on type reflection. The `param` tag on a field
    // indicates the parameter whose value will be placed into that field. (The code assumes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt

     * [newFixedLengthSource(0)][newFixedLengthSource] and may skip reading and closing that source.
     */
    class Http1ExchangeCodec(
      /** The client that configures this stream. May be null for HTTPS proxy tunnels. */
      private val client: OkHttpClient?,
      override val carrier: ExchangeCodec.Carrier,
      private val source: BufferedSource,
      private val sink: BufferedSink,
    ) : ExchangeCodec {
      private var state = STATE_IDLE
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/networkfilter_test.go

    				Services: []*model.Service{
    					buildServiceWithPort("example.com", 443, protocol.TLS, tnow),
    					buildServiceWithPort("tunnel-proxy.com", 3128, protocol.HTTP, tnow),
    				},
    			})
    			proxy := cg.SetupProxy(&model.Proxy{ConfigNamespace: ns})
    			lb := ListenerBuilder{node: proxy, push: cg.PushContext()}
    			filters := lb.buildOutboundNetworkFilters(tt.routeDestinations,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. docs/pt/docs/deployment.md

    ### Vamos encriptar
    
    Antes de encriptar, esses certificados HTTPS foram vendidos por terceiros de confiança.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 18 16:16:54 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_traffic_policy.go

    	opts *buildClusterOpts,
    	proxyProtocol *networking.TrafficPolicy_ProxyProtocol,
    ) {
    	if proxyProtocol == nil {
    		return
    	}
    	c := opts.mutable
    	if c.cluster.TransportSocket != nil {
    		// add an upstream proxy protocol wrapper for transportSocket
    		c.cluster.TransportSocket = &core.TransportSocket{
    			Name: "envoy.transport_sockets.upstream_proxy_protocol",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    				},
    				Verb:            "GET",
    				Namespace:       "kittensandponies",
    				APIGroup:        "group3",
    				APIVersion:      "v7beta3",
    				Resource:        "pods",
    				Subresource:     "proxy",
    				Name:            "my-pod",
    				ResourceRequest: true,
    				Path:            "/foo",
    			},
    			want: authorizationv1beta1.SubjectAccessReview{
    				TypeMeta: expTypeMeta,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/ads.go

    			Zone:    proxy.XdsNode.Locality.GetZone(),
    			SubZone: proxy.XdsNode.Locality.GetSubZone(),
    		}
    	}
    	// add topology labels to proxy labels
    	proxy.Labels = labelutil.AugmentLabels(
    		proxy.Labels,
    		proxy.Metadata.ClusterID,
    		util.LocalityToString(proxy.Locality),
    		proxy.GetNodeName(),
    		proxy.Metadata.Network,
    	)
    }
    
    func localityFromProxyLabels(proxy *model.Proxy) *core.Locality {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. pkg/features/kube_features.go

    	// owner: @ksubrmnn
    	// alpha: v1.14
    	//
    	// Allows kube-proxy to create DSR loadbalancers for Windows
    	WinDSR featuregate.Feature = "WinDSR"
    
    	// owner: @ksubrmnn
    	// alpha: v1.14
    	// beta: v1.20
    	//
    	// Allows kube-proxy to run in Overlay mode for Windows
    	WinOverlay featuregate.Feature = "WinOverlay"
    
    	// owner: @marosset
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. pkg/config/validation/agent/validation.go

    	// but that requires additional test validation
    	if config.DiscoveryAddress == "" {
    		errs = multierror.Append(errs, errors.New("discovery address must be set to the proxy discovery service"))
    	} else if err := ValidateProxyAddress(config.DiscoveryAddress); err != nil {
    		errs = multierror.Append(errs, multierror.Prefix(err, "invalid discovery address:"))
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

    import org.apache.maven.wagon.authorization.AuthorizationException;
    import org.apache.maven.wagon.events.TransferListener;
    import org.apache.maven.wagon.observers.ChecksumObserver;
    import org.apache.maven.wagon.proxy.ProxyInfo;
    import org.apache.maven.wagon.repository.Repository;
    import org.codehaus.plexus.PlexusContainer;
    import org.codehaus.plexus.component.repository.exception.ComponentLifecycleException;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 29.9K bytes
    - Viewed (0)
Back to top