Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,351 for filterFn (0.21 sec)

  1. src/go/doc/testdata/generics.1.golden

    
    TYPES
    	// AFuncType demonstrates filtering of parameters and type ...
    	type AFuncType[T ~struct{ f int }] func(_ struct{ f int })
    
    	// Constraint is a constraint interface with two type parameters. 
    	type Constraint[P, Q interface{ string | ~int | Type[int] }] interface {
    		~int | ~byte | Type[string]
    		M() P
    	}
    
    	// NewEmbeddings demonstrates how we filter the new embedded ...
    	type NewEmbeddings interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 10 18:06:32 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  2. fess-crawler-es/src/main/resources/mapping/filter.json

    Shinsuke Sugaya <******@****.***> 1550973969 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Feb 24 02:06:09 UTC 2019
    - 192 bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/plan/ExecutionNodeAccessHierarchyTest.groovy

            nodesRelatedTo(root, "included/*") == ([rootNode, node4, node7] as Set)
            nodesRelatedTo(root, "included/within") == ([rootNode, node7] as Set)
        }
    
        def "uses the correct file type for filtering"() {
            def root = temporaryFolder.file("root")
    
            def rootNode = Mock(Node)
            def missing = Mock(Node)
            def directory = Mock(Node)
            def file = Mock(Node)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 11 15:00:43 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/CollectionUtilsTest.groovy

        }
    
        def "set filtering"() {
            given:
            def spec = { it < 5 }
            def filter = { Integer[] nums -> filter(nums as Set, spec) }
    
            expect:
            filter(1, 2, 3) == [1, 2, 3] as Set
            filter(7, 8, 9).empty
            filter().empty
            filter(4, 5, 6) == [4] as Set
        }
    
        def "map filtering"() {
            expect:
            def filtered = filter(a: 1, b: 2, c: 3, { it.value < 2 })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. pkg/config/xds/filters.go

    )
    
    const (
    	WasmHTTPFilterType    = pm.WasmHTTPFilterType
    	WasmNetworkFilterType = pm.WasmNetworkFilterType
    	RBACHTTPFilterType    = resource.APITypePrefix + "envoy.extensions.filters.http.rbac.v3.RBAC"
    	RBACNetworkFilterType = resource.APITypePrefix + "envoy.extensions.filters.network.rbac.v3.RBAC"
    	TypedStructType       = pm.TypedStructType
    
    	StatsFilterName = "istio.stats"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. releasenotes/notes/fix-default-filter-chain.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue: []
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 09 11:48:47 UTC 2020
    - 186 bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/echotest/filters.go

    //	  Run()
    func (t *T) To(filters ...Filter) *T {
    	for _, filter := range filters {
    		t.destinations = filter(t.destinations)
    	}
    	return t
    }
    
    func (t *T) ToMatch(m match.Matcher) *T {
    	return t.To(FilterMatch(m))
    }
    
    // ConditionallyTo appends the given filters which are executed per test. Destination filters may need
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/DefaultConfigurationMetadata.java

            ImmutableList<ModuleDependencyMetadata> filtered = super.getConfigDependencies();
            switch (dependencyFilter) {
                case CONSTRAINTS_ONLY:
                case FORCED_CONSTRAINTS_ONLY:
                    filtered = withConstraints(true, filtered);
                    break;
                case DEPENDENCIES_ONLY:
                case FORCED_DEPENDENCIES_ONLY:
                    filtered = withConstraints(false, filtered);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. internal/bucket/replication/filter.go

    )
    
    var errInvalidFilter = Errorf("Filter must have exactly one of Prefix, Tag, or And specified")
    
    // Filter - a filter for a replication configuration Rule.
    type Filter struct {
    	XMLName xml.Name `xml:"Filter" json:"Filter"`
    	Prefix  string
    	And     And
    	Tag     Tag
    
    	// Caching tags, only once
    	cachedTags map[string]string
    }
    
    // IsEmpty returns true if filter is not set
    func (f Filter) IsEmpty() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 28 18:25:46 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  10. pkg/kube/krt/filter.go

    	}
    }
    
    func FilterGeneric(f func(any) bool) FetchOption {
    	return func(h *dependency) {
    		h.filter.generic = f
    	}
    }
    
    func (f *filter) Matches(object any, forList bool) bool {
    	// Check each of our defined filters to see if the object matches
    	// This function is called very often and is important to keep fast
    	// Cheaper checks should come earlier to avoid additional work and short circuit early
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top