Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 880 for Hiltner (0.11 sec)

  1. src/go/ast/filter.go

    	if len(lit.Elts) < n {
    		lit.Incomplete = true
    	}
    }
    
    func filterExprList(list []Expr, filter Filter, export bool) []Expr {
    	j := 0
    	for _, exp := range list {
    		switch x := exp.(type) {
    		case *CompositeLit:
    			filterCompositeLit(x, filter, export)
    		case *KeyValueExpr:
    			if x, ok := x.Key.(*Ident); ok && !filter(x.Name) {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter.go

    	}
    	return NewFilter(compilationResults)
    }
    
    // filter implements the Filter interface
    type filter struct {
    	compilationResults []CompilationResult
    }
    
    func NewFilter(compilationResults []CompilationResult) Filter {
    	return &filter{
    		compilationResults,
    	}
    }
    
    func convertObjectToUnstructured(obj interface{}) (*unstructured.Unstructured, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/JavaToolchainQueryServiceTest.groovy

            when:
            def filter = createSpec()
            filter.languageVersion.set(JavaLanguageVersion.of(8))
            filter.implementation.set(JvmImplementation.J9)
            def toolchain = queryService.findMatchingToolchain(filter).get()
    
            then:
            toolchain.languageVersion == JavaLanguageVersion.of(8)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

    			<arguments/>
    		</buildCommand>
    	</buildSpec>
    	<linkedResources/>
    	<filteredResources>
    		<filter>
    			<id>1</id>
    			<type>9</type>
    			<name/>
    			<matcher>
    				<id>org.eclipse.some.custom.matcher</id>
    				<arguments>foobar</arguments>
    			</matcher>
    		</filter>
    		<filter>
    			<id>2</id>
    			<type>30</type>
    			<name/>
    			<matcher>
    				<id>org.eclipse.some.custom.matcher</id>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  5. pkg/config/validation/envoyfilter/envoyfilter.go

    								fmt.Errorf("Envoy filter: filter match has no effect when used with %v", cp.ApplyTo))) // nolint: stylecheck
    						}
    						// filter names are required if network filter matches are being made
    						if listenerMatch.FilterChain.Filter.Name == "" {
    							errs = validation.AppendValidation(errs, fmt.Errorf("Envoy filter: filter match has no name to match on")) // nolint: stylecheck
    							continue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-out.yaml

                - orRules:
                    rules:
                    - metadata:
                        filter: envoy.filters.a.b
                        path:
                        - key: c
                        value:
                          stringMatch:
                            exact: exact
                    - metadata:
                        filter: envoy.filters.a.b
                        path:
                        - key: c
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-out.yaml

                        - metadata:
                            filter: envoy.filters.http.jwt_authn
                            path:
                            - key: payload
                            - key: iss
                            value:
                              stringMatch:
                                exact: requestPrincipals
                        - metadata:
                            filter: envoy.filters.http.jwt_authn
                            path:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top