Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 3,955 for Filler (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/record_flags.go

    // RecordFlags contains all flags associated with the "--record" operation
    type RecordFlags struct {
    	// Record indicates the state of the recording flag.  It is a pointer so a caller can opt out or rebind
    	Record *bool
    
    	changeCause string
    }
    
    // ToRecorder returns a ChangeCause recorder if --record=false was not
    // explicitly given by the user
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  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