Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,351 for filterFn (1.22 sec)

  1. src/internal/trace/testdata/testprog/cpu-profile.go

    		pprof.Do(ctx, pprof.Labels("tracing", "on"), func(ctx context.Context) {
    			cpuHogger(cpuHog1, &salt1, dur)
    		})
    		// Be sure the execution trace's view, when filtered to this goroutine
    		// via the explicit goroutine ID in each event, gets many more samples
    		// than the CPU profiler when filtered to this goroutine via labels.
    		cpuHogger(cpuHog1, &salt1, dur)
    	}()
    
    	trace.Stop()
    	pprof.StopCPUProfile()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. releasenotes/notes/invalid-rbac-filter.yaml

    dwq <******@****.***> 1678205805 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 07 16:16:45 UTC 2023
    - 238 bytes
    - Viewed (0)
  3. releasenotes/notes/envoy-filter-removal.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 16:31:46 UTC 2023
    - 286 bytes
    - Viewed (0)
  4. releasenotes/notes/deprecated-envoy-filter.yaml

    releaseNotes: 
    - |
      **Removed** the support for deprecated envoy filter names in Envoy API name maches. Envoy filter will only be matched with canonical naming standard. See https://www.envoyproxy.io/docs/envoy/latest/version_history/v1.14.0#deprecated
    
    upgradeNotes:
      - title: Use the canonical filter names for EnvoyFilter
        content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 622 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-filter-duplicate.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-filter-duplicate
    spec:
      rules:
      - filters:
        - type: RequestHeaderModifier
          requestHeaderModifier:
            add:
            - name: my-header
              value: foo
        - type: RequestHeaderModifier
          requestHeaderModifier:
            add:
            - name: my-header
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 380 bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/Specs.java

            List<Spec<T>> filtered = new ArrayList<Spec<T>>(specs.size());
            for (Spec<T> spec : specs) {
                if (spec == SATISFIES_NONE) {
                    return satisfyNone();
                }
                if (spec != SATISFIES_ALL) {
                    filtered.add(spec);
                }
            }
            if (filtered.size() == 0) {
                return satisfyAll();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/config/types.go

    	if s == "" {
    		return nil
    	}
    	return filterEmpty(strings.Split(s, ","))
    }
    
    func filterEmpty(strs []string) []string {
    	filtered := make([]string, 0, len(strs))
    	for _, s := range strs {
    		if s == "" {
    			continue
    		}
    		filtered = append(filtered, s)
    	}
    	return filtered
    }
    
    type InterceptFilter struct {
    	Values []string
    	Except bool
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 25 15:43:38 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/sni_dynamic_forward_proxy/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/tcp_proxy/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/thrift_proxy/filters/header_to_metadata/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/response-cookies.md

    And if you declared a `response_model`, it will still be used to filter and convert the object you returned.
    
    **FastAPI** will use that *temporal* response to extract the cookies (also headers and status code), and will put them in the final response that contains the value you returned, filtered by any `response_model`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

                "includedSymlink/symlinkedFile.txt",
                "included")
        }
    
        @Requires(UnitTestPreconditions.Symlinks)
        def "parent directories of filtered symlinked directories are marked as filtered"() {
            def rootDir = tmpDir.createDir("root")
            rootDir.createFile("included/text.txt")
            def linkTarget = tmpDir.createDir("linkTarget2")
            linkTarget.createFile("included.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
Back to top