Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 787 for quotas (0.17 sec)

  1. internal/s3select/sql/utils.go

    	case e.ObjectWildcard:
    		return ".*"
    	case e.ArrayWildcard:
    		return "[*]"
    	}
    	return ""
    }
    
    // String removes double quotes in quoted identifiers
    func (i *Identifier) String() string {
    	if i.Unquoted != nil {
    		return *i.Unquoted
    	}
    	return string(*i.Quoted)
    }
    
    func (o *ObjectKey) String() string {
    	if o.Lit != nil {
    		return fmt.Sprintf("['%s']", string(*o.Lit))
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 10 16:12:50 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/helpers_linux.go

    	if milliCPU == 0 {
    		return
    	}
    
    	// we then convert your milliCPU to a value normalized over a period
    	quota = (milliCPU * period) / milliCPUToCPU
    
    	// quota needs to be a minimum of 1ms.
    	if quota < minQuotaPeriod {
    		quota = minQuotaPeriod
    	}
    
    	return
    }
    
    // sharesToMilliCPU converts CpuShares (cpu.shares) to milli-CPU value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/helpers_linux_test.go

    		quota := MilliCPUToQuota(testCase.input, int64(testCase.period))
    		if quota != testCase.quota {
    			t.Errorf("Input %v and %v, expected quota %v, but got quota %v", testCase.input, testCase.period, testCase.quota, quota)
    		}
    	}
    }
    
    func TestHugePageLimits(t *testing.T) {
    	Mi := int64(1024 * 1024)
    	type inputStruct struct {
    		key   string
    		input string
    	}
    
    	testCases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/admission/initializer_test.go

    func (doNothingQuotaConfiguration) Evaluators() []quota.Evaluator { return nil }
    
    type WantsQuotaConfigurationAdmissionPlugin struct {
    	doNothingAdmission
    	doNothingPluginInitialization
    	config quota.Configuration
    }
    
    func (p *WantsQuotaConfigurationAdmissionPlugin) SetQuotaConfiguration(config quota.Configuration) {
    	p.config = config
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. pkg/quota/v1/evaluator/core/registry.go

    */
    
    package core
    
    import (
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	quota "k8s.io/apiserver/pkg/quota/v1"
    	"k8s.io/apiserver/pkg/quota/v1/generic"
    	"k8s.io/utils/clock"
    )
    
    // legacyObjectCountAliases are what we used to do simple object counting quota with mapped to alias
    var legacyObjectCountAliases = map[schema.GroupVersionResource]corev1.ResourceName{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 09:42:32 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/admission.go

    	v1 "k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1"
    	"k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/validation"
    	quota "k8s.io/apiserver/pkg/quota/v1"
    	"k8s.io/apiserver/pkg/quota/v1/generic"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes"
    )
    
    // PluginName is a string with the name of the plugin
    const PluginName = "ResourceQuota"
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 23 10:34:50 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  7. src/html/template/context.go

    	stateCSS
    	// stateCSSDqStr occurs inside a CSS double quoted string.
    	stateCSSDqStr
    	// stateCSSSqStr occurs inside a CSS single quoted string.
    	stateCSSSqStr
    	// stateCSSDqURL occurs inside a CSS double quoted url("...").
    	stateCSSDqURL
    	// stateCSSSqURL occurs inside a CSS single quoted url('...').
    	stateCSSSqURL
    	// stateCSSURL occurs inside a CSS unquoted url(...).
    	stateCSSURL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. cluster/gce/gci/append_or_replace_prefixed_line_test.go

    jelloworld
    chelloworld
    `,
    			want: `jelloworld
    chelloworld
    helloworld
    `,
    		},
    		{
    			desc:   "string with quotes and = and empty file",
    			prefix: `'"$argon2id$v=19"'`,
    			suffix: "admin",
    			want: `"$argon2id$v=19"admin
    `,
    		},
    		{
    			desc:   "string with quotes and = and non empty file",
    			prefix: `'"$argon2id$v=19"'`,
    			suffix: "admin",
    			initialFileContents: `jelloworld
    chelloworld
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:23:50 UTC 2021
    - 4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.8.md

    For more information, see [#53040](https://github.com/kubernetes/kubernetes/issues/53040).
    
    * Object quotas are not consistently charged or updated. Specifically, the object count quota does not reliably account for uninitialized objects. Some quotas are charged only when an object is initialized. Others are charged when an object is created, whether it is initialized or not. We plan to fix this issue in a future release.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  10. cmd/metrics-v3-cluster-usage.go

    		m.Set(usageBucketVersionsCount, float64(usage.VersionsCount), "bucket", bucket)
    		m.Set(usageBucketDeleteMarkersCount, float64(usage.DeleteMarkersCount), "bucket", bucket)
    
    		if quota != nil && quota.Quota > 0 {
    			m.Set(usageBucketQuotaTotalBytes, float64(quota.Quota), "bucket", bucket)
    		}
    
    		for k, v := range usage.ObjectSizesHistogram {
    			m.Set(usageBucketObjectSizeDistribution, float64(v), "range", k, "bucket", bucket)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top