Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for UserSubject (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/match_test.go

    			User: &flowcontrol.UserSubject{Name: "goodu"}}},
    		ResourceRules: []flowcontrol.ResourcePolicyRule{{
    			Verbs:      []string{"*"},
    			APIGroups:  []string{"goodapig"},
    			Resources:  []string{"goodrscs"},
    			Namespaces: []string{"goodns"}}}}, {
    		Subjects: []flowcontrol.Subject{{Kind: flowcontrol.SubjectKindUser,
    			User: &flowcontrol.UserSubject{Name: "goodu"}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta3/zz_generated.deepcopy.go

    func (in *UserSubject) DeepCopyInto(out *UserSubject) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserSubject.
    func (in *UserSubject) DeepCopy() *UserSubject {
    	if in == nil {
    		return nil
    	}
    	out := new(UserSubject)
    	in.DeepCopyInto(out)
    	return out
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta1/zz_generated.deepcopy.go

    func (in *UserSubject) DeepCopyInto(out *UserSubject) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserSubject.
    func (in *UserSubject) DeepCopy() *UserSubject {
    	if in == nil {
    		return nil
    	}
    	out := new(UserSubject)
    	in.DeepCopyInto(out)
    	return out
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  4. pkg/apis/flowcontrol/zz_generated.deepcopy.go

    func (in *UserSubject) DeepCopyInto(out *UserSubject) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserSubject.
    func (in *UserSubject) DeepCopy() *UserSubject {
    	if in == nil {
    		return nil
    	}
    	out := new(UserSubject)
    	in.DeepCopyInto(out)
    	return out
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta2/zz_generated.deepcopy.go

    func (in *UserSubject) DeepCopyInto(out *UserSubject) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserSubject.
    func (in *UserSubject) DeepCopy() *UserSubject {
    	if in == nil {
    		return nil
    	}
    	out := new(UserSubject)
    	in.DeepCopyInto(out)
    	return out
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1/zz_generated.deepcopy.go

    func (in *UserSubject) DeepCopyInto(out *UserSubject) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserSubject.
    func (in *UserSubject) DeepCopy() *UserSubject {
    	if in == nil {
    		return nil
    	}
    	out := new(UserSubject)
    	in.DeepCopyInto(out)
    	return out
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    		subject.ServiceAccount, matchingUIs, skippingUIs = genServiceAccount(rng, pfx)
    	}
    	return subject, matchingUIs, skippingUIs
    }
    
    func genUser(rng *rand.Rand, pfx string) (*flowcontrol.UserSubject, []user.Info, []user.Info) {
    	mui := &user.DefaultInfo{
    		Name:   pfx + "-u",
    		UID:    "good-id",
    		Groups: []string{pfx + "-g1", mg(rng), pfx + "-g2"},
    		Extra:  noextra}
    	skips := []user.Info{&user.DefaultInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // +optional
      optional UserSubject user = 2;
    
      // `group` matches based on user group name.
      // +optional
      optional GroupSubject group = 3;
    
      // `serviceAccount` matches ServiceAccounts.
      // +optional
      optional ServiceAccountSubject serviceAccount = 4;
    }
    
    // UserSubject holds detailed information for user-kind subject.
    message UserSubject {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // +optional
      optional UserSubject user = 2;
    
      // `group` matches based on user group name.
      // +optional
      optional GroupSubject group = 3;
    
      // `serviceAccount` matches ServiceAccounts.
      // +optional
      optional ServiceAccountSubject serviceAccount = 4;
    }
    
    // UserSubject holds detailed information for user-kind subject.
    message UserSubject {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

      // +optional
      optional UserSubject user = 2;
    
      // `group` matches based on user group name.
      // +optional
      optional GroupSubject group = 3;
    
      // `serviceAccount` matches ServiceAccounts.
      // +optional
      optional ServiceAccountSubject serviceAccount = 4;
    }
    
    // UserSubject holds detailed information for user-kind subject.
    message UserSubject {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top