Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for userString (0.27 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation.go

    			Extra:  userExtra,
    			UID:    uid,
    		}
    		req = req.WithContext(request.WithUser(ctx, newUser))
    
    		oldUser, _ := request.UserFrom(ctx)
    		httplog.LogOf(req, w).Addf("%v is impersonating %v", userString(oldUser), userString(newUser))
    
    		ae := audit.AuditEventFrom(ctx)
    		audit.LogImpersonatedUser(ae, newUser)
    
    		// clear all the impersonation headers from the request
    		req.Header.Del(authenticationv1.ImpersonateUserHeader)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 10:10:35 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/Type3Message.java

        public String toString () {
            String userString = getUser();
            String domainString = getDomain();
            String workstationString = getWorkstation();
            byte[] lmResponseBytes = getLMResponse();
            byte[] ntResponseBytes = getNTResponse();
            byte[] sessionKeyBytes = getEncryptedSessionKey();
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 30.6K bytes
    - Viewed (0)
  3. test/loopbce.go

    	for i := 0; i < len(a); i += 5 { // ERROR "Induction variable: limits \[0,20\], increment 5$"
    		useString(a[i:]) // ERROR "(\([0-9]+\) )?Proved IsSliceInBounds$"
    		useString(a[:i+3]) // ERROR "(\([0-9]+\) )?Proved IsSliceInBounds$"
    		useString(a[:i+5]) // ERROR "(\([0-9]+\) )?Proved IsSliceInBounds$"
    		useString(a[:i+6])
    	}
    }
    
    func g3b(a string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top