Home
last modified time | relevance | path

Searched full:email (Results 1 – 25 of 1265) sorted by relevance

12345678910>>...51

/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph/
Dfind_modules.py71 "email.base64MIME": Alias("email.base64mime"),
72 "email.Charset": Alias("email.charset"),
73 "email.Encoders": Alias("email.encoders"),
74 "email.Errors": Alias("email.errors"),
75 "email.Feedparser": Alias("email.feedParser"),
76 "email.Generator": Alias("email.generator"),
77 "email.Header": Alias("email.header"),
78 "email.Iterators": Alias("email.iterators"),
79 "email.Message": Alias("email.message"),
80 "email.Parser": Alias("email.parser"),
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ses/
Dconnection.py38 DefaultRegionEndpoint = 'email.us-east-1.amazonaws.com'
132 # email address for Amazon to blacklist it. After a day or three,
137 elif "Email address is not verified." in body:
141 exc_reason = "Email address is not verified."
183 """Composes an email message based on input data, and then immediately
187 :param source: The sender's email address.
210 :param reply_addresses: The reply-to email address(es) for the
216 :param return_path: The email address to which bounce notifications are
220 will then be forwarded to the email address
224 :param text_body: The text body to send with this email.
[all …]
/external/chromium-trace/catapult/dashboard/dashboard/models/
Dsheriff.py14 # Acceptable suffixes for internal-only sheriff rotation email addresses.
47 """Validates an email address property."""
48 # Note, this doesn't check the domain of the email address;
51 raise ValidationError('Invalid email %s' % val)
57 # Many perf sheriff email addresses are stored at a url. If there is a url
58 # specified here, it will be used as the perf sheriff address. But the email
61 email = ndb.StringProperty(validator=_EmailValidator, indexed=False) variable in Sheriff
83 if (self.internal_only and self.email
84 and not _IsAllowedInternalOnlyEmail(self.email)):
85 raise ValidationError('Invalid internal sheriff email %s' % self.email)
[all …]
Dsheriff_test.py27 # If the given email address is not valid, an assertion error
30 sheriff.Sheriff(email='oops')
33 # Email addresses with + characters are allowed.
34 sheriff.Sheriff(email='some+thing@yahoo.com').put()
35 # If the Sheriff is internal only, the email address domain must be within
36 # the set of allowed email address domains.
37 sheriff.Sheriff(internal_only=True, email='my-alerts@google.com').put()
38 sheriff.Sheriff(internal_only=True, email='alerts@chromium.org').put()
43 entity = sheriff.Sheriff(internal_only=True, email='x@notgoogle.com')
/external/chromium-trace/catapult/experimental/bisect_lib/test_data/
DMOCK_RANGE_RESPONSE_112 "email": "rdevlin.cronin@chromium.org",
17 "email": "commit-bot@chromium.org",
30 "email": "caseq@chromium.org",
35 "email": "commit-bot@chromium.org",
48 "email": "joelo@chromium.org",
53 "email": "commit-bot@chromium.org",
66 "email": "v8-autoroll@chromium.org",
71 "email": "commit-bot@chromium.org",
84 "email": "oshima@chromium.org",
89 "email": "commit-bot@chromium.org",
[all …]
/external/autotest/client/common_lib/
Dmail.py1 import os, email, smtplib
6 Send out a plain old text email. It uses sendmail by default, but
10 from_address: the email address to put in the "From:" field
12 strings to put in the "To:" field of the email
14 strings to put in the "Cc:" field of the email
15 subject: the email subject
16 message_body: the body of the email. there's no special
30 message = email.Message.Message()
/external/libxml2/test/relaxng/
Dtutor3_5_1.xml2 <card name="John Smith" email="js@example.com"/>
3 <card email="js@example.com" name="John Smith"/>
4 <card email="js@example.com"><name>John Smith</name></card>
5 <card name="John Smith"><email>js@example.com</email></card>
6 <card><name>John Smith</name><email>js@example.com</email></card>
Dtutor3_8_1.xml2 <card><name>foo</name><email>bar</email><prefersHTML/></card>
3 <card><name>foo</name><email>bar</email></card>
Dtutor4_1_1.xml2 <card><name>John Smith</name><email>js@example.com"</email></card>
3 <card><name>John Smith2</name><email>js2@example.com"</email></card>
Dtutor1_2_1.xml4 <email>js@example.com</email>
8 <email>fb@example.net</email>
/external/libphonenumber/
Dpom.xml47 <email>jia.shao.peng@gmail.com</email>
57 <email>lararennie@google.com</email>
68 <email>tronikos@gmail.com</email>
71 <name>g1smd.email</name>
72 <email>g1smd.email@gmail.com</email>
76 <email>philip.liard@gmail.com</email>
/external/autotest/site_utils/
Dgmail_lib.py25 from email.mime.text import MIMEText
57 """An email message."""
98 'could not send email.')
104 """Send an email message.
113 logging.debug('Email sent: %s' , message['id'])
116 logging.error('Failed to send email: %s', error)
122 """Send email.
125 @param subject: Subject of the email.
134 logging.error('Failed to send email to %s: Credential file does not'
136 'install it. If you need to be able to send email, '
[all …]
/external/autotest/client/site_tests/telemetry_LoginTest/
Dtelemetry_LoginTest.py26 email = login_status['email']
29 return (is_regular_user, email)
40 (is_regular_user, email) = self._get_login_status(cr)
43 if email != cr.username:
44 raise error.TestFail('user email mismatch %s' % email)
/external/lldb/utils/test/
Dras.py4 Run the test suite and send the result as an email message.
7 http://docs.python.org/library/email-examples.html.
19 from email import encoders
20 from email.message import Message
21 from email.mime.audio import MIMEAudio
22 from email.mime.base import MIMEBase
23 from email.mime.image import MIMEImage
24 from email.mime.multipart import MIMEMultipart
25 from email.mime.text import MIMEText
50 # This will be used as the subject line of our email about this test.
[all …]
/external/chromium-trace/catapult/dashboard/dashboard/
Dedit_sheriffs.py19 url: A URL at which there is a list of email addresses to send mail to.
20 email: An email address to send mail to, possibly a mailing list.
34 'email': sheriff_entity.email or '',
58 sheriff_entity.email = self.request.get('email') or None
Dbad_bisect.py57 email = user.email()
60 if email not in job.bad_result_emails:
61 job.bad_result_emails.add(email)
63 _LogFeedback(try_job_id, email)
72 def _LogFeedback(try_job_id, email): argument
75 message = '%s marked try job %d.' % (email, try_job_id)
Dedit_sheriffs_test.py49 def _AddSheriff(self, name, email=None, url=None, argument
54 id=name, email=email, url=url, internal_only=internal_only,
62 'email': 'foo@chromium.org',
71 self.assertEqual('foo@chromium.org', sheriffs[0].email)
83 'email': 'bar@chromium.org',
92 self.assertEqual('bar@chromium.org', sheriff_entity.email)
191 self._AddSheriff('Foo Sheriff', email='foo@x.org', patterns=['*/*/*/*'])
198 'email': 'foo@x.org',
207 'email': '',
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/scripts/
Doauth2l_test.py75 return ['--credentials_format=' + credentials_format, 'userinfo.email']
98 output = _GetCommandOutput(self, 'header', ['userinfo.email'])
166 'https://www.googleapis.com/auth/userinfo.email',
176 self, 'fetch', ['userinfo.email', 'cloud-platform'])
196 ['userinfo.email'])
209 output = _GetCommandOutput(self, 'fetch', ['userinfo.email'])
250 'userinfo.email']
273 user_info = {'email': 'foo@example.com'}
277 output = _GetCommandOutput(self, 'email', [self.access_token])
278 self.assertEqual(user_info['email'], output)
[all …]
/external/chromium-trace/catapult/dashboard/dashboard/templates/
Dedit_sheriffs.html16 // "url", "email", "patterns", "internal_only", and "summarize".
47 document.getElementById('email').value = sheriff['email'];
68 document.getElementById('email').value = '';
134 <td><label for="email">Notification Email:</label></td>
135 <td><input type="email" name="email" id="email" size=75></td>
142 <td><label for="email">Days before alerting on missing data
159 <td>Summarize Email:</td>
/external/chromium-trace/catapult/third_party/webapp2/tests/
Dextras_appengine_auth_models_test.py16 email = model.StringProperty() variable in User
150 # Create the unique username, auth_id and email.
168 def create_user(username, auth_id, email): argument
172 unique_email = 'User.email:%s' % email
174 # Create the unique username, auth_id and email.
179 user = User(username=username, auth_id=auth_id, email=email)
190 raise UniqueConstraintViolation('Email %s already '
191 'exists' % email)
/external/e2fsprogs/
DSHLIBS4 Email: tytso@mit.edu
11 Email: tytso@mit.edu
18 Email: tytso@mit.edu
25 Email: tytso@mit.edu
32 Email: tytso@mit.edu
/external/google-breakpad/src/testing/scripts/
Dupload.py66 """Prompts the user for their email address and returns it.
68 The last used email address is saved to a file and offered up as a suggestion
70 used email address is used. If the user enters a new address, it is saved
84 email = raw_input(prompt + ": ").strip()
85 if email:
88 last_email_file.write(email)
93 email = last_email
94 return email
134 (email, password) tuple when called. Will be called if authentication
172 def _GetAuthToken(self, email, password): argument
[all …]
/external/google-breakpad/src/testing/gtest/scripts/
Dupload.py66 """Prompts the user for their email address and returns it.
68 The last used email address is saved to a file and offered up as a suggestion
70 used email address is used. If the user enters a new address, it is saved
84 email = raw_input(prompt + ": ").strip()
85 if email:
88 last_email_file.write(email)
93 email = last_email
94 return email
134 (email, password) tuple when called. Will be called if authentication
172 def _GetAuthToken(self, email, password): argument
[all …]
/external/autotest/client/cros/
Dservice_login.js11 gaia.chromeOSLogin.attemptLogin = function(email, password, attemptToken) { argument
14 'email': email, property
31 var email = emailFormElement.value;
35 gaia.chromeOSLogin.attemptLogin(email, passwd, attemptToken);
/external/curl/tests/
Dtestcurl.154 .IP "--email=[email]"
55 Set email address to report as. Displayed in the build logs on the site.
75 \fI--name\fP, \fI--email\fP, \fI--configure\fP and \fI--desc\fP instead.
114 email="--email=iamme@nowhere"
116 testprog="perl ./curl/tests/testcurl.pl $name $email $desc"

12345678910>>...51