Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 354 for limiter (0.5 sec)

  1. src/syscall/rlimit.go

    var origRlimitNofile atomic.Pointer[Rlimit]
    
    // Some systems set an artificially low soft limit on open file count, for compatibility
    // with code that uses select and its hard-coded maximum file descriptor
    // (limited by the size of fd_set).
    //
    // Go does not use select, so it should not be subject to these limits.
    // On some systems the limit is 256, which is very easy to run into,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. samples/ratelimit/rate-limit-service.yaml

    ##################################################################################################
    # Redis service and deployment
    # Ratelimit service and deployment
    
    # Note: a configmap is needed to make the rate limit deployment work properly, for example:
    #
    #  apiVersion: v1
    #  kind: ConfigMap
    #  metadata:
    #    name: ratelimit-config
    #  data:
    #    config.yaml: |
    #      domain: echo-ratelimit
    #      descriptors:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. releasenotes/notes/limit-csr-clusterrole.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
      - |
        **Added** check to limit the clusterrole for k8s CSR permissions for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 19:34:22 UTC 2023
    - 272 bytes
    - Viewed (0)
  4. pkg/apis/flowcontrol/v1beta3/defaults_test.go

    					},
    				},
    			},
    		},
    		{
    			name: "LendablePercent is not specified in Limited, should default to zero",
    			original: &flowcontrolv1beta3.PriorityLevelConfiguration{
    				Spec: flowcontrolv1beta3.PriorityLevelConfigurationSpec{
    					Type: flowcontrolv1beta3.PriorityLevelEnablementLimited,
    					Limited: &flowcontrolv1beta3.LimitedPriorityLevelConfiguration{
    						NominalConcurrencyShares: 5,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. releasenotes/notes/bug-report-rps-limit.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
      **Added** `--rps-limit` flag to `istioctl bug-report` that allows increasing
      the requests per second limit to the Kubernetes API server which can greatly
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 23 16:44:39 UTC 2022
    - 276 bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/v1/defaults_test.go

    					},
    				},
    			},
    		},
    		{
    			name: "LendablePercent is not specified in Limited, should default to zero",
    			original: &flowcontrolv1.PriorityLevelConfiguration{
    				Spec: flowcontrolv1.PriorityLevelConfigurationSpec{
    					Type: flowcontrolv1.PriorityLevelEnablementLimited,
    					Limited: &flowcontrolv1.LimitedPriorityLevelConfiguration{
    						NominalConcurrencyShares: ptr.To(int32(5)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default_test.go

    			continue
    		}
    		if test.nominalSharesExpected != *bootstrapPL.Spec.Limited.NominalConcurrencyShares {
    			t.Errorf("bootstrap PriorityLevelConfiguration %q: expected NominalConcurrencyShares: %d, but got: %d", test.name, test.nominalSharesExpected, bootstrapPL.Spec.Limited.NominalConcurrencyShares)
    		}
    		if test.lendablePercentexpected != *bootstrapPL.Spec.Limited.LendablePercent {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. pkg/apis/flowcontrol/v1beta3/defaults.go

    	if limited := in.Spec.Limited; limited != nil {
    		// for v1beta3, we apply a default value to the NominalConcurrencyShares
    		// field only when:
    		//   a) NominalConcurrencyShares == 0, and
    		//   b) the roundtrip annotation is not set
    		if _, ok := in.Annotations[v1beta3.PriorityLevelPreserveZeroConcurrencySharesKey]; !ok && limited.NominalConcurrencyShares == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. pkg/apis/flowcontrol/v1beta2/zz_generated.defaults.go

    	}
    }
    
    func SetObjectDefaults_PriorityLevelConfiguration(in *v1beta2.PriorityLevelConfiguration) {
    	if in.Spec.Limited != nil {
    		SetDefaults_LimitedPriorityLevelConfiguration(in.Spec.Limited)
    		if in.Spec.Limited.LimitResponse.Queuing != nil {
    			SetDefaults_QueuingConfiguration(in.Spec.Limited.LimitResponse.Queuing)
    		}
    	}
    	if in.Spec.Exempt != nil {
    		SetDefaults_ExemptPriorityLevelConfiguration(in.Spec.Exempt)
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. pkg/apis/flowcontrol/v1beta3/zz_generated.defaults.go

    	SetDefaults_PriorityLevelConfiguration(in)
    	if in.Spec.Limited != nil {
    		SetDefaults_LimitedPriorityLevelConfiguration(in.Spec.Limited)
    		if in.Spec.Limited.LimitResponse.Queuing != nil {
    			SetDefaults_QueuingConfiguration(in.Spec.Limited.LimitResponse.Queuing)
    		}
    	}
    	if in.Spec.Exempt != nil {
    		SetDefaults_ExemptPriorityLevelConfiguration(in.Spec.Exempt)
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top