Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 624 for silver (0.17 sec)

  1. pilot/pkg/networking/core/networkfilter.go

    	"istio.io/istio/pkg/wellknown"
    )
    
    // redisOpTimeout is the default operation timeout for the Redis proxy filter.
    var redisOpTimeout = 5 * time.Second
    
    func buildMetadataExchangeNetworkFilters() []*listener.Filter {
    	filterstack := make([]*listener.Filter, 0)
    	// We add metadata exchange on inbound only; outbound is handled in cluster filter
    	if features.MetadataExchange {
    		filterstack = append(filterstack, xdsfilters.TCPListenerMx)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. pkg/kube/kclient/client.go

    func applyDynamicFilter[T controllers.ComparableObject](filter Filter, gvr schema.GroupVersionResource, ic *informerClient[T]) {
    	if filter.ObjectFilter != nil {
    		ic.filter = filter.ObjectFilter.Filter
    		filter.ObjectFilter.AddHandler(func(added, removed sets.String) {
    			ic.handlerMu.RLock()
    			defer ic.handlerMu.RUnlock()
    			if gvr == istiogvr.Namespace {
    				// Namespace is special; we query all namespaces
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. pkg/config/validation/envoyfilter/envoyfilter_test.go

    									Sni:    "124",
    									Filter: &networking.EnvoyFilter_ListenerMatch_FilterMatch{},
    								},
    							},
    						},
    					},
    					Patch: &networking.EnvoyFilter_Patch{
    						Operation: networking.EnvoyFilter_Patch_REMOVE,
    					},
    				},
    			},
    		}, error: "Envoy filter: filter match has no name to match on"},
    		{name: "listener with sub filter match and invalid applyTo", in: &networking.EnvoyFilter{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/toolchain/DaemonJavaToolchainQueryServiceTest.groovy

            given:
            def queryService = createQueryServiceWithInstallations(versionRange(8, 12))
    
            when:
            def filter = createSpec(JavaLanguageVersion.of(versionToFind))
            def toolchain = queryService.findMatchingToolchain(filter)
    
            then:
            toolchain.languageVersion == JavaVersion.toVersion(versionToFind)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/model/generator_test.go

    			in: "*",
    			want: `
            and_ids:
              ids:
              - metadata:
                  filter: envoy.filters.http.jwt_authn
                  path:
                  - key: payload
                  - key: iss
                  value:
                    string_match:
                      safe_regex: {regex: .+}
              - metadata:
                  filter: envoy.filters.http.jwt_authn
                  path:
                  - key: payload
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. pkg/scheduler/apis/config/v1/default_plugins_test.go

    			customPlugins: &v1.Plugins{
    				Filter: v1.PluginSet{
    					Enabled: []v1.Plugin{
    						{Name: "CustomPlugin"},
    					},
    				},
    			},
    			defaultPlugins: &v1.Plugins{
    				Filter: v1.PluginSet{
    					Enabled: []v1.Plugin{
    						{Name: "DefaultPlugin1"},
    						{Name: "DefaultPlugin2"},
    					},
    				},
    			},
    			expectedPlugins: &v1.Plugins{
    				Filter: v1.PluginSet{
    					Enabled: []v1.Plugin{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    		return false
    	}
    
    	return fcMatch.Filter != nil
    }
    
    // We assume that the parent listener and filter chain have already been matched
    func networkFilterMatch(filter *listener.Filter, cp *model.EnvoyFilterConfigPatchWrapper) bool {
    	if !hasNetworkFilterMatch(cp) {
    		return true
    	}
    
    	return cp.Match.GetListener().FilterChain.Filter.Name == filter.Name
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

                    Map.of("_default", List.of("QUERY1")),...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 37.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

            return findFirst(source, filter) != null;
        }
    
        public static <T> boolean any(T[] source, Spec<? super T> filter) {
            return findFirst(source, filter) != null;
        }
    
        public static <T> Set<T> filter(Set<? extends T> set, Spec<? super T> filter) {
            return filter(set, new LinkedHashSet<T>(), filter);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/testdata/http/extended-single-policy-out.yaml

                            filter: envoy.filters.http.jwt_authn
                            path:
                            - key: payload
                            - key: iss
                            value:
                              stringMatch:
                                exact: rule[0]-from[0]-requestPrincipal[1]
                        - metadata:
                            filter: envoy.filters.http.jwt_authn
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top