Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for targetUser (0.22 sec)

  1. cmd/admin-handlers-idp-ldap.go

    	}
    
    	// Check if we are creating svc account for request sender.
    	isSvcAccForRequestor := targetUser == requestorUser || targetUser == requestorParentUser
    
    	var (
    		targetGroups []string
    		err          error
    	)
    
    	// If we are creating svc account for request sender, ensure that targetUser
    	// is a real user (i.e. not derived credentials).
    	if isSvcAccForRequestor {
    		if requestorIsDerivedCredential {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 08 02:46:04 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users_test.go

    		TargetUser: tgtUser,
    	})
    	if err != nil {
    		c.Fatalf("user should be able to create service accounts %s", err)
    	}
    	return cr
    }
    
    func (c *check) mustNotCreateSvcAccount(ctx context.Context, tgtUser string, admClnt *madmin.AdminClient) {
    	c.Helper()
    	_, err := admClnt.AddServiceAccount(ctx, madmin.AddServiceAccountReq{
    		TargetUser: tgtUser,
    	})
    	if err == nil {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

            this.deleteCommand = deleteCommand;
        }
    
        /**
         * Sets the array of target usernames for command execution.
         * @param targetUsers The target users array.
         */
        public void setTargetUsers(final String[] targetUsers) {
            this.targetUsers = targetUsers;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.1K bytes
    - Viewed (0)
Back to top