Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 85 for tproxy (0.18 sec)

  1. src/net/http/transport.go

    //	|https|foo.com                    https directly to server, no proxy
    //	|https,h1|foo.com                 https directly to server w/o HTTP/2, no proxy
    //	http://proxy.com|https|foo.com    http to proxy, then CONNECT to foo.com
    //	http://proxy.com|http             http to proxy, http to anywhere after that
    //	socks5://proxy.com|http|foo.com   socks5 to proxy, then http to foo.com
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*Proxy)(nil), (*kubeadm.Proxy)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1beta4_Proxy_To_kubeadm_Proxy(a.(*Proxy), b.(*kubeadm.Proxy), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*kubeadm.Proxy)(nil), (*Proxy)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/EventListenerTest.kt

      }
    
      @Test
      fun successfulSocksProxyConnect() {
        server.enqueue(MockResponse())
        socksProxy = SocksProxy()
        socksProxy!!.play()
        val proxy = socksProxy!!.proxy()
        client =
          client.newBuilder()
            .proxy(proxy)
            .build()
        val call =
          client.newCall(
            Request.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry_logging_test.go

    			got := telemetry.AccessLogging(ctx, tt.proxy, networking.ListenerClassSidecarOutbound, nil)
    			assert.Equal(t, tt.excepted, got)
    		})
    	}
    }
    
    func TestAccessLoggingCache(t *testing.T) {
    	sidecar := &Proxy{ConfigNamespace: "default", Metadata: &NodeMetadata{Labels: map[string]string{"app": "test"}}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    				},
    			},
    		},
    	}
    
    	sidecarProxy := &model.Proxy{
    		Type:            model.SidecarProxy,
    		ConfigNamespace: "not-default",
    		Metadata: &model.NodeMetadata{
    			IstioVersion: "1.2.2",
    			Raw: map[string]any{
    				"foo": "sidecar",
    				"bar": "proxy",
    			},
    		},
    	}
    
    	gatewayProxy := &model.Proxy{
    		Type:            model.Router,
    		ConfigNamespace: "not-default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        private final CountDownLatch returned = new CountDownLatch(1);
        private Object proxy;
    
        @SuppressWarnings("unchecked") // proxy for a generic class
        <V> Callable<V> waitFor(Callable<V> callable) {
          return waitFor(callable, Callable.class);
        }
    
        @SuppressWarnings("unchecked") // proxy for a generic class
        <V> ClosingCallable<V> waitFor(ClosingCallable<V> closingCallable) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        private final CountDownLatch returned = new CountDownLatch(1);
        private Object proxy;
    
        @SuppressWarnings("unchecked") // proxy for a generic class
        <V> Callable<V> waitFor(Callable<V> callable) {
          return waitFor(callable, Callable.class);
        }
    
        @SuppressWarnings("unchecked") // proxy for a generic class
        <V> ClosingCallable<V> waitFor(ClosingCallable<V> closingCallable) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/sidecar_test.go

    				},
    				Spec: &networking.Sidecar{},
    			},
    			services: []*Service{
    				{
    					Hostname: "proxy",
    					Ports:    port7000,
    					Attributes: ServiceAttributes{
    						Name:      "s1",
    						Namespace: "default",
    					},
    				},
    				{
    					Hostname: "proxy",
    					Ports:    port7443,
    					Attributes: ServiceAttributes{
    						Name:      "s2",
    						Namespace: "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route_test.go

    		},
    	}
    
    	node := func(cg *core.ConfigGenTest) *model.Proxy {
    		return cg.SetupProxy(&model.Proxy{
    			Type:        model.SidecarProxy,
    			IPAddresses: []string{"1.1.1.1"},
    			ID:          "someID",
    			DNSDomain:   "foo.com",
    			IstioVersion: &model.IstioVersion{
    				Major: 1,
    				Minor: 20,
    			},
    		})
    	}
    
    	nodeWithExtended := func(cg *core.ConfigGenTest) *model.Proxy {
    		out := node(cg)
    		out.IstioVersion.Minor = 21
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/route/route.go

    func TranslateCORSPolicy(proxy *model.Proxy, in *networking.CorsPolicy) *cors.CorsPolicy {
    	if in == nil {
    		return nil
    	}
    
    	// CORS filter is enabled by default
    	out := cors.CorsPolicy{}
    	// Start from Envoy 1.30(istio 1.22), cors filter will not forward preflight requests to upstream by default.
    	// Istio start support this feature from 1.23.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
Back to top