HomeSort by relevance Sort by last modified time
    Searched refs:USERNAME (Results 1 - 25 of 37) sorted by null

1 2

  /external/jacoco/org.jacoco.build/
publish.sh 8 USERNAME=$1
10 ssh $USERNAME,eclemma@shell.sourceforge.net create
11 ssh $USERNAME,eclemma@shell.sourceforge.net '/home/project-web/eclemma/scripts/publish-jacoco-snapshot.sh'
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
UserCommandHandlerTest.groovy 34 static final USERNAME = "user123"
41 serverConfiguration.userAccounts[USERNAME] = userAccount
42 handleCommand([USERNAME])
49 handleCommand([USERNAME])
50 // Will return OK, even if username is not recognized
58 serverConfiguration.userAccounts[USERNAME] = userAccount
60 handleCommand([USERNAME])
69 serverConfiguration.userAccounts[USERNAME] = userAccount
70 handleCommand([USERNAME])
78 serverConfiguration.userAccounts[USERNAME] = userAccoun
    [all...]
AcctCommandHandlerTest.groovy 33 def USERNAME = "user123"
40 assertSessionReply(ReplyCodes.ACCT_OK, ['acct', USERNAME])
45 session.removeAttribute(SessionKeys.USERNAME)
61 session.setAttribute(SessionKeys.USERNAME, USERNAME)
PassCommandHandlerTest.groovy 34 def USERNAME = "user123"
42 serverConfiguration.userAccounts[USERNAME] = userAccount
50 serverConfiguration.userAccounts[USERNAME] = userAccount
59 serverConfiguration.userAccounts[USERNAME] = userAccount
68 serverConfiguration.userAccounts[USERNAME] = userAccount
77 serverConfiguration.userAccounts[USERNAME] = userAccount
86 serverConfiguration.userAccounts[USERNAME] = userAccount
101 session.removeAttribute(SessionKeys.USERNAME)
122 userAccount = new UserAccount(USERNAME, PASSWORD, HOME_DIRECTORY)
124 session.setAttribute(SessionKeys.USERNAME, USERNAME
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/
UserAccountTest.groovy 32 private static final USERNAME = "user123"
40 def acct = new UserAccount(USERNAME, PASSWORD, HOME_DIR)
41 assert acct.username == USERNAME
60 userAccount.username = USERNAME
71 shouldFailWithMessageContaining('username') { userAccount.isValidPassword(PASSWORD) }
73 userAccount.username = ''
74 shouldFailWithMessageContaining('username') { userAccount.isValidPassword(PASSWORD) }
79 customUserAccount.username = USERNAM
    [all...]
FakeFtpServerIntegrationTest.groovy 43 static final USERNAME = "user123"
248 LOG.info("Logging in as $USERNAME/$PASSWORD")
249 assert ftpClient.login(USERNAME, PASSWORD)
250 verifyReplyCode("login with $USERNAME/$PASSWORD", 230)
259 LOG.info("Logging in as $USERNAME/$PASSWORD with $ACCOUNT")
260 assert ftpClient.login(USERNAME, PASSWORD, ACCOUNT)
261 verifyReplyCode("login with $USERNAME/$PASSWORD with $ACCOUNT", 230)
456 userAccount = new UserAccount(USERNAME, PASSWORD, HOME_DIR)
478 assert ftpClient.login(USERNAME, PASSWORD)
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/session/
SessionKeys.java 23 public static final String USERNAME = "username";
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/example/
RemoteFile.java 31 public static final String USERNAME = "user";
41 ftpClient.login(USERNAME, PASSWORD);
  /external/autotest/client/site_tests/enterprise_PowerManagement/
enterprise_PowerManagement.py 45 }""" % (json.dumps(screen_lock_policy), self.USERNAME)
76 }""" % (json.dumps(idle_settings_policy), self.USERNAME)
95 lambda: not cryptohome.is_vault_mounted(user=self.USERNAME,
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
AcctCommandHandler.java 38 String username = (String) getRequiredSessionAttribute(session, SessionKeys.USERNAME); local
41 sendReply(session, ReplyCodes.ACCT_OK, "acct", list(username));
PassCommandHandler.java 41 String username = (String) getRequiredSessionAttribute(session, SessionKeys.USERNAME); local
43 if (validateUserAccount(username, session)) {
44 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
UserCommandHandler.java 31 * <li>Otherwise, set the username in the session and reply with 331</li>
40 String username = command.getRequiredParameter(0); local
41 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
44 if (!validateUserAccount(username, session)) {
54 session.setAttribute(SessionKeys.USERNAME, username);
  /external/nist-sip/java/gov/nist/javax/sip/header/
Credentials.java 52 private static String USERNAME = ParameterNames.USERNAME;
122 else if (nameValue.getName().compareToIgnoreCase(USERNAME) == 0)
AuthenticationHeader.java 74 public static final String USERNAME = ParameterNames.USERNAME;
113 || name.equalsIgnoreCase(ParameterNames.USERNAME)
480 * Returns the Username value of this AuthorizationHeader. This convenience
481 * method returns only the username of the complete Response.
483 * @return the String representing the Username information, null if value
490 return (String) getParameter(ParameterNames.USERNAME);
494 * Sets the Username of the AuthorizationHeader to the <var>username</var>
497 * @param username
    [all...]
ParameterNames.java 44 public static final String USERNAME = "username";
AuthenticationInfo.java 219 || name.equalsIgnoreCase(ParameterNames.USERNAME)
  /external/autotest/site_utils/admin/
autotest.init 32 ( ulimit -v 2048000 ; PATH=$PATH_EXTRAS USER=$BECOME_USER USERNAME=$USER \
  /external/selinux/policycoreutils/mcstrans/src/
mcstrans.init 53 unset HOME MAIL USER USERNAME
  /external/selinux/policycoreutils/restorecond/
restorecond.init 42 unset HOME MAIL USER USERNAME
  /external/autotest/client/cros/
enterprise_base.py 18 USERNAME = 'autotest@managedchrome.com'
80 username=None,
88 @param username: Log in using this username instead of the default.
97 username = self.USERNAME if username is None else username
103 username=username,
    [all...]
  /external/curl/tests/libtest/
lib1507.c 31 #define USERNAME "user@example.com"
86 curl_easy_setopt(curl, CURLOPT_USERNAME, USERNAME);
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/fake/example/
RemoteFileTest.java 65 UserAccount userAccount = new UserAccount(RemoteFile.USERNAME, RemoteFile.PASSWORD, HOME_DIR);
  /prebuilts/ninja/darwin-x86/
build-common.sh 10 # USER - username
49 USER=$USERNAME
  /prebuilts/ninja/linux-x86/
build-common.sh 10 # USER - username
49 USER=$USERNAME
  /external/autotest/client/site_tests/policy_ManagedBookmarks/
policy_ManagedBookmarks.py 95 domain_name = self.USERNAME.split('@')[1]

Completed in 3546 milliseconds

1 2