Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 3,957 for Filler (0.11 sec)

  1. pilot/pkg/security/authz/matcher/metadata.go

    // string matcher.
    func MetadataValueMatcher(filter, key string, m *matcher.ValueMatcher) *matcher.MetadataMatcher {
    	return &matcher.MetadataMatcher{
    		Filter: filter,
    		Path: []*matcher.MetadataMatcher_PathSegment{
    			{
    				Segment: &matcher.MetadataMatcher_PathSegment_Key{
    					Key: key,
    				},
    			},
    		},
    		Value: m,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. 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)
  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. src/cmd/cgo/internal/test/issue1435.go

    		call           string
    		fn             func() error
    		filter, expect string
    	}{
    		{call: "Setegid(1)", fn: func() error { return syscall.Setegid(1) }, filter: "Gid:", expect: "\t0\t1\t0\t1"},
    		{call: "Setegid(0)", fn: func() error { return syscall.Setegid(0) }, filter: "Gid:", expect: "\t0\t0\t0\t0"},
    
    		{call: "Seteuid(1)", fn: func() error { return syscall.Seteuid(1) }, filter: "Uid:", expect: "\t0\t1\t0\t1"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 21:31:41 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/LineFilterTest.groovy

            def lineCount = 1
            def filter = new LineFilter(input, { "${lineCount++} - $it" as String })
    
            assertThat(filter.text, equalTo(""))
        }
    
        @Test void testEmptyLinesWithTrailingEOL() {
            def input = new StringReader("\n\n")
            def lineCount = 1
            def filter = new LineFilter(input, { "${lineCount++} - $it" as String })
    
            assertThat(filter.text, equalTo(lines("1 - ", "2 - ", "")))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 19 19:02:02 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/dynamicresources/structured/namedresources/namedresourcesmodel_test.go

    				},
    			},
    		},
    	}
    
    	testcases := map[string]struct {
    		model    Model
    		filter   *resourceapi.NamedResourcesFilter
    		requests []*resourceapi.NamedResourcesRequest
    
    		expectCreateErr   bool
    		expectAllocation  []string
    		expectAllocateErr bool
    	}{
    		"empty": {},
    
    		"broken-filter": {
    			filter: filterBrokenType,
    
    			expectCreateErr: true,
    		},
    
    		"broken-request": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 09:27:01 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/configdump/endpoint_test.go

    			outputFormat: "json",
    			filter:       EndpointFilter{},
    		},
    		{
    			name:         "emptyfilter",
    			outputFormat: "yaml",
    			filter:       EndpointFilter{},
    		},
    		{
    			name:         "portfilter",
    			outputFormat: "json",
    			filter: EndpointFilter{
    				Port: 8080,
    			},
    		},
    		{
    			name:         "portfilter",
    			outputFormat: "yaml",
    			filter: EndpointFilter{
    				Port: 8080,
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. internal/bucket/lifecycle/rule_test.go

    				<Expiration>
    					<Days>365</Days>
    				</Expiration>
                                <Status>Enabled</Status>
    	                    </Rule>`,
    			expectedErr: errXMLNotWellFormed,
    		},
    		{
    			inputXML: `<Rule>
    				<ID>Rule with a tag and DelMarkerExpiration</ID>
    				<Filter><Tag><Key>k1</Key><Value>v1</Value></Tag></Filter>
    				<DelMarkerExpiration>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. internal/bucket/replication/rule.go

    }
    
    func (r Rule) validateFilter() error {
    	return r.Filter.Validate()
    }
    
    // Prefix - a rule can either have prefix under <filter></filter> or under
    // <filter><and></and></filter>. This method returns the prefix from the
    // location where it is available
    func (r Rule) Prefix() string {
    	if r.Filter.Prefix != "" {
    		return r.Filter.Prefix
    	}
    	return r.Filter.And.Prefix
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 24 23:22:20 UTC 2022
    - 8.3K bytes
    - Viewed (0)
Back to top