Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 120 for filterchain (0.57 sec)

  1. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

    import java.io.OutputStream;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.util.Locale;
    import java.util.UUID;
    
    import javax.annotation.PostConstruct;
    import javax.servlet.FilterChain;
    import javax.servlet.ServletException;
    import javax.servlet.ServletInputStream;
    import javax.servlet.ServletOutputStream;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway.go

    	for i := range ml.Listener.FilterChains {
    		filterChain := ml.Listener.FilterChains[i]
    		opt := opts.filterChainOpts[i]
    		ml.Listener.FilterChains[i].Metadata = opt.metadata
    		if opt.httpOpts == nil {
    			filterChain.Filters = opt.networkFilters
    			log.Debugf("attached %d network filters to listener %q filter chain %d", len(filterChain.Filters), ml.Listener.Name, i)
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  3. pkg/config/xds/xds.go

    	case networking.EnvoyFilter_LISTENER:
    		obj = &listener.Listener{}
    	case networking.EnvoyFilter_ROUTE_CONFIGURATION:
    		obj = &route.RouteConfiguration{}
    	case networking.EnvoyFilter_FILTER_CHAIN:
    		obj = &listener.FilterChain{}
    	case networking.EnvoyFilter_HTTP_FILTER:
    		obj = &hcm.HttpFilter{}
    	case networking.EnvoyFilter_NETWORK_FILTER:
    		obj = &listener.Filter{}
    	case networking.EnvoyFilter_VIRTUAL_HOST:
    		obj = &route.VirtualHost{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/plugin/authn/authentication.go

    	}
    
    	// Then generate the per-port passthrough filter chains.
    	for port := range b.applier.PortLevelSetting() {
    		// Skip the per-port passthrough filterchain if the port is already handled by InboundMTLSConfiguration().
    		if !needPerPortPassthroughFilterChain(port, b.proxy) {
    			continue
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/http/NtlmHttpFilter.java

    package jcifs.http;
    
    
    import java.io.IOException;
    import java.net.UnknownHostException;
    import java.util.Enumeration;
    import java.util.Properties;
    
    import javax.servlet.Filter;
    import javax.servlet.FilterChain;
    import javax.servlet.FilterConfig;
    import javax.servlet.ServletException;
    import javax.servlet.ServletRequest;
    import javax.servlet.ServletResponse;
    import javax.servlet.http.HttpServletRequest;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.8K bytes
    - Viewed (0)
  6. tests/integration/pilot/forwardproxy/envoy_config_generator.go

    		bootstrap.StaticResources.Listeners = append(bootstrap.StaticResources.Listeners, &envoy_listener.Listener{
    			Name:    listenerName,
    			Address: createSocketAddress("::", listenerSettings.Port),
    			FilterChains: []*envoy_listener.FilterChain{
    				{
    					Filters: []*envoy_listener.Filter{
    						{
    							Name: "envoy.filters.network.http_connection_manager",
    							ConfigType: &envoy_listener.Filter_TypedConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 19:22:30 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_test.go

    	}
    	if len(l.FilterChains) != 1 {
    		t.Fatalf("expected %d filter chains, found %d", 1, len(l.FilterChains))
    	}
    
    	verifyHTTPFilterChainMatch(t, l.FilterChains[0])
    	verifyPassThroughTCPFilterChain(t, l.DefaultFilterChain)
    	verifyListenerFilters(t, l.ListenerFilters)
    }
    
    func verifyPassThroughTCPFilterChain(t *testing.T, fc *listener.FilterChain) {
    	t.Helper()
    	f := fc.Filters[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/networkfilter_test.go

    		proxy := node(nil)
    		listenerFilters := NewListenerBuilder(proxy, push).buildInboundNetworkFilters(fcc)
    
    		RBACTCPFilterName := "envoy.filters.network.rbac"
    		listenerFilterChain := &listener.FilterChain{
    			Filters: listenerFilters,
    		}
    		listenertest.VerifyFilterChain(t, listenerFilterChain, listenertest.FilterChainTest{
    			NetworkFilters: []string{xdsfilters.MxFilterName, RBACTCPFilterName, wellknown.TCPProxy},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener.go

    			chain.FilterChainMatch = opt.toFilterChainMatch()
    			l.FilterChains = append(l.FilterChains, chain)
    		}
    	}
    	// If there is only one filter chain, no need to use DefaultFilterChain
    	// This is probably not necessary, but for consistency with older code we keep the same logic.
    	if l.DefaultFilterChain != nil && len(l.FilterChains) == 0 {
    		l.FilterChains = []*listener.FilterChain{l.DefaultFilterChain}
    		l.DefaultFilterChain = nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/util/util.go

    		},
    	}
    
    	return metadata
    }
    
    // IsHTTPFilterChain returns true if the filter chain contains a HTTP connection manager filter
    func IsHTTPFilterChain(filterChain *listener.FilterChain) bool {
    	for _, f := range filterChain.Filters {
    		if f.Name == wellknown.HTTPConnectionManager {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top