/kernel/linux/linux-6.6/scripts/package/ |
H A D | mkdebian | 128 email=${DEBEMAIL-$EMAIL} 130 # use email string directly if it contains <email> 131 if echo "${email}" | grep -q '<.*>'; then 132 maintainer=${email} 137 if [ -z "${email}" ]; then 139 email="${user}@${buildhost}" 141 maintainer="${name} <${email}>"
|
/third_party/typescript/tests/baselines/reference/ |
H A D | strictOptionalProperties1.js | 185 email?: string | number | undefined 189 email?: string | number 194 u1.email = e // error, but only because boolean isn't in email's type 195 u2.email = e // error, and suggest adding undefined 198 email: undefined 366 u1.email = e; // error, but only because boolean isn't in email's type
367 u2.email = e; // error, and suggest adding undefined
370 email [all...] |
/third_party/python/Lib/importlib/metadata/ |
H A D | _adapters.py | 3 import email.message namespace 8 class Message(email.message.Message): 30 def __new__(cls, orig: email.message.Message):
|
/third_party/curl/tests/ |
H A D | testcurl.pl | 47 # --email=[email] Set email address to report as 75 use vars qw($name $email $desc $confopts $runtestopts $setupfile $mktarball 109 elsif ($ARGV[0] =~ /--email=/) { 110 $email = (split(/=/, shift @ARGV, 2))[1]; 258 if($name && $email && $desc) { 284 if (!$email) { 285 print "please enter your contact email address\n"; 286 $email [all...] |
/third_party/python/Lib/email/ |
H A D | contentmanager.py | 2 import email.charset namespace 3 import email.message namespace 4 import email.errors namespace 5 from email import quoprimime 109 except email.errors.HeaderDefect as exc: 190 email.charset.ALIASES.get(charset, charset), 227 raw_data_manager.add_set_handler(email.message.Message, set_message_content)
|
H A D | header.py | 3 # Contact: email-sig@python.org 16 import email.quoprimime namespace 17 import email.base64mime namespace 19 from email.errors import HeaderParseError 20 from email import charset as _charset 58 _max_append = email.quoprimime._max_append 74 An email.errors.HeaderParseError may be raised when certain decoding error 121 word = email.quoprimime.header_decode(encoded_string) 128 word = email.base64mime.decode(encoded_string) 321 an email heade [all...] |
H A D | utils.py | 3 # Contact: email-sig@python.org 33 from email._parseaddr import quote 34 from email._parseaddr import AddressList as _AddressList 35 from email._parseaddr import mktime_tz 37 from email._parseaddr import parsedate, parsedate_tz, _parsedate_tz 40 from email.charset import Charset 210 Parse addr into its constituent realname and email address parts. 212 Return a tuple of realname and email address, unless the parse fails, in
|
/third_party/node/deps/npm/node_modules/normalize-package-data/lib/ |
H A D | fixer.js | 271 data.bugs = { email: data.bugs } 290 if (oldBugs.email) { 291 if (typeof (oldBugs.email) === 'string' && isEmail(oldBugs.email)) { 292 data.bugs.email = oldBugs.email 298 if (!data.bugs.email && !data.bugs.url) { 393 var e = person.email || person.mail 410 obj.email = matchedEmail[1]
|
/third_party/libwebsockets/minimal-examples/abstract/protocols/smtp-client/ |
H A D | main.c | 24 done_cb(struct lws_smtp_email *email, void *buf, size_t len) in done_cb() argument 26 /* you could examine email->data here */ in done_cb() 34 /* destroy any allocations in email */ in done_cb() 36 free((char *)email->payload); in done_cb() 51 lws_smtp_email_t *email; in main() local 65 lwsl_err("-r <recipient email> is required\n"); in main() 99 /* attach an email to it */ in main() 104 "Subject: Test email for lws smtp-client\n" in main() 111 lwsl_err("%s: failed to add email\n", __func__); in main()
|
/third_party/protobuf/csharp/src/AddressBook/ |
H A D | AddPerson.cs | 53 output.Write("Enter email address (blank for none): ");
in PromptForAddress() 54 string email = input.ReadLine();
in PromptForAddress() 55 if (email.Length > 0)
in PromptForAddress() 57 person.Email = email;
in PromptForAddress()
|
/third_party/python/Lib/test/test_email/ |
H A D | test_asian_codecs.py | 2 # Contact: email-sig@python.org 3 # email package unit tests for (optional) Asian codecs 8 from email.charset import Charset 9 from email.header import Header, decode_header 10 from email.message import Message
|
H A D | test_inversion.py | 9 from email import policy, message_from_bytes 10 from email.message import EmailMessage 11 from email.generator import BytesGenerator
|
H A D | test_generator.py | 4 from email import message_from_string, message_from_bytes 5 from email.message import EmailMessage 6 from email.generator import Generator, BytesGenerator 7 from email.headerregistry import Address 8 from email import policy
|
/third_party/python/Lib/email/mime/ |
H A D | nonmultipart.py | 3 # Contact: email-sig@python.org 9 from email import errors 10 from email.mime.base import MIMEBase
|
H A D | text.py | 3 # Contact: email-sig@python.org 9 from email.charset import Charset 10 from email.mime.nonmultipart import MIMENonMultipart
|
H A D | message.py | 3 # Contact: email-sig@python.org 9 from email import message 10 from email.mime.nonmultipart import MIMENonMultipart
|
H A D | application.py | 3 # Contact: email-sig@python.org 9 from email import encoders 10 from email.mime.nonmultipart import MIMENonMultipart
|
/third_party/python/Doc/includes/ |
H A D | email-headers.py | 1 # Import the email modules we'll need 2 from email.parser import BytesParser, Parser 3 from email.policy import default
|
/third_party/node/deps/npm/test/lib/commands/ |
H A D | owner.js | 12 { email: 'test-user-a@npmjs.org', name: 'test-user-a' }, 13 { email: 'test-user-b@npmjs.org', name: 'test-user-b' }, 79 t.match(joinedOutput(), maintainers.map(m => `${m.name} <${m.email}>`).join('\n')) 143 t.match(joinedOutput(), maintainers.map(m => `${m.name} <${m.email}>`).join('\n')) 183 { name: username, email: '' }, 216 { name: username, email: '' }, 303 maintainers: [{ name: username, email: '' }], 491 t.match(joinedOutput(), maintainers.map(m => `${m.name} <${m.email}>`).join('\n')) 503 t.match(joinedOutput(), maintainers.map(m => `${m.name} <${m.email}>`).join('\n')) 513 t.match(joinedOutput(), maintainers.map(m => `${m.name} <${m.email}>`) [all...] |
/third_party/protobuf/examples/ |
H A D | list_people.py | 15 if person.email != "": 16 print(" E-mail address:", person.email)
|
H A D | AddPerson.java | 25 stdout.print("Enter email address (blank for none): "); in PromptForAddress() 26 String email = stdin.readLine(); in PromptForAddress() 27 if (email.length() > 0) { in PromptForAddress() 28 person.setEmail(email); in PromptForAddress()
|
/third_party/popt/tests/ |
H A D | test2.c | 40 static char *email = NULL; variable 73 { "email", 'e', POPT_ARG_STRING, &email, 0, in main() 74 "user's email address", "email" }, in main() 145 country, email, dayphone, fax); in main()
|
/third_party/node/deps/npm/lib/commands/ |
H A D | owner.js | 119 this.npm.output(maintainers.map(m => `${m.name} <${m.email}>`).join('\n')) 162 u = { name: u.name, email: u.email } 177 `Already a package owner: ${existing.name} <${existing.email}>`
|
/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | x509_vpm.c | 105 OPENSSL_free(param->email); in X509_VERIFY_PARAM_free() 208 if (test_x509_verify_param_copy(email, NULL)) { in X509_VERIFY_PARAM_inherit() 209 if (!X509_VERIFY_PARAM_set1_email(dest, src->email, src->emaillen)) in X509_VERIFY_PARAM_inherit() 434 return param->email; in X509_VERIFY_PARAM_get0_email() 438 const char *email, size_t emaillen) in X509_VERIFY_PARAM_set1_email() 440 return int_x509_param_set1(¶m->email, ¶m->emaillen, in X509_VERIFY_PARAM_set1_email() 441 email, emaillen); in X509_VERIFY_PARAM_set1_email() 437 X509_VERIFY_PARAM_set1_email(X509_VERIFY_PARAM *param, const char *email, size_t emaillen) X509_VERIFY_PARAM_set1_email() argument
|
/third_party/openssl/crypto/x509/ |
H A D | x509_vpm.c | 105 OPENSSL_free(param->email); in X509_VERIFY_PARAM_free() 208 if (test_x509_verify_param_copy(email, NULL)) { in X509_VERIFY_PARAM_inherit() 209 if (!X509_VERIFY_PARAM_set1_email(dest, src->email, src->emaillen)) in X509_VERIFY_PARAM_inherit() 431 return param->email; in X509_VERIFY_PARAM_get0_email() 435 const char *email, size_t emaillen) in X509_VERIFY_PARAM_set1_email() 437 return int_x509_param_set1(¶m->email, ¶m->emaillen, in X509_VERIFY_PARAM_set1_email() 438 email, emaillen); in X509_VERIFY_PARAM_set1_email() 434 X509_VERIFY_PARAM_set1_email(X509_VERIFY_PARAM *param, const char *email, size_t emaillen) X509_VERIFY_PARAM_set1_email() argument
|