Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,351 for filterFn (1.1 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-filter-empty.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-filter-empty
    spec:
      rules:
      - filters:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 163 bytes
    - Viewed (0)
  2. tests/integration/telemetry/api/testdata/gateway-wasm-filter.yaml

    Keith Mattix II <******@****.***> 1696535311 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 19:48:31 UTC 2023
    - 516 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-redirect-rewrite/httproute-redirect-full.yaml

    #$ Used in:
    #$ - site-src/api-types/httproute.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http-filter-redirect
    spec:
      hostnames:
        - redirect.example
      rules:
        - matches:
            - path:
                type: PathPrefix
                value: /cayenne
          filters:
            - type: RequestRedirect
              requestRedirect:
                path:
                  type: ReplaceFullPath
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 485 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-redirect-rewrite/httproute-redirect-prefix.yaml

    #$ Used in:
    #$ - site-src/api-types/httproute.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http-filter-redirect
    spec:
      hostnames:
        - redirect.example
      rules:
        - matches:
            - path:
                type: PathPrefix
                value: /cayenne
          filters:
            - type: RequestRedirect
              requestRedirect:
                path:
                  type: ReplacePrefixMatch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 491 bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

            FileTree filtered = fileTree.matching(patternSet)
    
            expect:
            filtered.files == [included1, included2] as Set
            assertSetContainsForAllTypes(filtered, 'subDir/included1', 'subDir2/included2')
            assertVisits(filtered, ['subDir/included1', 'subDir2/included2'], ['subDir', 'subDir2'])
            filtered.contains(included1)
            !filtered.contains(excluded1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/v2/conversion.go

    	var filtered []string
    	for i, s := range ss {
    		if s == x {
    			if filtered == nil {
    				filtered = make([]string, i, len(ss))
    				copy(filtered, ss[:i])
    			}
    		} else if filtered != nil {
    			filtered = append(filtered, s)
    		}
    	}
    	if filtered != nil {
    		if len(filtered) == 0 {
    			return nil, true
    		}
    		return filtered, true
    	}
    	return ss, false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 09 20:23:50 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/FileTree.java

         * that any changes to this tree are reflected in the filtered tree.</p>
         *
         * <p>The given closure is used to configure the filter. A {@link org.gradle.api.tasks.util.PatternFilterable} is
         * passed to the closure as its delegate. Only files which match the specified include patterns will be included in
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Maps.java

       *
       * <p>When methods such as {@code removeAll()} and {@code clear()} are called on the filtered map
       * or its views, only mappings whose keys satisfy the filter will be removed from the underlying
       * map.
       *
       * <p>The returned map isn't threadsafe or serializable, even if {@code unfiltered} is.
       *
       * <p>Many of the filtered map's methods, such as {@code size()}, iterate across every key/value
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Maps.java

       *
       * <p>When methods such as {@code removeAll()} and {@code clear()} are called on the filtered map
       * or its views, only mappings whose keys satisfy the filter will be removed from the underlying
       * map.
       *
       * <p>The returned map isn't threadsafe or serializable, even if {@code unfiltered} is.
       *
       * <p>Many of the filtered map's methods, such as {@code size()}, iterate across every key/value
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/watch/filter_test.go

    	}
    }
    
    func TestFilterStop(t *testing.T) {
    	source := NewFake()
    	filtered := Filter(source, func(e Event) (Event, bool) {
    		return e, e.Object.(testType)[0] != 'b'
    	})
    
    	go func() {
    		source.Add(testType("foo"))
    		filtered.Stop()
    	}()
    
    	var got []string
    	for {
    		event, ok := <-filtered.ResultChan()
    		if !ok {
    			break
    		}
    		got = append(got, string(event.Object.(testType)))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 11:56:41 UTC 2021
    - 2.5K bytes
    - Viewed (0)
Back to top