Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 236 for fsquota (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1alpha1/types.go

    	Resource string `json:"resource"`
    
    	// For each intercepted request, the quota system will evaluate
    	// its resource usage.  It will iterate through each resource consumed
    	// and if the resource contains any substring in this listing, the
    	// quota system will ensure that there is a covering quota.  In the
    	// absence of a covering quota, the quota system will deny the request.
    	// For example, if an administrator wants to globally enforce that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1beta1/types.go

    	Resource string `json:"resource"`
    
    	// For each intercepted request, the quota system will evaluate
    	// its resource usage.  It will iterate through each resource consumed
    	// and if the resource contains any substring in this listing, the
    	// quota system will ensure that there is a covering quota.  In the
    	// absence of a covering quota, the quota system will deny the request.
    	// For example, if an administrator wants to globally enforce that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/quota/v1/generic/configuration.go

    package generic
    
    import (
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	quota "k8s.io/apiserver/pkg/quota/v1"
    )
    
    // implements a basic configuration
    type simpleConfiguration struct {
    	evaluators       []quota.Evaluator
    	ignoredResources map[schema.GroupResource]struct{}
    }
    
    // NewConfiguration creates a quota configuration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/helpers_linux_test.go

    		{
    			msg:      "1500 input 150k quota and default period",
    			input:    int64(1500),
    			expected: int64(150000),
    			period:   uint64(100000),
    		}} {
    		t.Run(testCase.msg, func(t *testing.T) {
    			quota := milliCPUToQuota(testCase.input, int64(testCase.period))
    			if quota != testCase.expected {
    				t.Errorf("Input %v and %v, expected quota %v, but got quota %v", testCase.input, testCase.period, testCase.expected, quota)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. pkg/quota/v1/evaluator/core/persistent_volume_claims.go

    	"k8s.io/apiserver/pkg/admission"
    	quota "k8s.io/apiserver/pkg/quota/v1"
    	"k8s.io/apiserver/pkg/quota/v1/generic"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	storagehelpers "k8s.io/component-helpers/storage/volume"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	k8s_api_v1 "k8s.io/kubernetes/pkg/apis/core/v1"
    	k8sfeatures "k8s.io/kubernetes/pkg/features"
    )
    
    // the name used for object count quota
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  6. pkg/volume/util/fsquota/common/quota_common_linux.go

    }
    
    // LinuxVolumeQuotaApplier is a generic interface to any quota
    // mechanism supported by Linux
    type LinuxVolumeQuotaApplier interface {
    	// GetQuotaOnDir gets the quota ID (if any) that applies to
    	// this directory
    	GetQuotaOnDir(path string) (QuotaID, error)
    
    	// SetQuotaOnDir applies the specified quota ID to a directory.
    	// Negative value for bytes means that a non-enforcing quota
    	// should be applied (perhaps by setting a quota too large to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 28 06:09:31 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/quota/v1/generic/evaluator.go

    func (o *objectCountEvaluator) UsageStats(options quota.UsageStatsOptions) (quota.UsageStats, error) {
    	return CalculateUsageStats(options, o.listFuncByNamespace, MatchesNoScopeFunc, o.Usage)
    }
    
    // Verify implementation of interface at compile time.
    var _ quota.Evaluator = &objectCountEvaluator{}
    
    // NewObjectCountEvaluator returns an evaluator that can perform generic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access.go

    // checkCache compares the passed quota against the value in the look-aside cache and returns the newer
    // if the cache is out of date, it deletes the stale entry.  This only works because of etcd resourceVersions
    // being monotonically increasing integers
    func (e *quotaAccessor) checkCache(quota *corev1.ResourceQuota) *corev1.ResourceQuota {
    	key := quota.Namespace + "/" + quota.Name
    	uncastCachedQuota, ok := e.updatedQuotas.Get(key)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. plugin/pkg/admission/resourcequota/admission_test.go

    	}
    }
    
    // TestAdmitBelowTerminatingQuotaLimit ensures that terminating pods are charged to the right quota.
    // It creates a terminating and non-terminating quota, and creates a terminating pod.
    // It ensures that the terminating quota is incremented, and the non-terminating quota is not.
    func TestAdmitBelowTerminatingQuotaLimit(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  10. pkg/quota/v1/evaluator/core/pods.go

    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/admission"
    	quota "k8s.io/apiserver/pkg/quota/v1"
    	"k8s.io/apiserver/pkg/quota/v1/generic"
    	"k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/utils/clock"
    
    	resourcehelper "k8s.io/kubernetes/pkg/api/v1/resource"
    	api "k8s.io/kubernetes/pkg/apis/core"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 17.4K bytes
    - Viewed (0)
Back to top