100+ results for 'username'

Not the results you expected?

Validator.cs (https://ims.svn.codeplex.com/svn) C# · 458 lines

29 StringBuilder stringBuilder = new StringBuilder();

30

31 if (!ValidateUsername(employee.Username))

32 {

33 stringBuilder.AppendFormat(@"Tên đăng nhập: {0} \n", InventoryConstants.Messages.InvalidUsername);

437 }

438

439 private static bool ValidateUsername(string usernameToValidate)

440 {

441 if (usernameToValidate != null)

442 {

443 if (ValidateStringLength(usernameToValidate, 4, 50))

444 {

445 Regex regex = new Regex(InventoryConstants.UsernameRegex);

RegisterTraitTest.php (git://github.com/CakeDC/users.git) PHP · 429 lines

71 ]);

72

73 $this->assertEquals(0, $this->table->find()->where(['username' => 'testRegistration'])->count());

74 $this->_mockRequestPost();

75 $this->_mockAuthentication();

85 ->method('getData')

86 ->will($this->returnValue([

87 'username' => 'testRegistration',

88 'password' => 'password',

89 'email' => 'test-registration@example.com',

94 $this->Trait->register();

95

96 $this->assertEquals(1, $this->table->find()->where(['username' => 'testRegistration'])->count());

97 }

98

AuthUser.java (git://github.com/hudec/sql-processor.git) Java · 478 lines

29

30 @JsonIgnore

31 public final static String ORDER_BY_USERNAME = "USERNAME";

32

33 public AuthUser() {

36 public AuthUser(final String username, final String name) {

37 super();

38 setUsername(username);

39 setName(name);

40 }

62 }

63

64 public void setUsername(final String username) {

65 this.username = username;

68 public AuthUser _setUsername(final String username) {

69 this.username = username;

70 return this;

71 }

DaoAuthenticationProviderTest.php (git://github.com/symfony/symfony.git) PHP · 355 lines

15 use Symfony\Component\Security\Core\Authentication\Provider\DaoAuthenticationProvider;

16 use Symfony\Component\Security\Core\Encoder\PlaintextPasswordEncoder;

17 use Symfony\Component\Security\Core\Exception\UsernameNotFoundException;

18 use Symfony\Component\Security\Core\Tests\Encoder\TestPasswordEncoderInterface;

19 use Symfony\Component\Security\Core\User\PasswordUpgraderInterface;

34 }

35

36 public function testRetrieveUserWhenUsernameIsNotFound()

37 {

38 $this->expectException('Symfony\Component\Security\Core\Exception\UsernameNotFoundException');

39 $userProvider = $this->getMockBuilder('Symfony\\Component\\Security\\Core\\User\\UserProviderInterface')->getMock();

40 $userProvider->expects($this->once())

41 ->method('loadUserByUsername')

42 ->willThrowException(new UsernameNotFoundException())

55 $userProvider = $this->getMockBuilder('Symfony\\Component\\Security\\Core\\User\\UserProviderInterface')->getMock();

56 $userProvider->expects($this->once())

57 ->method('loadUserByUsername')

58 ->willThrowException(new \RuntimeException())

59 ;

db2-sakila-schema.sql (git://github.com/jOOQ/jOOQ.git) SQL · 430 lines

260 store_id INT NOT NULL,

261 active SMALLINT DEFAULT 1 NOT NULL,

262 username VARCHAR(16) NOT NULL,

263 password VARCHAR(40) DEFAULT NULL,

264 last_update DATE NOT NULL DEFAULT CURRENT_DATE,

JournalFolderModel.java (git://github.com/liferay/liferay-portal.git) Java · 596 lines

176 @AutoEscape

177 @Override

178 public String getUserName();

179

180 /**

184 */

185 @Override

186 public void setUserName(String userName);

187

188 /**

370 */

371 @Override

372 public void setStatusByUserName(String statusByUserName);

373

374 /**

BSComment.cs (https://blogsa.svn.codeplex.com/svn) C# · 469 lines

23 set { _CommentID = value; }

24 }

25 private string _UserName;

26 public string UserName

27 {

28 get { return _UserName; }

29 set { _UserName = value; }

364 bsComment.PostID = Convert.ToInt32(dr["PostID"]);

365 bsComment.UserID = Convert.ToInt32(dr["UserID"]);

366 bsComment.UserName = dr["Name"].ToString();

367 bsComment.WebPage = dr["WebPage"].ToString();

368 bsComment.Approve = Convert.ToBoolean(dr["Approve"]);

373 if (user != null)

374 {

375 bsComment.UserName = user.Name;

376 bsComment.WebPage = user.WebPage;

377 bsComment.Email = user.Email;

WikiPageCacheModel.java (git://github.com/liferay/liferay-portal.git) Java · 398 lines

82 sb.append(", userName=");

83 sb.append(userName);

84 sb.append(", createDate=");

85 sb.append(createDate);

142 }

143 else {

144 wikiPageImpl.setUserName(userName);

145 }

146

220 if (statusByUserName == null) {

221 wikiPageImpl.setStatusByUserName(StringPool.BLANK);

222 }

223 else {

224 wikiPageImpl.setStatusByUserName(statusByUserName);

225 }

226

EntryWrapper.java (git://github.com/liferay/liferay-portal.git) Java · 721 lines

46 attributes.put("companyId", getCompanyId());

47 attributes.put("userId", getUserId());

48 attributes.put("userName", getUserName());

49 attributes.put("createDate", getCreateDate());

50 attributes.put("modifiedDate", getModifiedDate());

93 }

94

95 String userName = (String)attributes.get("userName");

96

97 if (userName != null) {

98 setUserName(userName);

99 }

100

700 */

701 @Override

702 public void setUserName(String userName) {

703 model.setUserName(userName);

ALHttpClient.pas (http://wot-stat-utility.googlecode.com/svn/trunk/) Pascal · 330 lines

41 property ProxyServer: String read FProxyServer write SetProxyServer; //index 1

42 property ProxyPort: integer read FProxyPort write SetProxyPort default 0; //index 2

43 property ProxyUserName: String read FProxyUserName write SetProxyUserName; //index 3

44 property ProxyPassword: String read FProxyPassword write SetProxyPassword; //index 4

45 property OnChange: TALHTTPPropertyChangeEvent read FOnChange write FOnChange;

91 Property ProtocolVersion: TALHTTPProtocolVersion read FProtocolVersion write FProtocolVersion default HTTPpv_1_1;

92 Property RequestMethod: TALHTTPRequestMethod read FRequestMethod write fRequestMethod default HTTPrm_get;

93 property UserName: string read FUserName write SetUserName;

94 property Password: string read FPassword write SetPassword;

95 property OnUploadProgress: TALHTTPClientUploadProgressEvent read FOnUploadProgress write FOnUploadProgress;

245 FProxyBypass := self.FProxyBypass;

246 FproxyServer := self.FproxyServer;

247 FProxyUserName := self.FProxyUserName;

248 FProxyPassword := self.FProxyPassword;

249 FproxyPort := self.FproxyPort;

DefaultProfile.cs (https://nma.svn.codeplex.com/svn) C# · 132 lines

20

21 //Mapper.CreateMap<Audit, CategoryAuditEvent>()

22 // .ForMember(dest => dest.UserName, opt => opt.MapFrom(src => src.UserName))

23 // .ForMember(dest => dest.UserAction, opt => opt.MapFrom(src => src.UserAction))

24 // .ForMember(dest => dest.DateEvent, opt => opt.MapFrom(src => src.DateEvent));

26 Mapper.CreateMap<AuditEvent, Audit>()

27 .ForMember(dest => dest.Id, opt => opt.UseValue<Guid>(Guid.NewGuid()))

28 .ForMember(dest => dest.UserName, opt => opt.MapFrom(src => src.UserName))

29 .ForMember(dest => dest.UserAction, opt => opt.MapFrom(src => src.UserAction))

30 .ForMember(dest => dest.DateEvent, opt => opt.MapFrom(src => src.DateEvent));

block_myprofile.feature (git://github.com/moodle/moodle.git) Gherkin Specification · 309 lines

7 Scenario: Configure the logged in user block to show / hide the users country

8 Given the following "users" exist:

9 | username | firstname | lastname | email | country |

10 | teacher1 | Teacher | One | teacher1@example.com | AU |

11 And I log in as "teacher1"

26 Scenario: Configure the logged in user block to show / hide the users city

27 Given the following "users" exist:

28 | username | firstname | lastname | email | city |

29 | teacher1 | Teacher | One | teacher1@example.com | Perth |

30 And I log in as "teacher1"

45 Scenario: Configure the logged in user block to show / hide the users email

46 Given the following "users" exist:

47 | username | firstname | lastname | email |

48 | teacher1 | Teacher | One | teacher1@example.com |

49 And I log in as "teacher1"

RemotingConfigBean.java (git://github.com/Chorus-bdd/Chorus.git) Java · 220 lines

179 order = 70

180 )

181 public void setUserName(String userName) { this.userName = userName; }

182

183 @Override

201 if (connectionAttempts < 0) throw new ConfigValidatorException("connectionAttempts must be set and > 0");

202 if (connectionAttemptMillis < 0) throw new ConfigValidatorException("connectionAttemptMillis must be set and > 0");

203 if ( userName != null && password == null) throw new ConfigValidatorException("If userName is set, then password must also be provided");

204 }

205

213 ", connectionAttempts=" + connectionAttempts +

214 ", connectionAttemptMillis=" + connectionAttemptMillis +

215 ", userName=" + userName +

216 ", password=" + password == null ? "not set" : "*******" +

217 ", scope=" + scope +

GithubUrlUtilTest.java (git://github.com/JetBrains/intellij-community.git) Java · 316 lines

192 TestCase<GithubFullPath> tests = new TestCase<>();

193

194 tests.add("http://github.com/username/reponame/", new GithubFullPath("username", "reponame"));

195 tests.add("https://github.com/username/reponame/", new GithubFullPath("username", "reponame"));

223 TestCase<String> tests = new TestCase<>();

224

225 tests.add("http://github.com/username/reponame/", "https://github.com/username/reponame");

226 tests.add("https://github.com/username/reponame/", "https://github.com/username/reponame");

230 tests.add("https://github.com/username/reponame", "https://github.com/username/reponame");

231 tests.add("https://github.com/username/reponame.git", "https://github.com/username/reponame");

232 tests.add("https://github.com/username/reponame.git/", "https://github.com/username/reponame");

238 tests.add("HTTPS://GitHub.com/username/reponame/", "https://github.com/username/reponame");

239 tests.add("https://github.com/UserName/RepoName/", "https://github.com/UserName/RepoName");

240

241 tests.add("https://github.com/RepoName/", null);

NodeResource.java (git://github.com/liferay/liferay-portal.git) Java · 473 lines

210 httpInvoker.path("processId", processId);

211

212 httpInvoker.userNameAndPassword(

213 _builder._login + ":" + _builder._password);

214

293 httpInvoker.path("processId", processId);

294

295 httpInvoker.userNameAndPassword(

296 _builder._login + ":" + _builder._password);

297

372 httpInvoker.path("processId", processId);

373

374 httpInvoker.userNameAndPassword(

375 _builder._login + ":" + _builder._password);

376

UserProfile.aspx (http://ataman.googlecode.com/svn/trunk/) ASP.NET · 112 lines

34 <asp:ObjectDataSource id="srcRoles" TypeName="System.Web.Security.Roles" SelectMethod="GetRolesForUser" Runat="server" />

35 </div>

36 <div class="userName">

37 ???: <asp:Label ID="Name" runat="server" Text="" />

38 </div>

modgrade_validation.feature (git://github.com/moodle/moodle.git) Gherkin Specification · 209 lines

7 Background:

8 Given the following "users" exist:

9 | username | firstname | lastname | email |

10 | student1 | Student | 1 | student1@example.com |

11 | teacher1 | Teacher | 1 | teacher1@example.com |

JournalArticleSoap.java (git://github.com/liferay/liferay-portal.git) Java · 427 lines

41 soapModel.setCompanyId(model.getCompanyId());

42 soapModel.setUserId(model.getUserId());

43 soapModel.setUserName(model.getUserName());

44 soapModel.setCreateDate(model.getCreateDate());

45 soapModel.setModifiedDate(model.getModifiedDate());

66 soapModel.setStatus(model.getStatus());

67 soapModel.setStatusByUserId(model.getStatusByUserId());

68 soapModel.setStatusByUserName(model.getStatusByUserName());

69 soapModel.setStatusDate(model.getStatusDate());

70

172 }

173

174 public void setUserName(String userName) {

175 _userName = userName;

380 }

381

382 public void setStatusByUserName(String statusByUserName) {

383 _statusByUserName = statusByUserName;

AccountCacheModel.java (git://github.com/liferay/liferay-portal.git) Java · 414 lines

74 sb.append(", userId=");

75 sb.append(userId);

76 sb.append(", userName=");

77 sb.append(userName);

133 accountImpl.setUserId(userId);

134

135 if (userName == null) {

136 accountImpl.setUserName(StringPool.BLANK);

137 }

138 else {

139 accountImpl.setUserName(userName);

140 }

141

245

246 userId = objectInput.readLong();

247 userName = objectInput.readUTF();

248 createDate = objectInput.readLong();

249 modifiedDate = objectInput.readLong();

ChannelTest.java (git://github.com/twilio/twilio-java.git) Java · 210 lines

125 new NonStrictExpectations() {{

126 twilioRestClient.request((Request) any);

127 result = new Response("{\"sid\": \"CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"account_sid\": \"ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"service_sid\": \"ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"friendly_name\": \"friendly_name\",\"unique_name\": \"unique_name\",\"attributes\": \"{ \\\"foo\\\": \\\"bar\\\" }\",\"type\": \"public\",\"date_created\": \"2015-12-16T22:18:37Z\",\"date_updated\": \"2015-12-16T22:18:38Z\",\"created_by\": \"username\",\"members_count\": 0,\"messages_count\": 0,\"url\": \"https://ip-messaging.twilio.com/v2/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Channels/CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"links\": {\"members\": \"https://ip-messaging.twilio.com/v2/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Channels/CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Members\",\"messages\": \"https://ip-messaging.twilio.com/v2/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Channels/CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Messages\",\"invites\": \"https://ip-messaging.twilio.com/v2/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Channels/CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Invites\",\"webhooks\": \"https://ip-messaging.twilio.com/v2/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Channels/CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Webhooks\",\"last_message\": null}}", TwilioRestClient.HTTP_STATUS_CODE_CREATED);

128 twilioRestClient.getObjectMapper();

129 result = new ObjectMapper();

201 new NonStrictExpectations() {{

202 twilioRestClient.request((Request) any);

203 result = new Response("{\"sid\": \"CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"account_sid\": \"ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"service_sid\": \"ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"friendly_name\": \"friendly_name\",\"unique_name\": \"unique_name\",\"attributes\": \"{ \\\"foo\\\": \\\"bar\\\" }\",\"type\": \"public\",\"date_created\": \"2015-12-16T22:18:37Z\",\"date_updated\": \"2015-12-16T22:18:38Z\",\"created_by\": \"username\",\"members_count\": 0,\"messages_count\": 0,\"url\": \"https://ip-messaging.twilio.com/v2/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Channels/CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"links\": {\"members\": \"https://ip-messaging.twilio.com/v2/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Channels/CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Members\",\"messages\": \"https://ip-messaging.twilio.com/v2/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Channels/CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Messages\",\"invites\": \"https://ip-messaging.twilio.com/v2/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Channels/CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Invites\",\"webhooks\": \"https://ip-messaging.twilio.com/v2/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Channels/CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Webhooks\",\"last_message\": null}}", TwilioRestClient.HTTP_STATUS_CODE_OK);

204 twilioRestClient.getObjectMapper();

205 result = new ObjectMapper();

MDRRuleGroupModel.java (git://github.com/liferay/liferay-portal.git) Java · 501 lines

172 @AutoEscape

173 @Override

174 public String getUserName();

175

176 /**

177 * Sets the user name of this m d r rule group.

178 *

179 * @param userName the user name of this m d r rule group

180 */

181 @Override

182 public void setUserName(String userName);

183

184 /**

grade_calculated_grade_items.feature (git://github.com/moodle/moodle.git) Gherkin Specification · 163 lines

10 | Course 1 | C1 | 0 | 1 |

11 And the following "users" exist:

12 | username | firstname | lastname | email | idnumber |

13 | teacher1 | Teacher | 1 | teacher1@example.com | t1 |

14 | student1 | Student | 1 | student1@example.com | s1 |

step_3.php (http://coderstalk.googlecode.com/svn/trunk/) PHP · 244 lines

34 $output .= 'define(\'DB_DRIVER\', \'mysql\');' . "\n";

35 $output .= 'define(\'DB_HOSTNAME\', \'' . $this->request->post['db_host'] . '\');' . "\n";

36 $output .= 'define(\'DB_USERNAME\', \'' . $this->request->post['db_user'] . '\');' . "\n";

37 $output .= 'define(\'DB_PASSWORD\', \'' . $this->request->post['db_password'] . '\');' . "\n";

38 $output .= 'define(\'DB_DATABASE\', \'' . $this->request->post['db_name'] . '\');' . "\n";

114 if (isset($this->error['username'])) {

115 $this->data['error_username'] = $this->error['username'];

116 } else {

117 $this->data['error_username'] = '';

164 if (isset($this->request->post['username'])) {

165 $this->data['username'] = $this->request->post['username'];

166 } else {

167 $this->data['username'] = 'admin';

205 if (!$this->request->post['username']) {

206 $this->error['username'] = 'Username required!';

207 }

208

upkeep.php (http://records-authority.googlecode.com/svn/) PHP · 336 lines

127 */

128 public function editPasswordForm() {

129 $data['user'] = $this->session->userdata('username');

130 $this->load->view('admin/forms/editPasswordForm', $data);

131 }

185 $this->load->view('admin/forms/addDocTypeForm', $data);

186 }

187 if (isset($_POST['username'])) {

188 $this->UpkeepModel->saveUser($_POST);

189 $data['recordSaved'] = "User Added";

254 $this->load->view('admin/forms/editDocTypeForm', $data);

255 }

256 if (isset($_POST['username'])) {

257 $this->UpkeepModel->updateUser($_POST);

258 $data['users'] = $this->UpkeepModel->getUsers();

Program.cs (https://WCFLatencyTstHarness.svn.codeplex.com/svn) C# · 248 lines

218 info.PerformanceCounterFilename = WcfTestInput.RemotePerformanceCounterFileFullName;

219 info.PsExecExePath = psexecExePath;

220 //info.Username = remoteUser;

221 //info.Password = remotePassword;

222 return info;

grade_calculated_weights.feature (git://github.com/moodle/moodle.git) Gherkin Specification · 250 lines

10 | Course 1 | C1 | 0 | 1 |

11 And the following "users" exist:

12 | username | firstname | lastname | email | idnumber |

13 | teacher1 | Teacher | 1 | teacher1@example.com | t1 |

14 | student1 | Student | 1 | student1@example.com | s1 |

ReactiveFindOperationExtensionsTests.kt (git://github.com/SpringSource/spring-data-mongodb.git) Kotlin · 327 lines

97 every { operation.query(KotlinUser::class.java) } returns reactiveFind

98

99 operation.distinct(KotlinUser::username)

100 verify {

101 operation.query(KotlinUser::class.java)

102 reactiveFind.distinct("username")

103 }

104 }

107 fun `ReactiveFind#FindDistinct#field() using KProperty should call its Java counterpart`() {

108

109 findDistinct.distinct(KotlinUser::username)

110 verify { findDistinct.distinct("username") }

324 }

325

326 data class KotlinUser(val username: String)

327 }

328

SubscriptionModel.java (git://github.com/liferay/liferay-portal.git) Java · 286 lines

182 @AutoEscape

183 @Override

184 public String getUserName();

185

186 /**

187 * Sets the user name of this subscription.

188 *

189 * @param userName the user name of this subscription

190 */

191 @Override

192 public void setUserName(String userName);

193

194 /**

InventoryService.cs (https://ims.svn.codeplex.com/svn) C# · 532 lines

57 }

58

59 public Feedback CheckIfUsernameExists(string usernameToCheck)

60 {

61 return manager.CheckIfUsernameExists(usernameToCheck);

AccountControllerTest.cs (https://nma.svn.codeplex.com/svn) C# · 406 lines

145 // LogOnModel model = new LogOnModel()

146 // {

147 // UserName = "someUser",

148 // Password = "goodPassword",

149 // RememberMe = false

168 // LogOnModel model = new LogOnModel()

169 // {

170 // UserName = "someUser",

171 // Password = "goodPassword",

172 // RememberMe = false

190 // LogOnModel model = new LogOnModel()

191 // {

192 // UserName = "someUser",

193 // Password = "goodPassword",

194 // RememberMe = false

RelationCleanup.php (git://github.com/phpmyadmin/phpmyadmin.git) PHP · 378 lines

278 * Cleanup user related relation stuff

279 *

280 * @param string $username username

281 */

282 public function user($username): void

297 . Util::backquote($cfgRelation['db'])

298 . '.' . Util::backquote($cfgRelation['history'])

299 . " WHERE `username` = '" . $this->dbi->escapeString($username)

300 . "'";

301 $this->relation->queryAsControlUser($remove_query);

306 . Util::backquote($cfgRelation['db'])

307 . '.' . Util::backquote($cfgRelation['recent'])

308 . " WHERE `username` = '" . $this->dbi->escapeString($username)

309 . "'";

310 $this->relation->queryAsControlUser($remove_query);

AccountModel.java (git://github.com/liferay/liferay-portal.git) Java · 559 lines

135 @AutoEscape

136 @Override

137 public String getUserName();

138

139 /**

140 * Sets the user name of this account.

141 *

142 * @param userName the user name of this account

143 */

144 @Override

145 public void setUserName(String userName);

146

147 /**

Provider.cs (https://hg01.codeplex.com/pservicebus) C# · 292 lines

83 var queue = uri.Path;

84 var exchangeName = "ex" + queue;

85 var factory = new ConnectionFactory() { HostName = uri.Host, UserName = uri.Username, Password = uri.Password, Port = uri.Port };

86 return new ProviderFactory() { ConnectionFactory = factory, ExchangeName = exchangeName, Queue = queue };

87 });

ReservationOptions.php (git://github.com/twilio/twilio-php.git) PHP · 958 lines

114 * `conference_recording_status_callback`

115 * @param string $region The region where we should mix the conference audio

116 * @param string $sipAuthUsername The SIP username used for authentication

117 * @param string $sipAuthPassword The SIP password for authentication

118 * @param string[] $dequeueStatusCallbackEvent The call progress events sent

257 * `conference_recording_status_callback`

258 * @param string $region The region where we should mix the conference audio

259 * @param string $sipAuthUsername The SIP username used for authentication

260 * @param string $sipAuthPassword The SIP password for authentication

261 * @param string[] $dequeueStatusCallbackEvent The call progress events sent

316 $this->options['conferenceRecordingStatusCallbackMethod'] = $conferenceRecordingStatusCallbackMethod;

317 $this->options['region'] = $region;

318 $this->options['sipAuthUsername'] = $sipAuthUsername;

319 $this->options['sipAuthPassword'] = $sipAuthPassword;

320 $this->options['dequeueStatusCallbackEvent'] = $dequeueStatusCallbackEvent;

ReservationOptions.php (git://github.com/twilio/twilio-php.git) PHP · 986 lines

112 * `conference_recording_status_callback`

113 * @param string $region The region where we should mix the conference audio

114 * @param string $sipAuthUsername The SIP username used for authentication

115 * @param string $sipAuthPassword The SIP password for authentication

116 * @param string[] $dequeueStatusCallbackEvent The Call progress events sent

257 * `conference_recording_status_callback`

258 * @param string $region The region where we should mix the conference audio

259 * @param string $sipAuthUsername The SIP username used for authentication

260 * @param string $sipAuthPassword The SIP password for authentication

261 * @param string[] $dequeueStatusCallbackEvent The Call progress events sent

320 $this->options['conferenceRecordingStatusCallbackMethod'] = $conferenceRecordingStatusCallbackMethod;

321 $this->options['region'] = $region;

322 $this->options['sipAuthUsername'] = $sipAuthUsername;

323 $this->options['sipAuthPassword'] = $sipAuthPassword;

324 $this->options['dequeueStatusCallbackEvent'] = $dequeueStatusCallbackEvent;

ValidationBehaviorTest.php (git://github.com/infinitas/infinitas.git) PHP · 653 lines

202 $data = array(

203 'User' => array(

204 'username' => 'test-user',

205 'group_id' => 'non-existing-group-id'

206 )

PhoneCallOptions.php (git://github.com/twilio/twilio-php.git) PHP · 431 lines

46 * @param string $sipAuthPassword Refers to the Voice API Initiate Call

47 * parameter

48 * @param string $sipAuthUsername Refers to the Voice API Initiate Call

49 * parameter

50 * @param string $statusCallback Refers to the Voice API Initiate Call parameter

58 * @return CreatePhoneCallOptions Options builder

59 */

60 public static function create(string $reason = Values::NONE, string $applicationSid = Values::NONE, string $callerId = Values::NONE, string $fallbackMethod = Values::NONE, string $fallbackUrl = Values::NONE, string $machineDetection = Values::NONE, int $machineDetectionSilenceTimeout = Values::NONE, int $machineDetectionSpeechEndThreshold = Values::NONE, int $machineDetectionSpeechThreshold = Values::NONE, int $machineDetectionTimeout = Values::NONE, string $method = Values::NONE, bool $record = Values::NONE, string $recordingChannels = Values::NONE, string $recordingStatusCallback = Values::NONE, array $recordingStatusCallbackEvent = Values::ARRAY_NONE, string $recordingStatusCallbackMethod = Values::NONE, string $sendDigits = Values::NONE, string $sipAuthPassword = Values::NONE, string $sipAuthUsername = Values::NONE, string $statusCallback = Values::NONE, array $statusCallbackEvent = Values::ARRAY_NONE, string $statusCallbackMethod = Values::NONE, int $timeout = Values::NONE, string $trim = Values::NONE, string $url = Values::NONE): CreatePhoneCallOptions {

61 return new CreatePhoneCallOptions($reason, $applicationSid, $callerId, $fallbackMethod, $fallbackUrl, $machineDetection, $machineDetectionSilenceTimeout, $machineDetectionSpeechEndThreshold, $machineDetectionSpeechThreshold, $machineDetectionTimeout, $method, $record, $recordingChannels, $recordingStatusCallback, $recordingStatusCallbackEvent, $recordingStatusCallbackMethod, $sendDigits, $sipAuthPassword, $sipAuthUsername, $statusCallback, $statusCallbackEvent, $statusCallbackMethod, $timeout, $trim, $url);

123 $this->options['sendDigits'] = $sendDigits;

124 $this->options['sipAuthPassword'] = $sipAuthPassword;

125 $this->options['sipAuthUsername'] = $sipAuthUsername;

126 $this->options['statusCallback'] = $statusCallback;

127 $this->options['statusCallbackEvent'] = $statusCallbackEvent;

347 * @return $this Fluent Builder

348 */

349 public function setSipAuthUsername(string $sipAuthUsername): self {

350 $this->options['sipAuthUsername'] = $sipAuthUsername;

TableDiffTest.php (git://github.com/propelorm/Propel2.git) PHP · 684 lines

228 $table->setDatabase(new Database('foo', new DefaultPlatform()));

229

230 $index = new Index('username_unique_idx');

231 $index->setTable($table);

232

246 $table->setDatabase(new Database('foo', new DefaultPlatform()));

247

248 $index = new Index('username_unique_idx');

249 $index->setTable($table);

250

264 $table->setDatabase(new Database('foo', new DefaultPlatform()));

265

266 $fromIndex = new Index('username_unique_idx');

267 $fromIndex->setTable($table);

268 $fromIndex->setColumns([ new Column('username') ]);

RouterPasswords.pm (git://github.com/duckduckgo/zeroclickinfo-goodies.git) Perl · 4401 lines

7 my %routers = (

8 "2wire homeportal rev. sbc yahoo! dsl" => {

9 "username" => "2Wire",

10 "password" => "password"

11 },

12 "2wire all wifi routers" => {

13 "username" => "(none)",

14 "password" => "password"

15 },

16 "3com corebuilder rev. 7000/6000/3500/2500" => {

17 "username" => "debug",

18 "password" => "password"

19 },

SpecialSchemaLinks.php (git://github.com/phpmyadmin/phpmyadmin.git) PHP · 485 lines

28 * 'user' => array(

29 * // Main url param (can be an array where represent sql)

30 * 'link_param' => 'username',

31 * // Other url params

32 * 'link_dependancy_params' => array(

73 'columns_priv' => [

74 'user' => [

75 'link_param' => 'username',

76 'link_dependancy_params' => [

77 0 => [

109 'db' => [

110 'user' => [

111 'link_param' => 'username',

112 'link_dependancy_params' => [

113 0 => [

ParticipantOptions.php (git://github.com/twilio/twilio-php.git) PHP · 935 lines

82 * when we call

83 * `recording_status_callback`

84 * @param string $sipAuthUsername The SIP username used for authentication

85 * @param string $sipAuthPassword The SIP password for authentication

86 * @param string $region The region where we should mix the conference audio

409 $this->options['recordingStatusCallback'] = $recordingStatusCallback;

410 $this->options['recordingStatusCallbackMethod'] = $recordingStatusCallbackMethod;

411 $this->options['sipAuthUsername'] = $sipAuthUsername;

412 $this->options['sipAuthPassword'] = $sipAuthPassword;

413 $this->options['region'] = $region;

696 public function setSipAuthUsername(string $sipAuthUsername): self {

697 $this->options['sipAuthUsername'] = $sipAuthUsername;

698 return $this;

699 }

822

823 /**

824 * The phone number, Client identifier, or username portion of SIP address that made this call. Phone numbers are in [E.164](https://www.twilio.com/docs/glossary/what-e164) format (e.g., +16175551212). Client identifiers are formatted `client:name`. If using a phone number, it must be a Twilio number or a Verified [outgoing caller id](https://www.twilio.com/docs/voice/api/outgoing-caller-ids) for your account. If the `to` parameter is a phone number, `callerId` must also be a phone number. If `to` is sip address, this value of `callerId` should be a username portion to be used to populate the From header that is passed to the SIP endpoint.

825 *

826 * @param string $callerId The phone number, Client identifier, or username

CallOptions.php (git://github.com/twilio/twilio-php.git) PHP · 899 lines

37 * when calling the

38 * `recording_status_callback` URL

39 * @param string $sipAuthUsername The username used to authenticate the caller

40 * making a SIP call

41 * @param string $sipAuthPassword The password required to authenticate the

140 * when calling the

141 * `recording_status_callback` URL

142 * @param string $sipAuthUsername The username used to authenticate the caller

143 * making a SIP call

144 * @param string $sipAuthPassword The password required to authenticate the

194 $this->options['recordingStatusCallback'] = $recordingStatusCallback;

195 $this->options['recordingStatusCallbackMethod'] = $recordingStatusCallbackMethod;

196 $this->options['sipAuthUsername'] = $sipAuthUsername;

197 $this->options['sipAuthPassword'] = $sipAuthPassword;

198 $this->options['machineDetection'] = $machineDetection;

395 public function setSipAuthUsername(string $sipAuthUsername): self {

396 $this->options['sipAuthUsername'] = $sipAuthUsername;

397 return $this;

398 }

KubernetesCluster.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 451 lines

55 String servicePrincipalSecret();

56

57 /** @return the Linux root username */

58 String linuxRootUsername();

83 KubernetesCluster.DefinitionStages.WithGroup,

84 KubernetesCluster.DefinitionStages.WithVersion,

85 DefinitionStages.WithLinuxRootUsername,

86 DefinitionStages.WithLinuxSshKey,

87 DefinitionStages.WithServicePrincipalClientId,

137 * Begins the definition to specify Linux root username.

138 *

139 * @param rootUserName the root username

140 * @return the next stage of the definition

141 */

142 WithLinuxSshKey withRootUsername(String rootUserName);

143 }

144

MediaFeedDataTest.java (git://github.com/sachin-handiekar/jInstagram.git) Java · 1095 lines

437 // add additional test code here

438 assertNotNull(result);

439 assertEquals("User [bio=null, fullName=null, id=null, profilePictureUrl=null, userName=null, websiteUrl=null]",

440 result.toString());

441 assertEquals(null, result.getId());

442 assertEquals(null, result.getFullName());

443 assertEquals(null, result.getProfilePictureUrl());

444 assertEquals(null, result.getUserName());

445 assertEquals(null, result.getBio());

446 assertEquals(null, result.getWebsiteUrl());

ComputeNodes.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 1350 lines

196 * @param poolId The ID of the Pool that contains the Compute Node.

197 * @param nodeId The ID of the machine on which you want to delete a user Account.

198 * @param userName The name of the user Account to delete.

199 * @throws IllegalArgumentException thrown if parameters fail the validation

200 * @throws BatchErrorException thrown if the request is rejected by server

201 * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent

202 */

203 void deleteUser(String poolId, String nodeId, String userName);

204

205 /**

209 * @param poolId The ID of the Pool that contains the Compute Node.

210 * @param nodeId The ID of the machine on which you want to delete a user Account.

211 * @param userName The name of the user Account to delete.

212 * @param serviceCallback the async ServiceCallback to handle successful and failed responses.

213 * @throws IllegalArgumentException thrown if parameters fail the validation

ComputeNodeOperations.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 585 lines

107 * @param poolId The ID of the pool that contains the compute node.

108 * @param nodeId The ID of the compute node where the user account will be deleted.

109 * @param userName The name of the user account to be deleted.

110 * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.

111 * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.

112 */

113 public void deleteComputeNodeUser(String poolId, String nodeId, String userName) throws BatchErrorException, IOException {

114 deleteComputeNodeUser(poolId, nodeId, userName, null);

120 * @param poolId The ID of the pool that contains the compute node.

121 * @param nodeId The ID of the compute node where the user account will be deleted.

122 * @param userName The name of the user account to be deleted.

123 * @param additionalBehaviors A collection of {@link BatchClientBehavior} instances that are applied to the Batch service request.

124 * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.

125 * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.

126 */

127 public void deleteComputeNodeUser(String poolId, String nodeId, String userName, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {

128 ComputeNodeDeleteUserOptions options = new ComputeNodeDeleteUserOptions();

129 BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors);

ProcessInfoInner.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 948 lines

109 */

110 @JsonProperty(value = "properties.user_name")

111 private String userName;

112

113 /**

509 * Get user name.

510 *

511 * @return the userName value

512 */

513 public String userName() {

518 * Set user name.

519 *

520 * @param userName the userName value to set

521 * @return the ProcessInfoInner object itself.

522 */

523 public ProcessInfoInner withUserName(String userName) {

524 this.userName = userName;

ProcessInfoInner.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 959 lines

108 * User name.

109 */

110 @JsonProperty(value = "properties.userName")

111 private String userName;

520 * Get user name.

521 *

522 * @return the userName value

523 */

524 public String userName() {

529 * Set user name.

530 *

531 * @param userName the userName value to set

532 * @return the ProcessInfoInner object itself.

533 */

534 public ProcessInfoInner withUserName(String userName) {

535 this.userName = userName;

Student.java (git://github.com/restlet/restlet-framework-java.git) Java · 932 lines

104 private String taxId;

105

106 private String userName;

107

108 private String workExperience;

395

396 /**

397 * Returns the value of the "userName" attribute.

398 *

399 * @return The value of the "userName" attribute.

400 */

401 public String getUserName() {

402 return userName;

796 * The value of the "userName" attribute.

797 */

798 public void setUserName(String userName) {

799 this.userName = userName;

Professor.java (git://github.com/restlet/restlet-framework-java.git) Java · 642 lines

71 private String surname;

72

73 private String userName;

74

75 private Tracking tracking;

215

216 /**

217 * Returns the value of the "userName" attribute.

218 *

219 * @return The value of the "userName" attribute.

220 */

221 public String getUserName() {

222 return userName;

473 * The value of the "userName" attribute.

474 */

475 public void setUserName(String userName) {

476 this.userName = userName;

ProcessInfoInner.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 943 lines

105 */

106 @JsonProperty(value = "properties.user_name")

107 private String userName;

108

109 /*

503

504 /**

505 * Get the userName property: User name.

506 *

507 * @return the userName value.

514 * Set the userName property: User name.

515 *

516 * @param userName the userName value to set.

517 * @return the ProcessInfoInner object itself.

518 */

519 public ProcessInfoInner withUserName(String userName) {

520 this.userName = userName;

WebApp.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 510 lines

333 * Specifies the username and password for Docker Hub or the docker registry.

334 *

335 * @param username the username for Docker Hub or the docker registry

336 * @param password the password for Docker Hub or the docker registry

337 * @return the next stage of the definition

338 */

339 WithStartUpCommand withCredentials(String username, String password);

340 }

341

467 * Specifies the username and password for Docker Hub.

468 *

469 * @param username the username for Docker Hub

470 * @param password the password for Docker Hub

471 * @return the next stage of the web app update

MessageTest.java (git://github.com/twilio/twilio-java.git) Java · 246 lines

117 new NonStrictExpectations() {{

118 twilioRestClient.request((Request) any);

119 result = new Response("{\"sid\": \"IMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"account_sid\": \"ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"service_sid\": \"ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"to\": \"CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"channel_sid\": \"CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"date_created\": \"2015-12-16T22:18:37Z\",\"date_updated\": \"2015-12-16T22:18:38Z\",\"last_updated_by\": \"username\",\"was_edited\": true,\"from\": \"system\",\"attributes\": \"{\\\"test\\\": \\\"test\\\"}\",\"body\": \"Hello\",\"index\": 0,\"type\": \"text\",\"media\": null,\"url\": \"https://ip-messaging.twilio.com/v2/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Channels/CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Messages/IMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\"}", TwilioRestClient.HTTP_STATUS_CODE_CREATED);

120 twilioRestClient.getObjectMapper();

121 result = new ObjectMapper();

237 new NonStrictExpectations() {{

238 twilioRestClient.request((Request) any);

239 result = new Response("{\"sid\": \"IMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"account_sid\": \"ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"service_sid\": \"ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"to\": \"CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"channel_sid\": \"CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"attributes\": \"{ \\\"foo\\\": \\\"bar\\\" }\",\"date_created\": \"2015-12-16T22:18:37Z\",\"date_updated\": \"2015-12-16T22:18:38Z\",\"last_updated_by\": \"username\",\"was_edited\": true,\"from\": \"fromUser\",\"body\": \"Hello\",\"index\": 0,\"type\": \"text\",\"media\": null,\"url\": \"https://ip-messaging.twilio.com/v2/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Channels/CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Messages/IMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\"}", TwilioRestClient.HTTP_STATUS_CODE_OK);

240 twilioRestClient.getObjectMapper();

241 result = new ObjectMapper();

MessageTest.java (git://github.com/twilio/twilio-java.git) Java · 246 lines

117 new NonStrictExpectations() {{

118 twilioRestClient.request((Request) any);

119 result = new Response("{\"sid\": \"IMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"account_sid\": \"ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"service_sid\": \"ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"to\": \"CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"channel_sid\": \"CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"date_created\": \"2015-12-16T22:18:37Z\",\"date_updated\": \"2015-12-16T22:18:38Z\",\"last_updated_by\": \"username\",\"was_edited\": true,\"from\": \"system\",\"attributes\": \"{\\\"test\\\": \\\"test\\\"}\",\"body\": \"Hello\",\"index\": 0,\"type\": \"text\",\"media\": null,\"url\": \"https://chat.twilio.com/v2/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Channels/CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Messages/IMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\"}", TwilioRestClient.HTTP_STATUS_CODE_CREATED);

120 twilioRestClient.getObjectMapper();

121 result = new ObjectMapper();

237 new NonStrictExpectations() {{

238 twilioRestClient.request((Request) any);

239 result = new Response("{\"sid\": \"IMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"account_sid\": \"ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"service_sid\": \"ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"to\": \"CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"channel_sid\": \"CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"attributes\": \"{ \\\"foo\\\": \\\"bar\\\" }\",\"date_created\": \"2015-12-16T22:18:37Z\",\"date_updated\": \"2015-12-16T22:18:38Z\",\"last_updated_by\": \"username\",\"was_edited\": true,\"from\": \"fromUser\",\"body\": \"Hello\",\"index\": 0,\"type\": \"text\",\"media\": null,\"url\": \"https://chat.twilio.com/v2/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Channels/CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Messages/IMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\"}", TwilioRestClient.HTTP_STATUS_CODE_OK);

240 twilioRestClient.getObjectMapper();

241 result = new ObjectMapper();

ProcessResource.java (git://github.com/liferay/liferay-portal.git) Java · 793 lines

229 "/o/portal-workflow-metrics/v1.0/processes");

230

231 httpInvoker.userNameAndPassword(

232 _builder._login + ":" + _builder._password);

233

304 "/o/portal-workflow-metrics/v1.0/processes/batch");

305

306 httpInvoker.userNameAndPassword(

307 _builder._login + ":" + _builder._password);

308

383 httpInvoker.path("processId", processId);

384

385 httpInvoker.userNameAndPassword(

386 _builder._login + ":" + _builder._password);

387

ReservationUpdater.java (git://github.com/twilio/twilio-java.git) Java · 1174 lines

71 private HttpMethod conferenceRecordingStatusCallbackMethod;

72 private String region;

73 private String sipAuthUsername;

74 private String sipAuthPassword;

75 private List<String> dequeueStatusCallbackEvent;

822 * The SIP username used for authentication..

823 *

824 * @param sipAuthUsername The SIP username used for authentication

825 * @return this

826 */

827 public ReservationUpdater setSipAuthUsername(final String sipAuthUsername) {

828 this.sipAuthUsername = sipAuthUsername;

WorkflowMetricsSLADefinitionVersionWrapper.java (git://github.com/liferay/liferay-portal.git) Java · 918 lines

75 attributes.put("status", getStatus());

76 attributes.put("statusByUserId", getStatusByUserId());

77 attributes.put("statusByUserName", getStatusByUserName());

78 attributes.put("statusDate", getStatusDate());

79

121 }

122

123 String userName = (String)attributes.get("userName");

124

125 if (userName != null) {

793 */

794 @Override

795 public void setStatusByUserName(String statusByUserName) {

796 model.setStatusByUserName(statusByUserName);

845 public void setUserName(String userName) {

846 model.setUserName(userName);

847 }

848

PhoneCallCreator.java (git://github.com/twilio/twilio-java.git) Java · 583 lines

48 private String sendDigits;

49 private String sipAuthPassword;

50 private String sipAuthUsername;

51 private URI statusCallback;

52 private List<String> statusCallbackEvent;

318 * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).

319 *

320 * @param sipAuthUsername Refers to the Voice API Initiate Call parameter

321 * @return this

322 */

323 public PhoneCallCreator setSipAuthUsername(final String sipAuthUsername) {

324 this.sipAuthUsername = sipAuthUsername;

553 if (sipAuthUsername != null) {

554 request.addPostParam("SipAuthUsername", sipAuthUsername);

555 }

556

AuthorizationServerContractInner.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 462 lines

86 /**

87 * Can be optionally specified when resource owner password grant type is

88 * supported by this authorization server. Default resource owner username.

89 */

90 @JsonProperty(value = "properties.resourceOwnerUsername")

91 private String resourceOwnerUsername;

92

93 /**

312 * Set can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username.

313 *

314 * @param resourceOwnerUsername the resourceOwnerUsername value to set

315 * @return the AuthorizationServerContractInner object itself.

316 */

317 public AuthorizationServerContractInner withResourceOwnerUsername(String resourceOwnerUsername) {

318 this.resourceOwnerUsername = resourceOwnerUsername;

sqlite-sakila-schema.sql (git://github.com/jOOQ/jOOQ.git) SQL · 645 lines

380 store_id INT NOT NULL,

381 active SMALLINT DEFAULT 1 NOT NULL,

382 username VARCHAR(16) NOT NULL,

383 password VARCHAR(40) DEFAULT NULL,

384 last_update TIMESTAMP NOT NULL,

sql-server-sakila-schema.sql (git://github.com/jOOQ/jOOQ.git) SQL · 505 lines

267 store_id INT NOT NULL,

268 active BIT NOT NULL DEFAULT 1,

269 username VARCHAR(16) NOT NULL,

270 password VARCHAR(40) DEFAULT NULL,

271 last_update DATETIME NOT NULL,

oracle-sakila-schema.sql (git://github.com/jOOQ/jOOQ.git) SQL · 762 lines

458 store_id INT NOT NULL,

459 active SMALLINT DEFAULT 1 NOT NULL,

460 username VARCHAR(16) NOT NULL,

461 password VARCHAR(40) DEFAULT NULL,

462 last_update DATE NOT NULL,

AuthorizationServerContract.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 527 lines

321 * Specifies resourceOwnerUsername.

322 * @param resourceOwnerUsername Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username

323 * @return the next definition stage

324 */

325 WithCreate withResourceOwnerUsername(String resourceOwnerUsername);

326 }

327

483 * Specifies resourceOwnerUsername.

484 * @param resourceOwnerUsername Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username

485 * @return the next update stage

486 */

487 Update withResourceOwnerUsername(String resourceOwnerUsername);

488 }

489

Participant.java (git://github.com/twilio/twilio-java.git) Java · 493 lines

135 * @param pathAccountSid The SID of the Account that will create the resource

136 * @param pathConferenceSid The SID of the participant's conference

137 * @param from The phone number, Client identifier, or username portion of SIP

138 * address that made this call.

139 * @param to The phone number, SIP address or Client identifier that received

152 *

153 * @param pathConferenceSid The SID of the participant's conference

154 * @param from The phone number, Client identifier, or username portion of SIP

155 * address that made this call.

156 * @param to The phone number, SIP address or Client identifier that received

SourceLocalServiceWrapper.java (git://github.com/liferay/liferay-portal.git) Java · 473 lines

35 long userId, long groupId,

36 java.util.Map<java.util.Locale, String> nameMap,

37 String driverClassName, String driverUrl, String driverUserName,

38 String driverPassword,

39 com.liferay.portal.kernel.service.ServiceContext serviceContext)

42 return _sourceLocalService.addSource(

43 userId, groupId, nameMap, driverClassName, driverUrl,

44 driverUserName, driverPassword, serviceContext);

45 }

46

432 public com.liferay.portal.reports.engine.console.model.Source updateSource(

433 long sourceId, java.util.Map<java.util.Locale, String> nameMap,

434 String driverClassName, String driverUrl, String driverUserName,

435 String driverPassword,

436 com.liferay.portal.kernel.service.ServiceContext serviceContext)

AuthorizationServerUpdateContract.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 455 lines

87 /**

88 * Can be optionally specified when resource owner password grant type is

89 * supported by this authorization server. Default resource owner username.

90 */

91 @JsonProperty(value = "properties.resourceOwnerUsername")

92 private String resourceOwnerUsername;

93

94 /**

325 * Set can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username.

326 *

327 * @param resourceOwnerUsername the resourceOwnerUsername value to set

328 * @return the AuthorizationServerUpdateContract object itself.

329 */

330 public AuthorizationServerUpdateContract withResourceOwnerUsername(String resourceOwnerUsername) {

331 this.resourceOwnerUsername = resourceOwnerUsername;

example_sql_test.go (git://github.com/mattn/go-oci8.git) Go · 818 lines

26

27 var openString string

28 // [username/[password]@]host[:port][/service_name][?param1=value1&...&paramN=valueN]

29 if len(oci8.TestUsername) > 0 {

30 if len(oci8.TestPassword) > 0 {

31 openString = oci8.TestUsername + "/" + oci8.TestPassword + "@"

32 } else {

33 openString = oci8.TestUsername + "@"

138

139 var openString string

140 // [username/[password]@]host[:port][/service_name][?param1=value1&...&paramN=valueN]

141 if len(oci8.TestUsername) > 0 {

142 if len(oci8.TestPassword) > 0 {

143 openString = oci8.TestUsername + "/" + oci8.TestPassword + "@"

144 } else {

145 openString = oci8.TestUsername + "@"

WikiPageWrapper.java (git://github.com/liferay/liferay-portal.git) Java · 1210 lines

51 attributes.put("companyId", getCompanyId());

52 attributes.put("userId", getUserId());

53 attributes.put("userName", getUserName());

54 attributes.put("createDate", getCreateDate());

55 attributes.put("modifiedDate", getModifiedDate());

68 attributes.put("status", getStatus());

69 attributes.put("statusByUserId", getStatusByUserId());

70 attributes.put("statusByUserName", getStatusByUserName());

71 attributes.put("statusDate", getStatusDate());

72

118 }

119

120 String userName = (String)attributes.get("userName");

121

122 if (userName != null) {

sqlite3_opt_userauth_test.go (git://github.com/mattn/go-sqlite3.git) Go · 643 lines

17 var (

18 conn *SQLiteConn

19 create func(t *testing.T, username, password string) (file string, err error)

20 createWithCrypt func(t *testing.T, username, password, crypt, salt string) (file string, err error)

21 connect func(t *testing.T, f string, username, password string) (file string, db *sql.DB, c *SQLiteConn, err error)

22 connectWithCrypt func(t *testing.T, f string, username, password string, crypt string, salt string) (file string, db *sql.DB, c *SQLiteConn, err error)

23 authEnabled func(db *sql.DB) (exists bool, err error)

24 addUser func(db *sql.DB, username, password string, admin int) (rv int, err error)

25 userExists func(db *sql.DB, username string) (rv int, err error)

26 isAdmin func(db *sql.DB, username string) (rv bool, err error)

27 modifyUser func(db *sql.DB, username, password string, admin int) (rv int, err error)

28 deleteUser func(db *sql.DB, username string) (rv int, err error)

29 )

30

Models.hs (git://github.com/egonSchiele/rdioh.git) Haskell · 740 lines

306 trackCount :: Maybe Int,

307 lastSongPlayTime :: Maybe String,

308 username :: Maybe String,

309 reviewCount :: Maybe Int,

310 collectionUrl :: Maybe String,

317 } deriving (Show)

318

319 data UserExtra = FollowingUrl | IsTrial | ArtistCount | LastSongPlayed | HeavyRotationKey | NetworkHeavyRotationKey | AlbumCount | TrackCount | LastSongPlayTime | Username | ReviewCount | CollectionUrl | PlaylistsUrl | CollectionKey | FollowersUrl | DisplayName | IsUnlimited | IsSubscriber

320

321 instance Show UserExtra where

329 show TrackCount = "trackCount"

330 show LastSongPlayTime = "lastSongPlayTime"

331 show Username = "username"

332 show ReviewCount = "reviewCount"

333 show CollectionUrl = "collectionUrl"

user.cfc (git://github.com/boyzoid/BlogCFC5.git) ColdFusion CFScript · 408 lines

281

282 <cfif getMe.recordCount is 1>

283 <cfquery datasource="#instance.dsn#" username="#instance.username#" password="#instance.password#">

284 delete from tblblogsubscribers

285 where email = <cfqueryparam value="#arguments.email#" cfsqltype="cf_sql_varchar" maxlength="50">

313 <cfargument name="password" type="string" required="true">

314

315 <cfquery datasource="#instance.dsn#" username="#instance.username#" password="#instance.password#">

316 update tblusers

317 set name = <cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.name#" maxlength="50">,

396 <cfreturn false>

397 <cfelse>

398 <cfquery datasource="#instance.dsn#" username="#instance.username#" password="#instance.password#">

399 update tblusers

400 set password = <cfqueryparam value="#arguments.newpassword#" cfsqltype="cf_sql_varchar" maxlength="50">

TestConfigAPI.cfc (git://github.com/nmische/cf-configmanager.git) ColdFusion CFScript · 1279 lines

62 <cfset setCacheProperty("SaveClassFiles",false) />

63

64 <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">

65 <cfhttpparam type="header" name="Content-Type" value="application/json" />

66 <cfhttpparam type="body" value="{ ""runtime"" : { ""cacheProperty"" : [ {""propertyName"" : ""SaveClassFiles"", ""propertyValue"" : true } ] } }" />

316 <cfset var jsonData = SerializeJSON(jsonStruct) />

317

318 <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">

319 <cfhttpparam type="header" name="Content-Type" value="text/json" />

320 <cfhttpparam type="body" value="#jsonData#" />

751 <cfset assertEquals("200 SUCCESS",apiResult1.statusCode) />

752

753 <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult2">

754 <cfhttpparam type="header" name="Content-Type" value="text/json" />

755 <cfhttpparam type="body" value="#jsonData#" />

user_waiting.php (http://creative-portal.googlecode.com/svn/trunk/) PHP · 222 lines ✨ Summary

This PHP code generates a user management page for an online forum. It displays a list of registered users, allowing administrators to view, edit, and delete user accounts. The page also includes search functionality and sorting options by various criteria such as username, name, email, and registration date. The output is rendered using a templating engine, which separates presentation logic from application logic.

This PHP code generates a user management page for an online forum. It displays a list of registered users, allowing administrators to view, edit, and delete user accounts. The page also includes search functionality and sorting options by various criteria such as username, name, email, and registration date. The output is rendered using a templating engine, which separates presentation logic from application logic.

48

49 $sql = "INSERT INTO `" . NV_USERS_GLOBALTABLE . "` (

50 `userid`, `username`, `md5username`, `password`, `email`, `full_name`, `gender`, `photo`, `birthday`,

51 `regdate`, `website`, `location`, `yim`, `telephone`, `fax`, `mobile`, `question`,

52 `answer`, `passlostkey`, `view_mail`, `remember`, `in_groups`, `active`, `checknum`,

54 ) VALUES (

55 NULL,

56 " . $db->dbescape( $row['username'] ) . ",

57 " . $db->dbescape( md5( $row['username'] ) ) . ",

140 $users_list[$row['userid']] = array( //

141 'userid' => ( int )$row['userid'], //

142 'username' => ( string )$row['username'], //

143 'full_name' => ( string )$row['full_name'], //

144 'email' => ( string )$row['email'], //

154 $head_tds['username']['title'] = $lang_module['account'];

155 $head_tds['username']['href'] = NV_BASE_ADMINURL . "index.php?" . NV_NAME_VARIABLE . "=" . $module_name . "&amp;" . NV_OP_VARIABLE . "=user_waiting&amp;sortby=username&amp;sorttype=ASC";

156 $head_tds['full_name']['title'] = $lang_module['name'];

157 $head_tds['full_name']['href'] = NV_BASE_ADMINURL . "index.php?" . NV_NAME_VARIABLE . "=" . $module_name . "&amp;" . NV_OP_VARIABLE . "=user_waiting&amp;sortby=full_name&amp;sorttype=ASC";

LiferayProxyConfig.java (git://github.com/liferay/liferay-portal.git) Java · 72 lines

35 proxyConfigBuilder.password(proxyPassword);

36 proxyConfigBuilder.port(proxyPort);

37 proxyConfigBuilder.username(proxyUsername);

38

39 return proxyConfigBuilder.build();

64 private Integer proxyPort;

65

66 @DisplayName("Username")

67 @Optional

68 @Parameter

69 @Placement(order = 3, tab = PROXY_CONFIG)

70 private String proxyUsername;

71

72 }

User.java (git://github.com/woorea/openstack-java-sdk.git) Java · 134 lines

11 private String id;

12

13 private String username;

14

15 @JsonProperty("OS-KSADM:password")

46

47 /**

48 * @param username the username to set

49 */

50 public void setUsername(String username) {

51 this.username = username;

52 }

53

127 @Override

128 public String toString() {

129 return "User [id=" + id + ", username=" + username + ", password="

130 + password + ", tenantId=" + tenantId + ", name=" + name

131 + ", email=" + email + ", enabled=" + enabled + "]";

bitbucket_demo.go (git://github.com/bradrydzewski/go.auth.git) Go · 101 lines

34 // private webpage, authentication required

35 func Private(w http.ResponseWriter, r *http.Request) {

36 user := r.URL.User.Username()

37 fmt.Fprintf(w, fmt.Sprintf(privatepage, user, user))

38 }

EnigmaAdapters.java (git://github.com/timmolter/XChange.git) Java · 165 lines

34 private EnigmaAdapters() {}

35

36 public static AccountInfo adaptAccountInfo(EnigmaBalance enigmaBalance, String userName) {

37

38 List<Balance> balances =

45 .collect(Collectors.toList());

46

47 return new AccountInfo(userName, Wallet.Builder.from(balances).build());

48 }

49

JmxRemotingManager.java (git://github.com/Chorus-bdd/Chorus.git) Java · 166 lines

98 remotingConfig.getHost(),

99 remotingConfig.getPort(),

100 remotingConfig.getUserName(),

101 remotingConfig.getPassword(),

102 remotingConfig.getConnectionAttempts(),

SamlIdpSpConnectionModel.java (git://github.com/liferay/liferay-portal.git) Java · 393 lines

128 @AutoEscape

129 @Override

130 public String getUserName();

131

132 /**

133 * Sets the user name of this saml idp sp connection.

134 *

135 * @param userName the user name of this saml idp sp connection

136 */

137 @Override

138 public void setUserName(String userName);

139

140 /**

Config.cs (https://SqlMetalInclude.svn.codeplex.com/svn) C# · 426 lines

17 }

18

19 private string _username = string.Empty;

20 private string _password = string.Empty;

21 private bool _windowsAuth = true;

71 new XAttribute("WindowsAuth", _windowsAuth),

72 new XAttribute("SqlAuth", _sqlAuth),

73 new XAttribute("Username", _username),

74 new XAttribute("Password", _password)),

75 new XElement("SqlMetalConfiguration",

117 _windowsAuth = Convert.ToBoolean(sqlConfig.Attribute("WindowsAuth").Value);

118 _sqlAuth = Convert.ToBoolean(sqlConfig.Attribute("SqlAuth").Value);

119 _username = sqlConfig.Attribute("Username").Value;

120 _password = sqlConfig.Attribute("Password").Value;

121 }

vmrunGUIXmlWrapper.cs (https://vmrungui.svn.codeplex.com/svn) C# · 291 lines

213 }

214

215 public void GetCredentials(string name, out string username, out string password)

216 {

217 username = null;

221 {

222 XmlNode crdentialsNode = vmrunGUIXmlDoc.SelectSingleNode(String.Format("vmrun_gui/credentials_cache/credentials[name=\"{0}\"]", name));

223 username = crdentialsNode.SelectSingleNode("username").InnerText;

224 password = new StringEncryption().Decrypt(crdentialsNode.SelectSingleNode("password").InnerText, encryptionKey);

225 }

244 hostNode.InnerXml = "<name /><username /><password />";

245 hostNode.SelectSingleNode("name").InnerText = name;

246 hostNode.SelectSingleNode("username").InnerText = username;

247 hostNode.SelectSingleNode("password").InnerText = new StringEncryption().Encrypt(password, encryptionKey);

248 vmrunGUIXmlDoc.SelectSingleNode("vmrun_gui/credentials_cache").AppendChild(hostNode);

basic_functionality.feature (git://github.com/moodle/moodle.git) Gherkin Specification · 162 lines

7 Background: Course with teacher exists.

8 Given the following "users" exist:

9 | username | firstname | lastname | email |

10 | teacher1 | Teacher | 1 | teacher@asd.com |

11 | student1 | Student | 1 | student@asd.com |

ListUserTagsRequest.java (https://github.com/aws/aws-sdk-java.git) Java · 329 lines

78 */

79

80 public void setUserName(String userName) {

81 this.userName = userName;

124 public ListUserTagsRequest withUserName(String userName) {

125 setUserName(userName);

126 return this;

127 }

298 if (other.getUserName() == null ^ this.getUserName() == null)

299 return false;

300 if (other.getUserName() != null && other.getUserName().equals(this.getUserName()) == false)

301 return false;

302 if (other.getMarker() == null ^ this.getMarker() == null)

316 int hashCode = 1;

317

318 hashCode = prime * hashCode + ((getUserName() == null) ? 0 : getUserName().hashCode());

319 hashCode = prime * hashCode + ((getMarker() == null) ? 0 : getMarker().hashCode());

320 hashCode = prime * hashCode + ((getMaxItems() == null) ? 0 : getMaxItems().hashCode());

VirtualMachineBootDiagnosticsTests.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 285 lines

40 .withoutPrimaryPublicIPAddress()

41 .withPopularLinuxImage(KnownLinuxVirtualMachineImage.UBUNTU_SERVER_16_04_LTS)

42 .withRootUsername("Foo12")

43 .withRootPassword("abc!@#F0orL")

44 .withBootDiagnostics()

66 .withoutPrimaryPublicIPAddress()

67 .withPopularLinuxImage(KnownLinuxVirtualMachineImage.UBUNTU_SERVER_16_04_LTS)

68 .withRootUsername("Foo12")

69 .withRootPassword("abc!@#F0orL")

70 .withBootDiagnostics(creatableStorageAccount)

97 .withoutPrimaryPublicIPAddress()

98 .withPopularLinuxImage(KnownLinuxVirtualMachineImage.UBUNTU_SERVER_16_04_LTS)

99 .withRootUsername("Foo12")

100 .withRootPassword("abc!@#F0orL")

101 .withBootDiagnostics(storageAccount)

CoinmateTradeServiceRaw.java (git://github.com/timmolter/XChange.git) Java · 391 lines

56 CoinmateDigest.createInstance(

57 exchange.getExchangeSpecification().getSecretKey(),

58 exchange.getExchangeSpecification().getUserName(),

59 exchange.getExchangeSpecification().getApiKey());

60 }

66 coinmateAuthenticated.getTransactionHistory(

67 exchange.getExchangeSpecification().getApiKey(),

68 exchange.getExchangeSpecification().getUserName(),

69 signatureCreator,

70 exchange.getNonceFactory(),

92 coinmateAuthenticated.getTradeHistory(

93 exchange.getExchangeSpecification().getApiKey(),

94 exchange.getExchangeSpecification().getUserName(),

95 signatureCreator,

96 exchange.getNonceFactory(),

HTAAUtil.h (http://atf2flightsim.googlecode.com/svn/trunk/) C Header · 252 lines

175

176 This is called if an already entered node has to be deleted, for example

177 if it is not used (the user cancelled entering a username and password),

178 or for some reason has expired.

179 */

RemoteSdkCredentialsHolder.java (git://github.com/JetBrains/intellij-community.git) Java · 246 lines

194 return false;

195 }

196 if (getUserName() != null ? !getUserName().equals(holder.getUserName()) : holder.getUserName() != null) return false;

197

198 if (!myRemoteSdkProperties.equals(holder.myRemoteSdkProperties)) {

207 int result = getHost().hashCode();

208 result = 31 * result + getLiteralPort().hashCode();

209 result = 31 * result + (getUserName() != null ? getUserName().hashCode() : 0);

210 result = 31 * result + (getPassword() != null ? getPassword().hashCode() : 0);

211 result = 31 * result + getAuthType().hashCode();

226 ", getLiteralPort()=" +

227 getLiteralPort() +

228 ", getUserName()='" +

229 getUserName() +

KaleoTaskModel.java (git://github.com/liferay/liferay-portal.git) Java · 309 lines

151 @AutoEscape

152 @Override

153 public String getUserName();

154

155 /**

156 * Sets the user name of this kaleo task.

157 *

158 * @param userName the user name of this kaleo task

159 */

160 @Override

161 public void setUserName(String userName);

162

163 /**

course_controls.feature (git://github.com/moodle/moodle.git) Gherkin Specification · 156 lines

19 Scenario Outline: General activities course controls using topics and weeks formats, and paged mode and not paged mode works as expected

20 Given the following "users" exist:

21 | username | firstname | lastname | email |

22 | teacher1 | Teacher | 1 | teacher1@example.com |

23 And the following "courses" exist:

91 Scenario Outline: General activities course controls using topics and weeks formats, and paged mode and not paged mode works as expected

92 Given the following "users" exist:

93 | username | firstname | lastname | email |

94 | teacher1 | Teacher | 1 | teacher1@example.com |

95 And the following "courses" exist:

UserTest.php (git://github.com/croogo/croogo.git) PHP · 353 lines

75 public function testPasswords() {

76 $this->User->create(array(

77 'username' => 'new_user',

78 'name' => 'New User',

79 'role_id' => 3,

126 public function testDeleteLastUser() {

127 $this->User->create(array(

128 'username' => 'new_user',

129 'name' => 'Admin User',

130 'role_id' => 1,

148 public function testDeleteAdminUser() {

149 $this->User->create(array(

150 'username' => 'admin_user',

151 'name' => 'Admin User',

152 'role_id' => 1,

grade_override_letter.feature (git://github.com/moodle/moodle.git) Gherkin Specification · 205 lines

10 | Course 1 | C1 |

11 And the following "users" exist:

12 | username | firstname | lastname | email | idnumber |

13 | teacher1 | Teacher | 1 | teacher1@example.com | t1 |

14 And the following "course enrolments" exist:

People.cs (https://flickrwp.svn.codeplex.com/svn) C# · 264 lines

29 }

30

31 public void FindByUsername(string apiKey, string username, HelperDelegate helperDelegate)

32 {

33 helperDelegateInstance = helperDelegate;

35 WebClient client = new WebClient();

36 client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(client_DownloadStringCompleted);

37 string URL = string.Format("http://www.flickr.com/services/rest/?method=flickr.people.findByUsername&api_key={0}&format=json&username={1}",

38 apiKey, username);

SamlSpIdpConnectionModel.java (git://github.com/liferay/liferay-portal.git) Java · 435 lines

128 @AutoEscape

129 @Override

130 public String getUserName();

131

132 /**

133 * Sets the user name of this saml sp idp connection.

134 *

135 * @param userName the user name of this saml sp idp connection

136 */

137 @Override

138 public void setUserName(String userName);

139

140 /**

SidekickConfigurationManager.cs (https://bitbucket.org/jeffmccommas/acex.git) C# · 504 lines

241 public string CassandraKeyspace { get; set; }

242

243 [JsonProperty("CassandraNodeUsername")]

244 public string CassandraNodeUsername { get; set; }

memberlist_view.html (http://pbb-png1.googlecode.com/svn/trunk/) HTML · 203 lines

23 <!-- ENDIF -->

24 <tr>

25 <td align="center"><!-- IF USER_COLOR --><b class="gen" style="color: {USER_COLOR}"><!-- ELSE --><b class="gen"><!-- ENDIF -->{USERNAME}</b><!-- IF U_USER_BAN --><span class="genmed"> [ <a href="{U_USER_BAN}">{L_USER_BAN}</a> ]</span><!-- ENDIF --><!-- IF U_USER_ADMIN --><span class="genmed"> [ <a href="{U_USER_ADMIN}">{L_USER_ADMIN}</a> ]</span><!-- ENDIF --></td>

26 </tr>

27 <!-- IF RANK_TITLE -->

mail.php (http://coderstalk.googlecode.com/svn/trunk/) PHP · 377 lines

10 protected $protocol = 'mail';

11 protected $hostname;

12 protected $username;

13 protected $password;

14 protected $port = 25;

15 protected $timeout = 5;

16

17 public function __construct($protocol = 'mail', $hostname = '', $username = '', $password = '', $port = '25', $timeout = '5') {

18 $this->protocol = $protocol;

19 $this->hostname = $hostname;

20 $this->username = $username;

21 $this->password = $password;

22 $this->port = $port;

update.sql (https://code.google.com/p/wiganwarriorscom/) SQL · 285 lines

26 PAYMENT_TYPE enum('User','Advert'),

27 PAYMENT_AMOUNT float,

28 PAYMENT_USERNAME text,

29 PAYMENT_COMMENT text,

30 primary key (FK_OBJECT_ID)

StagedAssetLinkImpl.java (git://github.com/liferay/liferay-portal.git) Java · 443 lines

189

190 @Override

191 public String getUserName() {

192 return _assetLink.getUserName();

344

345 @Override

346 public void setUserName(String userName) {

347 throw new UnsupportedOperationException();

348 }

MercadoBitcoinAdapterTest.java (git://github.com/timmolter/XChange.git) Java · 169 lines

121 AccountInfo accountInfo =

122 MercadoBitcoinAdapters.adaptAccountInfo(mercadoBitcoinAccountInfo, "Nina Tufão & Bit");

123 assertThat(accountInfo.getUsername()).isEqualTo("Nina Tufão & Bit");

124 assertThat(accountInfo.getWallet().getBalances()).hasSize(3);

125 assertThat(accountInfo.getWallet().getBalance(Currency.BRL).getCurrency())

KaleoConditionWrapper.java (git://github.com/liferay/liferay-portal.git) Java · 576 lines

63 attributes.put("companyId", getCompanyId());

64 attributes.put("userId", getUserId());

65 attributes.put("userName", getUserName());

66 attributes.put("createDate", getCreateDate());

67 attributes.put("modifiedDate", getModifiedDate());

101 }

102

103 String userName = (String)attributes.get("userName");

104

105 if (userName != null) {

106 setUserName(userName);

107 }

108

519 */

520 @Override

521 public void setUserName(java.lang.String userName) {

522 _kaleoCondition.setUserName(userName);

Conventions.xml (http://mobicents.googlecode.com/svn/trunk/) XML · 173 lines

80 <blockquote>

81 <para>

82 To connect to a remote machine using ssh, type <command>ssh <replaceable>username</replaceable>@<replaceable>domain.name</replaceable></command> at a shell prompt. If the remote machine is <filename>example.com</filename> and your username on that machine is john, type <command>ssh john@example.com</command>.

83 </para>

84 <para>

90 </blockquote>

91 <para>

92 Note the words in bold italics above &mdash; username, domain.name, file-system, package, version and release. Each word is a placeholder, either for text you enter when issuing a command or for text displayed by the system.

93 </para>

94 <para>

admin_en.php (http://creative-portal.googlecode.com/svn/trunk/) PHP · 167 lines ✨ Summary

This PHP code outputs a large amount of text, likely used for generating a website’s user management interface. It defines various strings and keys that can be used to display information about users, groups, and account settings. The output includes labels, captions, and error messages, suggesting it is part of a larger application or framework for managing online communities or forums.

This PHP code outputs a large amount of text, likely used for generating a website’s user management interface. It defines various strings and keys that can be used to display information about users, groups, and account settings. The output includes labels, captions, and error messages, suggesting it is part of a larger application or framework for managing online communities or forums.

100 $lang_module['edit_avatar_note'] = "Leave blank if you don't want to change avatar m?i";

101 $lang_module['edit_save'] = "Accept";

102 $lang_module['edit_error_username_exist'] = "User name used by another member. Please choose another name";

103 $lang_module['edit_error_photo'] = "File type doesn't allowed";

104 $lang_module['edit_error_email'] = "Incorrect email";

irclib.py (http://xbmc-scripting.googlecode.com/svn/trunk/) Python · 1557 lines ✨ Summary

This code defines a comprehensive dictionary of IRC events, including generated and protocol events, numeric event codes, and error messages. The dictionary maps event names to their corresponding numerical values, providing a standardized way to identify and handle different types of events in an IRC client or server implementation.

380 self.socket = None

381

382 def connect(self, server, port, nickname, password=None, username=None,

383 ircname=None, localaddress="", localport=0):

384 """Connect/reconnect to a server.

394 password -- Password (if any).

395

396 username -- The username.

397

398 ircname -- The IRC name ("realname").

416 self.port = port

417 self.nickname = nickname

418 self.username = username or nickname

419 self.ircname = ircname or nickname

420 self.password = password

Imap.php (http://zoop.googlecode.com/svn/trunk/) PHP · 645 lines ✨ Summary

This PHP class provides a interface to interact with an IMAP mail storage, allowing users to perform various operations such as creating, deleting, renaming, and moving messages, as well as setting flags for individual messages. It also handles folder management, including creating, deleting, and renaming folders. The class uses the IMAP protocol to communicate with the mail server.

224 * create instance with parameters

225 * Supported paramters are

226 * - user username

227 * - host hostname or ip address of IMAP server [optional, default = 'localhost']

228 * - password password for user 'username' [optional, default = '']

getcomment.php (http://creative-portal.googlecode.com/svn/trunk/) PHP · 312 lines ✨ Summary

This PHP code generates a web page for displaying comments on a specific topic. It retrieves data from a database, processes the information, and formats it into an HTML page with links to edit or delete individual comments. The output is a string containing the HTML content of the page, which can be displayed directly in a web browser.

This PHP code generates a web page for displaying comments on a specific topic. It retrieves data from a database, processes the information, and formats it into an HTML page with links to edit or delete individual comments. The output is a string containing the HTML content of the page, which can be displayed directly in a web browser.

45 if ( defined( 'NV_IS_USER' ) )

46 {

47 $uname = ! empty( $user_info['full_name'] ) ? $user_info['full_name'] : $user_info['username'];

48 $uemail = $user_info['email'];

49 $post_id = $user_info['userid'];

285 $in = implode( ",", $in );

286

287 $query = "SELECT `userid` AS admin_id, `username` AS admin_login, `full_name` AS admin_name FROM `" . NV_USERS_GLOBALTABLE . "` WHERE `userid` IN (" . $in . ")";

288 $result = $db->sql_query( $query );

289 while ( list( $admin_id, $admin_login, $admin_name ) = $db->sql_fetchrow( $result ) )

Calendar.xaml.cs (https://htchome.svn.codeplex.com/svn) C# · 205 lines ✨ Summary

This C# code creates a calendar widget for a Windows application, displaying the current date and time, and allowing users to add new events. It also synchronizes with Google Calendar if enabled, retrieving events from the service and updating the local calendar control. The widget’s layout and appearance can be customized through an options menu.

70 {

71 L.Log("Calendar: Start Google calendar synchronization");

72 service = CalendarHelper.GetService("HTC Home 2.0 Calendar Widget", Widget.Sett.username, Widget.Sett.password);

73 L.Log("Calendar: Connected to Google calendar");

74