Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 250 for vuotta (0.09 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/initializer/interfaces.go

    	"k8s.io/apimachinery/pkg/api/meta"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/pkg/cel/openapi/resolver"
    	quota "k8s.io/apiserver/pkg/quota/v1"
    	"k8s.io/client-go/dynamic"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes"
    	"k8s.io/component-base/featuregate"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 19:11:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. pkg/volume/util/fsquota/project.go

    			}
    			// Faster and easier than deleting an element
    			list.projects[i].isValid = false
    			foundAt = i
    		}
    		countByID[project.id]++
    	}
    	if foundAt == -1 {
    		return false, fmt.Errorf("cannot find quota associated with path %s", path)
    	}
    	if countByID[id] <= 1 {
    		// Removing the last entry means that we're no longer using
    		// the quota ID, so remove that as well
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. pkg/controller/resourcequota/config/types.go

    type ResourceQuotaControllerConfiguration struct {
    	// resourceQuotaSyncPeriod is the period for syncing quota usage status
    	// in the system.
    	ResourceQuotaSyncPeriod metav1.Duration
    	// concurrentResourceQuotaSyncs is the number of resource quotas that are
    	// allowed to sync concurrently. Larger number = more responsive quota
    	// management, but more CPU (and network) load.
    	ConcurrentResourceQuotaSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  4. manifests/charts/istio-cni/templates/resourcequota.yaml

    {{- if .Values.cni.resourceQuotas.enabled }}
    apiVersion: v1
    kind: ResourceQuota
    metadata:
      name: {{ template "name" . }}-resource-quota
      namespace: {{ .Release.Namespace }}
    spec:
      hard:
        pods: {{ .Values.cni.resourceQuotas.pods | quote }}
      scopeSelector:
        matchExpressions:
        - operator: In
          scopeName: PriorityClass
          values:
          - system-node-critical
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 388 bytes
    - Viewed (0)
  5. pkg/quota/v1/install/update_filter.go

    */
    
    package install
    
    import (
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/kubernetes/pkg/quota/v1/evaluator/core"
    	"k8s.io/utils/clock"
    )
    
    // DefaultUpdateFilter returns the default update filter for resource update events for consideration for quota.
    func DefaultUpdateFilter() func(resource schema.GroupVersionResource, oldObj, newObj interface{}) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 08 22:39:55 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. pkg/quota/v1/evaluator/core/persistent_volume_claims_test.go

    	"reflect"
    	"testing"
    
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	quota "k8s.io/apiserver/pkg/quota/v1"
    	"k8s.io/apiserver/pkg/quota/v1/generic"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/features"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. cmd/admin-bucket-handlers.go

    )
    
    const (
    	bucketQuotaConfigFile = "quota.json"
    	bucketTargetsFile     = "bucket-targets.json"
    )
    
    // PutBucketQuotaConfigHandler - PUT Bucket quota configuration.
    // ----------
    // Places a quota configuration on the specified bucket. The quota
    // specified in the quota configuration will be applied by default
    // to enforce total quota for the specified bucket.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/deprecation.yaml

          port:
            number: 9080
    ---
    apiVersion: config.istio.io/v1alpha2
    kind: QuotaSpec
    metadata:
      name: request-count
      namespace: istio-system
    spec:
      rules:
      - quotas:
        - charge: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1K bytes
    - Viewed (0)
  9. pkg/controller/resourcequota/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package resourcequota contains a controller that makes resource quota usage observations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 20 12:37:27 UTC 2020
    - 744 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/quota/v1/resources.go

    			continue
    		}
    		newUsage = Add(newUsage, stats.Used)
    	}
    
    	// mask the observed usage to only the set of resources tracked by this quota
    	// merge our observed usage with the quota usage status
    	// if the new usage is different than the last usage, we will need to do an update
    	newUsage = Mask(newUsage, matchedResources)
    	return newUsage, utilerrors.NewAggregate(errors)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 06 23:11:22 UTC 2021
    - 8.7K bytes
    - Viewed (0)
Back to top