Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for UserSubject (0.34 sec)

  1. 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)
  2. staging/src/k8s.io/api/flowcontrol/v1beta2/generated.pb.go

    var xxx_messageInfo_Subject proto.InternalMessageInfo
    
    func (m *UserSubject) Reset()      { *m = UserSubject{} }
    func (*UserSubject) ProtoMessage() {}
    func (*UserSubject) Descriptor() ([]byte, []int) {
    	return fileDescriptor_2e620af2eea53237, []int{22}
    }
    func (m *UserSubject) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *UserSubject) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 142K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta1/generated.pb.go

    var xxx_messageInfo_Subject proto.InternalMessageInfo
    
    func (m *UserSubject) Reset()      { *m = UserSubject{} }
    func (*UserSubject) ProtoMessage() {}
    func (*UserSubject) Descriptor() ([]byte, []int) {
    	return fileDescriptor_3a5cb22a034fcb2a, []int{22}
    }
    func (m *UserSubject) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *UserSubject) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 142K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_filter_test.go

    				Type: flowcontrol.FlowDistinguisherMethodByUserType,
    			},
    			Rules: []flowcontrol.PolicyRulesWithSubjects{{
    				Subjects: []flowcontrol.Subject{{
    					Kind: flowcontrol.SubjectKindUser,
    					User: &flowcontrol.UserSubject{Name: username},
    				}},
    				NonResourceRules: []flowcontrol.NonResourcePolicyRule{{
    					Verbs:           []string{"*"},
    					NonResourceURLs: []string{"*"},
    				}},
    			}},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta3/generated.pb.go

    var xxx_messageInfo_Subject proto.InternalMessageInfo
    
    func (m *UserSubject) Reset()      { *m = UserSubject{} }
    func (*UserSubject) ProtoMessage() {}
    func (*UserSubject) Descriptor() ([]byte, []int) {
    	return fileDescriptor_52ab6629c083d251, []int{22}
    }
    func (m *UserSubject) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *UserSubject) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 141.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1/generated.pb.go

    var xxx_messageInfo_Subject proto.InternalMessageInfo
    
    func (m *UserSubject) Reset()      { *m = UserSubject{} }
    func (*UserSubject) ProtoMessage() {}
    func (*UserSubject) Descriptor() ([]byte, []int) {
    	return fileDescriptor_5d08a1401821035d, []int{22}
    }
    func (m *UserSubject) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *UserSubject) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 141.8K 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