Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for userInfo (0.56 sec)

  1. plugin/pkg/admission/priority/admission_test.go

    		Description: "Name has system critical prefix",
    	}
    
    	tests := []struct {
    		name            string
    		existingClasses []*scheduling.PriorityClass
    		newClass        *scheduling.PriorityClass
    		userInfo        user.Info
    		operation       admission.Operation
    		expectError     bool
    	}{
    		{
    			"create operator with default class",
    			[]*scheduling.PriorityClass{},
    			defaultClass1,
    			nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 03 18:43:48 UTC 2022
    - 21.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    	userInfo := &authenticationv1.UserInfo{
    		Extra:    make(map[string]authenticationv1.ExtraValue),
    		Groups:   info.GetGroups(),
    		UID:      info.GetUID(),
    		Username: info.GetName(),
    	}
    	// Convert the extra information in the user object
    	for key, val := range info.GetExtra() {
    		userInfo.Extra[key] = authenticationv1.ExtraValue(val)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	Verb string `json:"verb" protobuf:"bytes,5,opt,name=verb"`
    	// Authenticated user information.
    	User authnv1.UserInfo `json:"user" protobuf:"bytes,6,opt,name=user"`
    	// Impersonated user information.
    	// +optional
    	ImpersonatedUser *authnv1.UserInfo `json:"impersonatedUser,omitempty" protobuf:"bytes,7,opt,name=impersonatedUser"`
    	// Source IPs, from where the request originated and intermediate proxies.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. docs/sts/web-identity.md

    MINIO_IDENTITY_OPENID_CLAIM_USERINFO        (on|off)    Enable fetching claims from UserInfo Endpoint for authenticated user
    MINIO_IDENTITY_OPENID_KEYCLOAK_REALM        (string)    Specify Keycloak 'realm' name, only honored if vendor was set to 'keycloak' as value, if no realm is specified 'master' is default
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    	//
    	// CEL expressions have access to the contents of UserInfo, organized into CEL variable:
    	// - 'user' - authentication.k8s.io/v1, Kind=UserInfo object
    	//    Refer to https://github.com/kubernetes/api/blob/release-1.28/authentication/v1/types.go#L105-L122 for the definition.
    	//    API documentation: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.28/#userinfo-v1-authentication-k8s-io
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  6. pkg/serviceaccount/jwt.go

    	// issuer string.
    	sa, err := j.validator.Validate(ctx, tokenData, public, private)
    	if err != nil {
    		return nil, false, err
    	}
    
    	return &authenticator.Response{
    		User:      sa.UserInfo(),
    		Audiences: auds,
    	}, true, nil
    }
    
    // hasCorrectIssuer returns true if tokenData is a valid JWT in compact
    // serialization format and the "iss" claim matches the iss field of this token
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper_test.go

    	testCases := map[string]struct {
    		serverFunc             func(http.Handler) *httptest.Server
    		proxyServerFunc        func(http.Handler) *httptest.Server
    		proxyAuth              *url.Userinfo
    		clientTLS              *tls.Config
    		serverConnectionHeader string
    		serverUpgradeHeader    string
    		serverStatusCode       int
    		shouldError            bool
    	}{
    		"no headers": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 32.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/Constants.java

        public static final String PURGE_SEARCH_LOG_DAY_PROPERTY = "purge.searchlog.day";
    
        public static final String PURGE_USER_INFO_DAY_PROPERTY = "purge.userinfo.day";
    
        public static final String PURGE_JOB_LOG_DAY_PROPERTY = "purge.joblog.day";
    
        public static final String PURGE_BY_BOTS_PROPERTY = "purge.by.bots";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. internal/event/target/nats.go

    func (n NATSArgs) connectNats() (*nats.Conn, error) {
    	connOpts := []nats.Option{nats.Name("Minio Notification"), nats.MaxReconnects(-1)}
    	if n.Username != "" && n.Password != "" {
    		connOpts = append(connOpts, nats.UserInfo(n.Username, n.Password))
    	}
    	if n.UserCredentials != "" {
    		connOpts = append(connOpts, nats.UserCredentials(n.UserCredentials))
    	}
    	if n.Token != "" {
    		connOpts = append(connOpts, nats.Token(n.Token))
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/testcase.go

    	subResource := ""
    	userInfo := user.DefaultInfo{
    		Name: "webhook-test",
    		UID:  "webhook-test",
    	}
    	options := &metav1.UpdateOptions{}
    
    	return &FakeAttributes{
    		Attributes: admission.NewAttributesRecord(object.(runtime.Object), oldObject.(runtime.Object), kind, namespace, name, gvr, subResource, admission.Update, options, dryRun, &userInfo),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 47.6K bytes
    - Viewed (0)
Back to top