Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 175 for ResourceNames (0.47 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/zz_generated.deepcopy.go

    func (in *NamedRuleWithOperations) DeepCopyInto(out *NamedRuleWithOperations) {
    	*out = *in
    	if in.ResourceNames != nil {
    		in, out := &in.ResourceNames, &out.ResourceNames
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	in.RuleWithOperations.DeepCopyInto(&out.RuleWithOperations)
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    	for _, index := range interestingQuotaIndexes {
    		resourceQuota := outQuotas[index]
    
    		hardResources := quota.ResourceNames(resourceQuota.Status.Hard)
    		requestedUsage := quota.Mask(deltaUsage, hardResources)
    		newUsage := quota.Add(resourceQuota.Status.Used, requestedUsage)
    		maskedNewUsage := quota.Mask(newUsage, quota.ResourceNames(requestedUsage))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. pkg/istio-agent/xds_proxy_test.go

    	// downstream should receive a local file based wasm extension config.
    	err = downstream.Send(&discovery.DiscoveryRequest{
    		TypeUrl:       v3.ExtensionConfigurationType,
    		ResourceNames: []string{"extension-config"},
    		Node: &core.Node{
    			Id:       "sidecar~1.1.1.1~debug~cluster.local",
    			Metadata: node.ToStruct(),
    		},
    	})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/FilteringClassLoaderTest.groovy

                spec.classNames == [Test.name]
                spec.disallowedClassNames == [Before.name]
                spec.packageNames == ["org.junit"]
                spec.packagePrefixes == ["org.junit."]
                spec.resourceNames == ["a/b/c"]
                spec.resourcePrefixes == ["org/junit/"]
            }
            1 * visitor.visitParent(classLoader.parent)
            0 * visitor._
        }
    
        void cannotSeeResource(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/addons/proxy/proxy.go

    			Namespace: metav1.NamespaceSystem,
    		},
    		Rules: []rbac.PolicyRule{
    			{
    				Verbs:         []string{"get"},
    				APIGroups:     []string{""},
    				Resources:     []string{"configmaps"},
    				ResourceNames: []string{constants.KubeProxyConfigMap},
    			},
    		},
    	}
    
    	rb := &rbac.RoleBinding{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      KubeProxyConfigMapRoleName,
    			Namespace: metav1.NamespaceSystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 13:23:44 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.pb.go

    		i -= size
    		i = encodeVarintGenerated(dAtA, i, uint64(size))
    	}
    	i--
    	dAtA[i] = 0x12
    	if len(m.ResourceNames) > 0 {
    		for iNdEx := len(m.ResourceNames) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.ResourceNames[iNdEx])
    			copy(dAtA[i:], m.ResourceNames[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.ResourceNames[iNdEx])))
    			i--
    			dAtA[i] = 0xa
    		}
    	}
    	return len(dAtA) - i, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 117.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/addons/proxy/proxy_test.go

    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: Role
    metadata:
      creationTimestamp: null
      name: kube-proxy
      namespace: kube-system
    rules:
    - apiGroups:
      - ""
      resourceNames:
      - kube-proxy
      resources:
      - configmaps
      verbs:
      - get
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: RoleBinding
    metadata:
      creationTimestamp: null
      name: kube-proxy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

    }
    
    // NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames.
    // +structType=atomic
    message NamedRuleWithOperations {
      // ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
      // +listType=atomic
      // +optional
      repeated string resourceNames = 1;
    
      // RuleWithOperations is a tuple of Operations and Resources.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. pkg/controller/resourcequota/resource_quota_controller.go

    		errs = append(errs, err)
    	}
    	for key, value := range newUsage {
    		used[key] = value
    	}
    
    	// ensure set of used values match those that have hard constraints
    	hardResources := quota.ResourceNames(hardLimits)
    	used = quota.Mask(used, hardResources)
    
    	// Create a usage object that is based on the quota resource version that will handle updates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

    }
    
    // NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames.
    // +structType=atomic
    message NamedRuleWithOperations {
      // ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
      // +listType=atomic
      // +optional
      repeated string resourceNames = 1;
    
      // RuleWithOperations is a tuple of Operations and Resources.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
Back to top