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();
31 if (!ValidateUsername(employee.Username))
32 {
33 stringBuilder.AppendFormat(@"Tên đăng nhập: {0} \n", InventoryConstants.Messages.InvalidUsername);
437 }
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 ]);
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();
96 $this->assertEquals(1, $this->table->find()->where(['username' => 'testRegistration'])->count());
97 }
AuthUser.java (git://github.com/hudec/sql-processor.git) Java · 478 lines
30 @JsonIgnore
31 public final static String ORDER_BY_USERNAME = "USERNAME";
33 public AuthUser() {
36 public AuthUser(final String username, final String name) {
37 super();
38 setUsername(username);
39 setName(name);
40 }
62 }
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 }
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
JournalFolderModel.java (git://github.com/liferay/liferay-portal.git) Java · 596 lines
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 }
220 if (statusByUserName == null) {
221 wikiPageImpl.setStatusByUserName(StringPool.BLANK);
222 }
223 else {
224 wikiPageImpl.setStatusByUserName(statusByUserName);
225 }
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 }
95 String userName = (String)attributes.get("userName");
97 if (userName != null) {
98 setUserName(userName);
99 }
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
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; }
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 }
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<>();
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<>();
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");
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);
212 httpInvoker.userNameAndPassword(
213 _builder._login + ":" + _builder._password);
293 httpInvoker.path("processId", processId);
295 httpInvoker.userNameAndPassword(
296 _builder._login + ":" + _builder._password);
372 httpInvoker.path("processId", processId);
374 httpInvoker.userNameAndPassword(
375 _builder._login + ":" + _builder._password);
UserProfile.aspx (http://ataman.googlecode.com/svn/trunk/) ASP.NET · 112 lines
modgrade_validation.feature (git://github.com/moodle/moodle.git) Gherkin Specification · 209 lines
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());
172 }
174 public void setUserName(String userName) {
175 _userName = userName;
380 }
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);
135 if (userName == null) {
136 accountImpl.setUserName(StringPool.BLANK);
137 }
138 else {
139 accountImpl.setUserName(userName);
140 }
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
grade_calculated_grade_items.feature (git://github.com/moodle/moodle.git) Gherkin Specification · 163 lines
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 }
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
grade_calculated_weights.feature (git://github.com/moodle/moodle.git) Gherkin Specification · 250 lines
ReactiveFindOperationExtensionsTests.kt (git://github.com/SpringSource/spring-data-mongodb.git) Kotlin · 327 lines
97 every { operation.query(KotlinUser::class.java) } returns reactiveFind
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`() {
109 findDistinct.distinct(KotlinUser::username)
110 verify { findDistinct.distinct("username") }
324 }
326 data class KotlinUser(val username: String)
327 }
SubscriptionModel.java (git://github.com/liferay/liferay-portal.git) Java · 286 lines
InventoryService.cs (https://ims.svn.codeplex.com/svn) C# · 532 lines
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
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
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()));
230 $index = new Index('username_unique_idx');
231 $index->setTable($table);
246 $table->setDatabase(new Database('foo', new DefaultPlatform()));
248 $index = new Index('username_unique_idx');
249 $index->setTable($table);
264 $table->setDatabase(new Database('foo', new DefaultPlatform()));
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 }
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();
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 }
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);
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;
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;
106 private String userName;
108 private String workExperience;
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;
73 private String userName;
75 private Tracking tracking;
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;
109 /*
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 }
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");
231 httpInvoker.userNameAndPassword(
232 _builder._login + ":" + _builder._password);
304 "/o/portal-workflow-metrics/v1.0/processes/batch");
306 httpInvoker.userNameAndPassword(
307 _builder._login + ":" + _builder._password);
383 httpInvoker.path("processId", processId);
385 httpInvoker.userNameAndPassword(
386 _builder._login + ":" + _builder._password);
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());
121 }
123 String userName = (String)attributes.get("userName");
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 }
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 }
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;
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
sql-server-sakila-schema.sql (git://github.com/jOOQ/jOOQ.git) SQL · 505 lines
oracle-sakila-schema.sql (git://github.com/jOOQ/jOOQ.git) SQL · 762 lines
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 }
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 }
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 }
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;
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
27 var openString string
28 // [username/[password]@]host[:port][/service_name][?param1=value1&...¶mN=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 + "@"
139 var openString string
140 // [username/[password]@]host[:port][/service_name][?param1=value1&...¶mN=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());
118 }
120 String userName = (String)attributes.get("userName");
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 )
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)
319 data UserExtra = FollowingUrl | IsTrial | ArtistCount | LastSongPlayed | HeavyRotationKey | NetworkHeavyRotationKey | AlbumCount | TrackCount | LastSongPlayTime | Username | ReviewCount | CollectionUrl | PlaylistsUrl | CollectionKey | FollowersUrl | DisplayName | IsUnlimited | IsSubscriber
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
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">
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) />
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) />
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) />
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.
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.
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 . "&" . NV_OP_VARIABLE . "=user_waiting&sortby=username&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 . "&" . NV_OP_VARIABLE . "=user_waiting&sortby=full_name&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);
39 return proxyConfigBuilder.build();
64 private Integer proxyPort;
66 @DisplayName("Username")
67 @Optional
68 @Parameter
69 @Placement(order = 3, tab = PROXY_CONFIG)
70 private String proxyUsername;
72 }
User.java (git://github.com/woorea/openstack-java-sdk.git) Java · 134 lines
11 private String id;
13 private String username;
15 @JsonProperty("OS-KSADM:password")
47 /**
48 * @param username the username to set
49 */
50 public void setUsername(String username) {
51 this.username = username;
52 }
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
EnigmaAdapters.java (git://github.com/timmolter/XChange.git) Java · 165 lines
JmxRemotingManager.java (git://github.com/Chorus-bdd/Chorus.git) Java · 166 lines
SamlIdpSpConnectionModel.java (git://github.com/liferay/liferay-portal.git) Java · 393 lines
Config.cs (https://SqlMetalInclude.svn.codeplex.com/svn) C# · 426 lines
17 }
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 }
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
ListUserTagsRequest.java (https://github.com/aws/aws-sdk-java.git) Java · 329 lines
78 */
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;
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
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;
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
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
People.cs (https://flickrwp.svn.codeplex.com/svn) C# · 264 lines
29 }
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
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;
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
StagedAssetLinkImpl.java (git://github.com/liferay/liferay-portal.git) Java · 443 lines
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 }
103 String userName = (String)attributes.get("userName");
105 if (userName != null) {
106 setUserName(userName);
107 }
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 — 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.
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.
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
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).
396 username -- The username.
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.
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.
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.
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 );
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.
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.