Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 301 for flowcontrolv1 (0.21 sec)

  1. pkg/apis/flowcontrol/v1/register.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1
    
    import (
    	flowcontrolv1 "k8s.io/api/flowcontrol/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // GroupName is the group name use in this package
    const GroupName = "flowcontrol.apiserver.k8s.io"
    
    // SchemeGroupVersion is group version used to register these objects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 11:48:22 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. pkg/registry/flowcontrol/rest/storage_flowcontrol.go

    	flowcontrolclient "k8s.io/client-go/kubernetes/typed/flowcontrol/v1"
    	flowcontrollisters "k8s.io/client-go/listers/flowcontrol/v1"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	"k8s.io/kubernetes/pkg/apis/flowcontrol"
    	flowcontrolapisv1 "k8s.io/kubernetes/pkg/apis/flowcontrol/v1"
    	flowcontrolapisv1beta1 "k8s.io/kubernetes/pkg/apis/flowcontrol/v1beta1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. pkg/registry/flowcontrol/ensurer/strategy.go

    		var ok, autoUpdate bool
    		var err error
    		if value, ok = object.GetAnnotations()[flowcontrolv1.AutoUpdateAnnotationKey]; !ok {
    			// the configuration object does not have the annotation key,
    			// it's probably a user defined configuration object,
    			// so we can skip it.
    			klog.V(5).InfoS("Skipping deletion of APF object with no "+flowcontrolv1.AutoUpdateAnnotationKey+" annotation", "name", name)
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 14K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/roundtrip_test.go

    	eventsv1 "k8s.io/api/events/v1"
    	eventsv1beta1 "k8s.io/api/events/v1beta1"
    	extensionsv1beta1 "k8s.io/api/extensions/v1beta1"
    	flowcontrolv1 "k8s.io/api/flowcontrol/v1"
    	flowcontrolv1beta1 "k8s.io/api/flowcontrol/v1beta1"
    	flowcontrolv1beta2 "k8s.io/api/flowcontrol/v1beta2"
    	flowcontrolv1beta3 "k8s.io/api/flowcontrol/v1beta3"
    	imagepolicyv1alpha1 "k8s.io/api/imagepolicy/v1alpha1"
    	networkingv1 "k8s.io/api/networking/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/feature.go

    		}
    		c.FlowControl = utilflowcontrol.New(
    			informers,
    			clientset.FlowcontrolV1(),
    			c.MaxRequestsInFlight+c.MaxMutatingRequestsInFlight,
    		)
    	}
    
    	return nil
    }
    
    func (o *FeatureOptions) Validate() []error {
    	if o == nil {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_filter_test.go

    				Name: plName,
    			},
    			DistinguisherMethod: &flowcontrol.FlowDistinguisherMethod{
    				Type: flowcontrol.FlowDistinguisherMethodByUserType,
    			},
    			Rules: []flowcontrol.PolicyRulesWithSubjects{{
    				Subjects: []flowcontrol.Subject{{
    					Kind: flowcontrol.SubjectKindUser,
    					User: &flowcontrol.UserSubject{Name: username},
    				}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. pkg/apis/flowcontrol/validation/validation_test.go

    			Subjects: []flowcontrol.Subject{{
    				Kind:  flowcontrol.SubjectKindGroup,
    				Group: &flowcontrol.GroupSubject{Name: "system:masters"},
    			}},
    			ResourceRules: []flowcontrol.ResourcePolicyRule{{
    				Verbs:        []string{flowcontrol.VerbAll},
    				APIGroups:    []string{flowcontrol.APIGroupAll},
    				Resources:    []string{flowcontrol.ResourceAll},
    				ClusterScope: true,
    				Namespaces:   []string{flowcontrol.NamespaceEvery},
    			}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    	}
    
    	pl := &flowcontrol.PriorityLevelConfiguration{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: plName,
    		},
    		Spec: flowcontrol.PriorityLevelConfigurationSpec{
    			Type: flowcontrol.PriorityLevelEnablementLimited,
    			Limited: &flowcontrol.LimitedPriorityLevelConfiguration{
    				NominalConcurrencyShares: ptr.To(int32(10)),
    				LimitResponse: flowcontrol.LimitResponse{
    					Type: flowcontrol.LimitResponseTypeReject,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/borrowing_test.go

    					},
    					Spec: flowcontrol.FlowSchemaSpec{
    						MatchingPrecedence: 100,
    						PriorityLevelConfiguration: flowcontrol.PriorityLevelConfigurationReference{
    							Name: plName,
    						},
    						DistinguisherMethod: &flowcontrol.FlowDistinguisherMethod{
    							Type: flowcontrol.FlowDistinguisherMethodByUserType,
    						},
    						Rules: []flowcontrol.PolicyRulesWithSubjects{{
    							Subjects: []flowcontrol.Subject{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. pkg/controlplane/instance.go

    	"k8s.io/klog/v2"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	flowcontrolv1 "k8s.io/kubernetes/pkg/apis/flowcontrol/v1"
    	flowcontrolv1beta1 "k8s.io/kubernetes/pkg/apis/flowcontrol/v1beta1"
    	flowcontrolv1beta2 "k8s.io/kubernetes/pkg/apis/flowcontrol/v1beta2"
    	flowcontrolv1beta3 "k8s.io/kubernetes/pkg/apis/flowcontrol/v1beta3"
    	controlplaneapiserver "k8s.io/kubernetes/pkg/controlplane/apiserver"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top