Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 209 for userInfo (0.26 sec)

  1. staging/src/k8s.io/api/authentication/v1beta1/types_swagger_doc_generated.go

    	return map_SelfSubjectReview
    }
    
    var map_SelfSubjectReviewStatus = map[string]string{
    	"":         "SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.",
    	"userInfo": "User attributes of the user making this request.",
    }
    
    func (SelfSubjectReviewStatus) SwaggerDoc() map[string]string {
    	return map_SelfSubjectReviewStatus
    }
    
    var map_TokenReview = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. pkg/kube/adapter.go

    	RequestSubResource string `json:"requestSubResource,omitempty"`
    
    	// UserInfo is information about the requesting user
    	UserInfo authenticationv1.UserInfo `json:"userInfo"`
    
    	// Name is the name of the object as presented in the request.  On a CREATE operation, the client may omit name and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 10 16:40:00 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/configureObject/kotlin/build.gradle.kts

    class UserInfo(
        var name: String? = null,
        var email: String? = null
    )
    
    tasks.register("greet") {
        val user = UserInfo().apply {
            name = "Isaac Newton"
            email = "******@****.***"
        }
        doLast {
            println(user.name)
            println(user.email)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 09:57:48 UTC 2024
    - 285 bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                String userInfo = url.getUserInfo();
                if (userInfo != null) {
                    userInfo = URLDecoder.decode(userInfo);
                    int index = userInfo.indexOf(':');
                    user = (index != -1) ? userInfo.substring(0, index) : userInfo;
                    if (index != -1) password = userInfo.substring(index + 1);
                    index = user.indexOf('\\');
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  5. pkg/apis/authentication/v1alpha1/zz_generated.conversion.go

    	if err := v1.Convert_v1_UserInfo_To_authentication_UserInfo(&in.UserInfo, &out.UserInfo, s); err != nil {
    		return err
    	}
    	return nil
    }
    
    // Convert_v1alpha1_SelfSubjectReviewStatus_To_authentication_SelfSubjectReviewStatus is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 14 16:00:26 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/attributes.go

    		options:             operationOptions,
    		dryRun:              dryRun,
    		object:              object,
    		oldObject:           oldObject,
    		userInfo:            userInfo,
    		reinvocationContext: &reinvocationContext{},
    	}
    }
    
    func (record *attributesRecord) GetKind() schema.GroupVersionKind {
    	return record.kind
    }
    
    func (record *attributesRecord) GetNamespace() string {
    	return record.namespace
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 07 17:53:14 UTC 2019
    - 6.2K bytes
    - Viewed (0)
  7. pkg/apis/authentication/zz_generated.deepcopy.go

    			}
    			(*out)[key] = outVal
    		}
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserInfo.
    func (in *UserInfo) DeepCopy() *UserInfo {
    	if in == nil {
    		return nil
    	}
    	out := new(UserInfo)
    	in.DeepCopyInto(out)
    	return out
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 14 16:00:26 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authentication/v1beta1/generated.proto

    message SelfSubjectReviewStatus {
      // User attributes of the user making this request.
      // +optional
      optional .k8s.io.api.authentication.v1.UserInfo userInfo = 1;
    }
    
    // TokenReview attempts to authenticate a token to a known user.
    // Note: TokenReview requests may be cached by the webhook token authenticator
    // plugin in the kube-apiserver.
    message TokenReview {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java

                    final Set<String> permissionSet = new HashSet<>();
                    final UserInfo userInfo = authResult.getUserInfo();
                    final String uniqueId = userInfo.getUniqueId();
                    final String displayableId = userInfo.getDisplayableId();
                    if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. pkg/registry/admissionregistration/validatingadmissionpolicybinding/authz_test.go

    )
    
    func TestAuthorization(t *testing.T) {
    	for _, tc := range []struct {
    		name             string
    		userInfo         user.Info
    		auth             AuthFunc
    		policyGetter     PolicyGetterFunc
    		resourceResolver resolver.ResourceResolverFunc
    		expectErr        bool
    	}{
    		{
    			name:      "superuser",
    			userInfo:  &user.DefaultInfo{Groups: []string{user.SystemPrivilegedGroup}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:09 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top