Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 373 for filterFn (0.17 sec)

  1. android/guava/src/com/google/common/collect/Multimaps.java

            : new FilteredEntrySetMultimap<K, V>(checkNotNull(unfiltered), entryPredicate);
      }
    
      /**
       * Support removal operations when filtering a filtered multimap. Since a filtered multimap has
       * iterators that don't support remove, passing one to the FilteredEntryMultimap constructor would
       * lead to a multimap whose removal operations would fail. This method combines the predicates to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  2. pilot/pkg/security/authn/factory.go

    	// JwtFilter returns the JWT HTTP filter to enforce the underlying authentication policy.
    	// It may return nil, if no JWT validation is needed.
    	JwtFilter(useExtendedJwt, clearRouteCache bool) *hcm.HttpFilter
    
    	// AuthNFilter returns the (authn) HTTP filter to enforce the underlying authentication policy.
    	// It may return nil, if no authentication is needed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. pilot/pkg/simulation/traffic.go

    			return input.TLS == Plaintext
    		}
    		return false
    	})
    	chains = filter("ApplicationProtocols", chains, func(fc *listener.FilterChainMatch) bool {
    		return fc.GetApplicationProtocols() == nil
    	}, func(fc *listener.FilterChainMatch) bool {
    		return sets.New(fc.GetApplicationProtocols()...).Contains(input.Alpn)
    	})
    	// We do not implement the "source" based filters as we do not use them
    	if len(chains) > 1 {
    		for _, c := range chains {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. pkg/bootstrap/testdata/default_golden.json

                "port_value": 15090
              }
            },
            "filter_chains": [
              {
                "filters": [
                  {
                    "name": "envoy.filters.network.http_connection_manager",
                    "typed_config": {
                      "@type": "type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager",
                      "codec_type": "AUTO",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. pkg/bootstrap/testdata/tracing_datadog_golden.json

                "port_value": 15090
              }
            },
            "filter_chains": [
              {
                "filters": [
                  {
                    "name": "envoy.filters.network.http_connection_manager",
                    "typed_config": {
                      "@type": "type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager",
                      "codec_type": "AUTO",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. pkg/bootstrap/testdata/metrics_no_statsd_golden.json

                "port_value": 15090
              }
            },
            "filter_chains": [
              {
                "filters": [
                  {
                    "name": "envoy.filters.network.http_connection_manager",
                    "typed_config": {
                      "@type": "type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager",
                      "codec_type": "AUTO",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. pkg/bootstrap/testdata/running_golden.json

                "port_value": 15090
              }
            },
            "filter_chains": [
              {
                "filters": [
                  {
                    "name": "envoy.filters.network.http_connection_manager",
                    "typed_config": {
                      "@type": "type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager",
                      "codec_type": "AUTO",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. pilot/pkg/xds/endpoints/ep_filters.go

    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/network"
    )
    
    // EndpointsByNetworkFilter is a network filter function to support Split Horizon EDS - filter the endpoints based on the network
    // of the connected sidecar. The filter will filter out all endpoints which are not present within the
    // sidecar network and add a gateway endpoint to remote networks that have endpoints
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/cmd/trace/jsontrace_test.go

    // of the given filters.
    func filterViewerTrace(data format.Data, fns ...eventFilterFn) (filtered format.Data) {
    	filtered = data
    	filtered.Events = nil
    	for _, e := range data.Events {
    		keep := true
    		for _, fn := range fns {
    			keep = keep && fn(e, &filtered)
    		}
    		if keep {
    			filtered.Events = append(filtered.Events, e)
    		}
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. pilot/pkg/xds/endpoints/ep_filters_test.go

    			proxy := ds.SetupProxy(tt.proxy)
    			b := endpoints.NewEndpointBuilder(cn, proxy, ds.PushContext())
    			filtered := b.BuildClusterLoadAssignment(testShards()).Endpoints
    			xdstest.CompareEndpointsOrFail(t, cn, filtered, tt.want)
    			// check workload metadata
    			var gotWorkloadMetadata []string
    			for _, llbEndpoints := range filtered {
    				for _, ep := range llbEndpoints.LbEndpoints {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top