Home
last modified time | relevance | path

Searched full:spam (Results 1 – 25 of 625) sorted by relevance

12345678910>>...25

/external/python/cpython3/Lib/test/
Dtest_dynamicclassattribute.py26 def spam(self): member in BaseClass
30 @spam.setter
31 def spam(self, value): member in BaseClass
34 @spam.deleter
35 def spam(self): member in BaseClass
40 spam = BaseClass.__dict__['spam'] variable in SubClass
42 @spam.getter
43 def spam(self): member in SubClass
47 @spam.setter
48 def spam(self, value): member in SubClass
[all …]
Dtest_property.py25 def spam(self): member in BaseClass
29 @spam.setter
30 def spam(self, value): member in BaseClass
33 @spam.deleter
34 def spam(self): member in BaseClass
39 @BaseClass.spam.getter
40 def spam(self): member in SubClass
44 @spam.setter
45 def spam(self, value): member in SubClass
48 @spam.deleter
[all …]
Dtest_symtable.py26 def spam(a, b, *var, **kw):
186 spam = find_block(top, "spam") variable in SymtableTest
187 internal = find_block(spam, "internal")
188 other_internal = find_block(spam, "other_internal")
204 self.assertEqual(self.spam.get_type(), "function")
221 self.assertGreater(self.spam.get_id(), 0)
232 self.assertTrue(self.spam.is_optimized())
237 self.assertFalse(self.spam.is_nested())
247 self.assertEqual(self.spam.get_lineno(), 14)
250 func = self.spam
[all …]
Dtest_frozen.py31 with import_helper.CleanImport('__phello__', '__phello__.spam'):
35 import __phello__.spam as spam namespace
36 self.assertIs(spam, __phello__.spam)
39 self.assertIs(spam.__spec__.loader,
43 with import_helper.CleanImport('__phello__', '__phello__.spam'):
47 import __phello__.spam as spam namespace
48 self.assertIs(spam, __phello__.spam)
51 self.assertIsNot(spam.__spec__.loader,
Dtest__interpreters.py103 b'spam',
104 'spam',
110 (1, ('spam', 'eggs')),
139 SubBytes(b'spam'),
169 b'spam',
618 expected = 'spam spam spam spam spam'
659 'spam',
660 b'spam',
672 expected = 'spam spam spam spam spam'
694 expected = 'spam spam spam spam spam'
[all …]
Dtest_yield_from.py88 yield "g2 spam"
89 yield "g2 more spam"
97 "Yielded g2 spam",
98 "Yielded g2 more spam",
120 yield "g2 spam"
122 yield "g2 more spam"
136 "Yielded g2 spam",
156 x = yield "g2 spam"
158 x = yield "g2 more spam"
175 "Yielded g2 spam",
[all …]
Dtest_pkg.py106 ("t2 sub subsub __init__.py", "spam = 1"),
127 from t2.sub.subsub import spam
131 for name in ['spam', 'sub', 'subsub', 't2']:
153 ("t3 sub subsub __init__.py", "spam = 1"),
173 ("t4 sub subsub __init__.py", "spam = 1"),
179 self.assertEqual(spam, 1)
187 ("t5 string.py", "spam = 1"),
189 "from . import string; assert string.spam == 1"),
210 '__name__', '__package__', '__spec__', 'spam'])
216 "__all__ = ['spam', 'ham', 'eggs']"),
[all …]
Dtest_genericpath.py41 commonprefix(["/home/swenson/spam", "/home/swen/spam"]),
45 commonprefix(["/home/swen/spam", "/home/swen/eggs"]),
49 commonprefix(["/home/swen/spam", "/home/swen/spam"]),
50 "/home/swen/spam"
53 commonprefix(["home:swenson:spam", "home:swen:spam"]),
57 commonprefix([":home:swen:spam", ":home:swen:eggs"]),
61 commonprefix([":home:swen:spam", ":home:swen:spam"]),
62 ":home:swen:spam"
66 commonprefix([b"/home/swenson/spam", b"/home/swen/spam"]),
70 commonprefix([b"/home/swen/spam", b"/home/swen/eggs"]),
[all …]
Dtest_generated_cases.py125 spam();
133 spam();
142 spam();
152 spam();
162 spam();
171 spam();
182 spam();
193 spam();
203 spam();
216 spam();
[all …]
Dtest__interpchannels.py216 _channels.send(cid, b'spam', blocking=False)
348 self.assertFalse(cid1 == 'spam')
588 'spam',
589 b'spam',
611 _channels.send(cid, b'spam', blocking=False)
615 self.assertEqual(obj, b'spam')
630 _channels.send(chan.id, b'spam', blocking=False)
635 self.assertEqual(obj, b'spam')
643 orig = b'spam'
655 orig = b'spam'
[all …]
Dtest_named_expressions.py38 code = """def spam(a = b := 42): pass"""
44 code = """def spam(a: b := 42 = 5): pass"""
50 code = """spam(a=b := 'c')"""
56 code = """spam(x = y := f(x))"""
62 code = """spam(a=1, b := 2)"""
69 code = """spam(a=1, (b := 2))"""
76 code = """spam(a=1, (b := 2))"""
419 if spam := "eggs":
420 self.assertEqual(spam, "eggs")
424 if True and (spam := True):
[all …]
Dtest_file.py256 b"spam, spam and eggs\n",
257 b"eggs, spam, ham and spam\n",
258 b"saussages, spam, spam and eggs\n",
259 b"spam, ham, spam and eggs\n",
260 b"spam, spam, spam, spam, spam, ham, spam\n",
Dtest_argparse.py633 Sig('-y', nargs='?', default='spam'),
638 ('', NS(w=None, x=None, y='spam', z=84)),
639 ('-w', NS(w=None, x=None, y='spam', z=84)),
640 ('-w 2', NS(w='2', x=None, y='spam', z=84)),
641 ('-x', NS(w=None, x=42, y='spam', z=84)),
642 ('-x 2', NS(w=None, x='2', y='spam', z=84)),
645 ('-z', NS(w=None, x=None, y='spam', z=42)),
646 ('-z 2', NS(w=None, x=None, y='spam', z=2)),
655 Sig('-y', nargs='*', default='spam'),
659 ('', NS(x=None, y='spam')),
[all …]
/external/python/cpython3/Lib/test/typinganndata/
Dann_module695.py21 Spam = str variable
24 class C[Eggs, **Spam]:
26 y: Spam
34 def generic_function_2[Eggs, **Spam](x: Eggs, y: Spam): pass
45 def generic_method_2[Eggs, **Spam](self, x: Eggs, y: Spam): pass
53 Spam = memoryview
56 class E[Eggs, **Spam]:
58 y: Spam
60 def generic_method[Eggs, **Spam](self, x: Eggs, y: Spam): pass
63 def generic_function[Eggs, **Spam](x: Eggs, y: Spam): pass
/external/python/cpython3/Lib/test/test_inspect/
Dinspect_stringized_annotations_pep695.py21 Spam = str variable
24 class C[Eggs, **Spam]:
26 y: Spam
34 def generic_function_2[Eggs, **Spam](x: Eggs, y: Spam): pass
45 def generic_method_2[Eggs, **Spam](self, x: Eggs, y: Spam): pass
60 Spam = memoryview
63 class F[Eggs, **Spam]:
65 y: Spam
67 def generic_method[Eggs, **Spam](self, x: Eggs, y: Spam): pass
70 def generic_function[Eggs, **Spam](x: Eggs, y: Spam): pass
/external/python/cpython3/Lib/test/test_json/
Dtest_fail.py113 ('["spam', 'Unterminated string starting at', 1),
114 ('["spam"', "Expecting ',' delimiter", 7),
115 ('["spam",', 'Expecting value', 8),
118 ('{"spam', 'Unterminated string starting at', 1),
119 ('{"spam"', "Expecting ':' delimiter", 7),
120 ('{"spam":', 'Expecting value', 8),
121 ('{"spam":42', "Expecting ',' delimiter", 10),
122 ('{"spam":42,', 'Expecting property name enclosed in double quotes', 11),
126 ('"spam', 'Unterminated string starting at', 0),
143 ('{"spam":[}', 'Expecting value', 9),
[all …]
/external/python/cpython3/Lib/test/test_ctypes/
Dtest_objects.py48 >>> x.array[0] = b'spam spam spam'
50 {'0:2': b'spam spam spam'}
52 {'0:2': b'spam spam spam'}
/external/python/cpython3/Lib/test/test_interpreters/
Dtest_api.py659 values = {'spam': 42, 'eggs': 'ham'}
663 print(spam, eggs)
668 values = {'spam': 42, 'eggs': 'ham'}
673 print(spam, eggs)
678 values = {'spam': 42, 'eggs': 'ham'}
682 print(spam, eggs)
687 values = {'spam': 42, 'eggs': 'ham'}
691 print(spam, eggs, foo)
699 interp.prepare_main(spam={'spam': 'eggs', 'foo': 'bar'})
705 interp.exec('print(spam)')
[all …]
/external/python/cpython3/Doc/extending/
Dwindows.rst94 In Windows, using an import library is sort of like using ``import spam``; it
95 gives you access to spam's names, but does not create a separate copy. On Unix,
96 linking with a library is more like ``from spam import *``; it does create a
112 To build two DLLs, spam and ni (which uses C functions found in spam), you could
115 cl /LD /I/python/include spam.c ../libs/pythonXY.lib
116 cl /LD /I/python/include ni.c spam.lib ../libs/pythonXY.lib
118 The first command created three files: :file:`spam.obj`, :file:`spam.dll` and
119 :file:`spam.lib`. :file:`Spam.dll` does not contain any Python functions (such
124 which knows how to find the necessary functions from spam, and also from the
/external/python/google-api-python-client/googleapiclient/discovery_cache/documents/
Dgmailpostmastertools.v1.json15 …Tful API that provides programmatic access to email traffic metrics (like spam reports, delivery e…
312 "The traffic is suspected to be spam, by Gmail, for various reasons.",
368 …"description": "The ratio of user marked spam messages with the identifier vs the total number of …
395 …d track record of a very low spam rate, and complies with Gmail's sender guidelines. Mail will rar…
396 …me of spam intermittently. Most of the email from this entity will have a fair deliverability rate…
397 …"Known to send a considerable volume of spam regularly, and mail from this sender will likely be m…
398 …n enormously high volume of spam. Mail coming from this entity will almost always be rejected at S…
480 …d track record of a very low spam rate, and complies with Gmail's sender guidelines. Mail will rar…
481 …me of spam intermittently. Most of the email from this entity will have a fair deliverability rate…
482 …"Known to send a considerable volume of spam regularly, and mail from this sender will likely be m…
[all …]
Dgmailpostmastertools.v1beta1.json15 …Tful API that provides programmatic access to email traffic metrics (like spam reports, delivery e…
312 "The traffic is suspected to be spam, by Gmail, for various reasons.",
368 …"description": "The ratio of user marked spam messages with the identifier vs the total number of …
400 …d track record of a very low spam rate, and complies with Gmail's sender guidelines. Mail will rar…
401 …me of spam intermittently. Most of the email from this entity will have a fair deliverability rate…
402 …"Known to send a considerable volume of spam regularly, and mail from this sender will likely be m…
403 …n enormously high volume of spam. Mail coming from this entity will almost always be rejected at S…
485 …d track record of a very low spam rate, and complies with Gmail's sender guidelines. Mail will rar…
486 …me of spam intermittently. Most of the email from this entity will have a fair deliverability rate…
487 …"Known to send a considerable volume of spam regularly, and mail from this sender will likely be m…
[all …]
/external/libwebsockets/minimal-examples/ws-client/minimal-ws-client-spam/
DCMakeLists.txt1 project(lws-minimal-ws-client-spam C)
9 set(SAMP lws-minimal-ws-client-spam)
10 set(SRCS minimal-ws-client-spam.c)
72 …add_test(NAME ws-client-spam COMMAND lws-minimal-ws-client-spam --server localhost --port ${PORT_W…
73 set_tests_properties(ws-client-spam PROPERTIES
74 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/minimal-examples/ws-client/minimal-ws-client-spam
/external/python/cpython3/Lib/test/test_free_threading/
Dtest_slots.py22 class Spam: class
30 spam = Spam(0)
35 spam.eggs += 1
39 eggs = spam.eggs
/external/python/cpython3/Lib/tkinter/
Dmessagebox.py139 print("info", showinfo("Spam", "Egg Information"))
140 print("warning", showwarning("Spam", "Egg Warning"))
141 print("error", showerror("Spam", "Egg Alert"))
142 print("question", askquestion("Spam", "Question?"))
143 print("proceed", askokcancel("Spam", "Proceed?"))
144 print("yes/no", askyesno("Spam", "Got it?"))
145 print("yes/no/cancel", askyesnocancel("Spam", "Want it?"))
146 print("try again", askretrycancel("Spam", "Try again?"))
/external/coreboot/Documentation/infrastructure/
Dadmin.md5 Our [mailing lists] experience the same barrage of spam mails than any
6 other email address. We do have a spam filter in front of it, and
7 since the lists require registration, spam ends up in the moderation
8 queue. But not only spam ends up there, sometimes users send inquiries
35 rejected or dropped. Spam should be dropped, that's clear. Emails with
46 If you notice recurring spam sources (e.g. marketers) you can put them

12345678910>>...25