Searched refs:username (Results 1 - 10 of 10) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
H A Dregister.py75 self.username = config['username']
108 First we try to read the username/password from $HOME/.pypirc,
110 [distutils] containing username and password entries (both
118 username: fred
129 # see if we can short-cut and get the username/password from the
133 username = self.username
137 username = password = ''
157 # get the username an
[all...]
H A Dupload.py32 self.username = ''
46 self.username = config['username']
134 auth = "Basic " + standard_b64encode(self.username + ":" +
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
H A Dconfig.py17 username:%s
42 def _store_pypirc(self, username, password):
47 f.write(DEFAULT_PYPIRC % (username, password))
81 current['username'] = config.get(server, 'username')
102 return {'username': config.get(server, 'username'),
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_urlparse.py53 self.assertEqual(result3.username, result.username)
77 self.assertEqual(result3.username, result.username)
392 self.assertEqual(p.username, None)
407 self.assertEqual(p.username, "User")
424 self.assertEqual(p.username, "User@example.com")
443 # should allow the username, hostname, and port to be filled
450 self.assertEqual(p.username, None)
458 self.assertEqual(p.username, Non
[all...]
H A Dtest_imaplib.py184 username = 'anonymous' variable in class:RemoteIMAPTest
201 rs = self.server.login(self.username, self.password)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
H A Dhandlers.py832 authentication credentials, supply a (username, password) tuple
846 self.username, self.password = credentials
848 self.username = None
884 if self.username:
889 smtp.login(self.username, self.password)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A Durlparse.py77 def username(self): member in class:ResultMixin
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Durlparse.py71 def username(self): member in class:ResultMixin
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
H A Dedk2module.c2425 "initgroups(username, gid) -> None\n\n\
2427 the groups of which the specified username is a member, plus the specified\n\
2433 char *username; local
2436 if (!PyArg_ParseTuple(args, "sl:initgroups", &username, &gid))
2439 if (initgroups(username, (gid_t) gid) == -1)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dposixmodule.c3967 "initgroups(username, gid) -> None\n\n\
3969 the groups of which the specified username is a member, plus the specified\n\
3975 char *username; local
3978 if (!PyArg_ParseTuple(args, "sl:initgroups", &username, &gid))
3981 if (initgroups(username, (gid_t) gid) == -1)

Completed in 100 milliseconds