Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 250 for vuotta (0.17 sec)

  1. pkg/volume/emptydir/empty_dir.go

    		if err != nil {
    			klog.V(3).Infof("Unable to check for quota support on %s: %s", dir, err.Error())
    		} else if hasQuotas {
    			klog.V(4).Infof("emptydir trying to assign quota %v on %s", mounterSize, dir)
    			if err := fsquota.AssignQuota(ed.mounter, dir, ed.pod.UID, mounterSize); err != nil {
    				klog.V(3).Infof("Set quota on %s failed %s", dir, err.Error())
    				return err
    			}
    			return nil
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. pkg/quota/v1/evaluator/core/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package core contains modules that interface with the core api group
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 12 13:25:04 UTC 2019
    - 714 bytes
    - Viewed (0)
  3. pkg/apis/core/helper/helpers.go

    // to avoid confusion with the convention in quota
    // 3. it satisfies the rules in IsQualifiedName() after converted into quota resource name
    func IsExtendedResourceName(name core.ResourceName) bool {
    	if IsNativeResource(name) || strings.HasPrefix(string(name), core.DefaultResourceRequestsPrefix) {
    		return false
    	}
    	// Ensure it satisfies the rules in IsQualifiedName() after converted into quota resource name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/errors_test.go

    `, authorizer.AttributesRecord{User: u, Verb: "get", Namespace: "test", APIGroup: "v2", Resource: "pod", Subresource: "quota", ResourceRequest: true}, "", "application/json"},
    	}
    	for _, test := range cases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 29 07:45:20 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  5. pkg/bootstrap/platform/gcp.go

    var GCPStaticMetadata = func() map[string]string {
    	gcpm := env.Register("GCP_METADATA", "", "Pipe separated GCP metadata, schemed as PROJECT_ID|PROJECT_NUMBER|CLUSTER_NAME|CLUSTER_ZONE").Get()
    	quota := env.Register("GCP_QUOTA_PROJECT", "", "Allows specification of a quota project to be used in requests to GCP APIs.").Get()
    	if len(gcpm) == 0 {
    		return map[string]string{}
    	}
    	md := map[string]string{}
    	parts := strings.Split(gcpm, "|")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/options/plugins_test.go

    limitations under the License.
    */
    
    package options
    
    import (
    	"strings"
    	"testing"
    )
    
    func TestAdmissionPluginOrder(t *testing.T) {
    	// Ensure the last four admission plugins listed are webhooks, quota, and deny
    	allplugins := strings.Join(AllOrderedPlugins, ",")
    	expectSuffix := ",MutatingAdmissionWebhook,ValidatingAdmissionPolicy,ValidatingAdmissionWebhook,ResourceQuota,AlwaysDeny"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:38:55 UTC 2022
    - 1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package resourcequota enforces all incoming requests against any applied quota
    // in the namespace context of the request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 782 bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/input/gateways.yaml

                  cpu: 333m
              serviceAnnotations:
                cloud.google.com/load-balancer-type: "internal"
              service:
                ports:
                ## You can add custom gateway ports - google ILB default quota is 5 ports,
                - port: 15011
                  name: grpc-pilot-mtls
                - port: 8060
                  targetPort: 8060
                  name: tcp-citadel-grpc-tls
                # Port 5353 is forwarded to kube-dns
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. pkg/quota/v1/evaluator/core/pods_test.go

    	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"
    	"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"
    	"k8s.io/client-go/tools/cache"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	api "k8s.io/kubernetes/pkg/apis/core"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  10. pkg/volume/util/fsquota/quota_unsupported.go

    package fsquota
    
    import (
    	"errors"
    
    	"k8s.io/kubernetes/pkg/volume/util/fsquota/common"
    	"k8s.io/mount-utils"
    
    	"k8s.io/apimachinery/pkg/api/resource"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    // Dummy quota implementation for systems that do not implement support
    // for volume quotas
    
    var errNotImplemented = errors.New("not implemented")
    
    func GetQuotaOnDir(_ mount.Interface, _ string) (common.QuotaID, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 28 06:09:31 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top