Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,351 for filterFn (0.56 sec)

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

    		filters = appendMxFilter(httpOpts, filters)
    		// TODO: how to deal with ext-authz? It will be in the ordering twice
    		filters = append(filters, lb.authzCustomBuilder.BuildHTTP(httpOpts.class)...)
    		filters = extension.PopAppendHTTP(filters, wasm, extensions.PluginPhase_AUTHN)
    		filters = append(filters, lb.authnBuilder.BuildHTTP(httpOpts.class)...)
    		filters = extension.PopAppendHTTP(filters, wasm, extensions.PluginPhase_AUTHZ)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. tests/integration/telemetry/api/testdata/wasm-filter.yaml

    zirain <******@****.***> 1666116203 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 475 bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/crdclient/client.go

    // composedFilter offers a way to join multiple different object filters into a single one
    type composedFilter struct {
    	// The primary filter, which has a handler. Optional
    	filter kubetypes.DynamicObjectFilter
    	// Secondary filters (no handler allowed)
    	extra []func(obj any) bool
    }
    
    func (f composedFilter) Filter(obj any) bool {
    	for _, filter := range f.extra {
    		if !filter(obj) {
    			return false
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/interface.go

    	// When PreFilterResult filters out some Nodes, the framework considers Nodes that are filtered out as getting "UnschedulableAndUnresolvable".
    	// i.e., those Nodes will be out of the candidates of the preemption.
    	//
    	// When it returns Skip status, returned PreFilterResult and other fields in status are just ignored,
    	// and coupled Filter plugin/PreFilterExtensions() will be skipped in this scheduling cycle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/FileTreeAdapterTest.groovy

            MinimalFileTree filtered = Mock()
            PatternFilterable filter = Mock()
            FileTreeAdapter adapter = newFileTreeAdapter(tree)
    
            when:
            def filteredAdapter = adapter.matching(filter)
    
            then:
            filteredAdapter instanceof FileTreeAdapter
            filteredAdapter.tree == filtered
            1 * tree.filter(filter) >> filtered
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

            );
    
            AdditionalClasspath filtered = filterAdditionalClasspath(classpath, modulepath, unfiltered);
    
            // The test's runtimeClasspath already includes the test framework's implementation modules.
            // No need to load anything extra ourselves.
            if (filtered.isEmpty()) {
                return new ForkedTestClasspath(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/DefaultNamedDomainObjectSet.java

            return filtered(createFilter(type));
        }
    
        @Override
        public NamedDomainObjectSet<T> named(Spec<String> nameFilter) {
            Spec<T> spec = convertNameToElementFilter(nameFilter);
            return filtered(nameFilter, createFilter(spec));
        }
    
        @Override
        public NamedDomainObjectSet<T> matching(Spec<? super T> spec) {
            return filtered(createFilter(spec));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:29 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. tests/integration/telemetry/api/testdata/bad-filter.yaml

    apiVersion: extensions.istio.io/v1alpha1
    kind: WasmPlugin
    metadata:
      name: bad-filter-config
    spec:
      url: https://bad-url.wasm
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 203 bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/Actions.java

            return new FilteredAction<T>(action, filter);
        }
    
        private static class FilteredAction<T> implements Action<T> {
            private final Spec<? super T> filter;
            private final Action<? super T> action;
    
            public FilteredAction(Action<? super T> action, Spec<? super T> filter) {
                this.filter = filter;
                this.action = action;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 7K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestSelectionTest.groovy

            expect:
            select('ModuleName.suite.*').includedTests == ['ModuleName.suite']
        }
    
        def "ignores textual duplicate filters"() {
            expect:
            select('a.b.c', 'a.b.c').includedTests == ['a.b/c']
        }
    
        def "ignores conceptual duplicate filters"() {
            expect:
            select('a.b.*', 'a.b.c', 'a.d.e').includedTests == ['a.b', 'a.d/e']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top