Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 85 for Userinfo (0.17 sec)

  1. src/net/url/url.go

    }
    
    // User returns a [Userinfo] containing the provided username
    // and no password set.
    func User(username string) *Userinfo {
    	return &Userinfo{username, "", false}
    }
    
    // UserPassword returns a [Userinfo] containing the provided username
    // and password.
    //
    // This functionality should only be used with legacy web sites.
    // RFC 2396 warns that interpreting Userinfo this way
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

            }
        }
    
        private void addBasicAuthentication(URI address, URLConnection connection) throws IOException {
            String userInfo = calculateUserInfo(address);
            if (userInfo == null) {
                return;
            }
            if (!"https".equals(address.getScheme())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authentication/v1/types.go

    // SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.
    type SelfSubjectReviewStatus struct {
    	// User attributes of the user making this request.
    	// +optional
    	UserInfo UserInfo `json:"userInfo,omitempty" protobuf:"bytes,1,opt,name=userInfo"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

     * component of an SMB URL like "<tt>domain;user:pass</tt>". This constructor
     * is used internally be jCIFS when parsing SMB URLs.
     */
    
        public NtlmPasswordAuthentication( String userInfo ) {
            domain = username = password = null;
    
            if( userInfo != null ) {
                try {
                    userInfo = unescape( userInfo );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/authz.go

    	GetSubresource() string
    }
    
    func NewAuthorizerVal(userInfo user.Info, authorizer authorizer.Authorizer) ref.Val {
    	return authorizerVal{receiverOnlyObjectVal: receiverOnlyVal(AuthorizerType), userInfo: userInfo, authAuthorizer: authorizer}
    }
    
    func NewResourceAuthorizerVal(userInfo user.Info, authorizer authorizer.Authorizer, requestResource Resource) ref.Val {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authentication/v1alpha1/generated.pb.go

    	return s
    }
    func (this *SelfSubjectReviewStatus) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&SelfSubjectReviewStatus{`,
    		`UserInfo:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.UserInfo), "UserInfo", "v11.UserInfo", 1), `&`, ``, 1) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func valueToStringGenerated(v interface{}) string {
    	rv := reflect.ValueOf(v)
    	if rv.IsNil() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/update.go

    					}
    				} else {
    					if mutatingAdmission.Handles(admission.Update) {
    						return newObj, mutatingAdmission.Admit(ctx, admission.NewAttributesRecord(newObj, oldObj, scope.Kind, namespace, name, scope.Resource, scope.Subresource, admission.Update, options, dryrun.IsDryRun(options.DryRun), userInfo), scope)
    					}
    				}
    				return newObj, nil
    			})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:19:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    				"request.name == 'fake-name'",
    				"request.namespace == 'fake-namespace'",
    				"request.operation == 'CREATE'",
    				"request.userInfo.username == 'admin'",
    				"request.userInfo.uid == '014fbff9a07c'",
    				"request.userInfo.groups == ['system:authenticated', 'my-admin-group']",
    				"request.userInfo.extra == {'some-key': ['some-value1', 'some-value2']}",
    				"request.dryRun == false",
    				"request.options == {'whatever': 'you want'}",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                    String userInfo = this.url.getUserInfo();
                    if ( userInfo != null ) {
                        userInfo = URLDecoder.decode(userInfo, "UTF-8");
                        int index = userInfo.indexOf(':');
                        user = ( index != -1 ) ? userInfo.substring(0, index) : userInfo;
                        if ( index != -1 )
                            password = userInfo.substring(index + 1);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 25.5K bytes
    - Viewed (0)
  10. cluster/gce/gci/audit_policy_test.go

    		npdSA               = serviceaccount.UserInfo("kube-system", "node-problem-detector", "")
    		namespaceController = serviceaccount.UserInfo("kube-system", "namespace-controller", "")
    		endpointController  = serviceaccount.UserInfo("kube-system", "endpoint-controller", "")
    		defaultSA           = serviceaccount.UserInfo("default", "default", "")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:23:50 UTC 2021
    - 9.8K bytes
    - Viewed (0)
Back to top