Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 520 for limiting (0.14 sec)

  1. samples/ratelimit/local-rate-limit-service.yaml

    # This example shows how to use Istio local rate limiting with descriptors to limit by path. 
    # This uses the base book-info demo and adds rate limiting by path, specifically rate limiting the product page
    # to 10 requests per minute, and the overall fdqn will be able to accept 100 requests per minute. 
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: filter-local-ratelimit-svc
      namespace: istio-system
    spec:
      workloadSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 08:22:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/grpc/ratelimit.go

    )
    
    // Limiter defines the interface to perform request rate limiting,
    // based on the interface exposed by https://pkg.go.dev/golang.org/x/time/rate#Limiter
    type Limiter interface {
    	// Allow reports whether an event may happen now.
    	Allow() bool
    }
    
    // LimiterUnaryServerInterceptor returns a new unary server interceptors that performs request rate limiting.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 07:22:23 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.yaml

    ecdsFilters:
    - ecdsFilter:
        '@type': type.googleapis.com/envoy.config.core.v3.TypedExtensionConfig
        name: default.httpbin-rate-limiting
        typedConfig:
          '@type': type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm
          config:
            configuration: {}
            name: default.httpbin-rate-limiting
            vmConfig:
              code:
                local:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.json

                    "name": "default.httpbin-rate-limiting",
                    "typedConfig": {
                        "@type": "type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm",
                        "config": {
                            "name": "default.httpbin-rate-limiting",
                            "vmConfig": {
                                "runtime": "envoy.wasm.runtime.v8",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/envoy/configdump/testdata/ecds/configdump.json

                            "name": "default.httpbin-rate-limiting",
                            "typed_config": {
                                "@type": "type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm",
                                "config": {
                                    "name": "default.httpbin-rate-limiting",
                                    "vm_config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. releasenotes/notes/bug-report-speedup.yaml

    # - istioctl
    # - documentation
    area: istioctl
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
      - |
        **Removed** `--rps-limit` flag for `istioctl bug-report` and **added** `--rq-concurrency` flag.
        The bug reporter will now limit request concurrency instead of limiting request rate to the kube
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.txt

    istio.io/telemetry/stats/prometheus/sidecar/Outbound/HTTP     
    istio.io/telemetry/stats/prometheus/sidecar/Outbound/TCP      
    default.display-metadata                                      envoy.extensions.filters.http.wasm.v3.Wasm
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 528 bytes
    - Viewed (0)
  8. prepare-svg.sh

    # specific language governing permissions and limitations
    # under the License.
    
    #libreoffice --headless --convert-to svg src/site/xdoc/maven-deps.odg
    # CLI export keeps full A3 page
    # I prefer doing it by hand, limiting export to "selection" = avoids extra space
    
    # svgo https://github.com/svg/svgo
    svgo --config src/site/svgo.config.mjs maven-deps.svg -o maven-deps-optimized.svg
    
    cat maven-deps-optimized.svg \
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 24 18:29:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/webhook/webhook.go

    	//
    	// Set this to something reasonable so request to webhooks don't hang forever.
    	clientConfig.Timeout = defaultRequestTimeout
    
    	// Avoid client-side rate limiting talking to the webhook backend.
    	// Rate limiting should happen when deciding how many requests to serve.
    	clientConfig.QPS = -1
    
    	return clientConfig, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 19:02:55 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. src/net/rlimit_unix.go

    // file descriptor so we limit this to less than the number of
    // permitted open files. On some systems, notably Darwin, if
    // getaddrinfo is unable to open a file descriptor it simply returns
    // EAI_NONAME rather than a useful error. Limiting the number of
    // concurrent getaddrinfo calls to less than the permitted number of
    // file descriptors makes that error less likely. We don't bother to
    // apply the same limit to DNS lookups run directly from Go, because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top