Home
last modified time | relevance | path

Searched refs:bounces (Results 1 – 25 of 1707) sorted by relevance

12345678910>>...69

/dports/graphics/swftools/swftools-0.9.2/src/
H A Dswfc-interpolation.c166 float period = 1 / (bounces + 0.25); in elasticIn()
178 return elasticIn(2 * fraction, start, delta / 2, amplitude, bounces, damping); in elasticInOut()
213 w0 = 1 / (bounces + 0.5); in bounceIn()
216 float gN = pow(growth, bounces); in bounceIn()
222 for (i = 0; i <= bounces; i++) in bounceIn()
228 float top = delta / pow(2, damping * ((bounces - i))); in bounceIn()
244 return bounceIn(1 - fraction, start + delta, -delta, bounces, growth, damping); in bounceOut()
253 return bounceIn(2 * fraction, start, delta / 2, bounces, growth, damping); in bounceInOut()
266 w0 = 1 / (bounces + 0.25); /* in general (bounces + 1 / (2 * f)) */ in fastBounceIn()
269 float gN = pow(growth, bounces); in fastBounceIn()
[all …]
H A Dswfc-interpolation.h28 int bounces; member
98 float elasticIn(float fraction, float start, float delta, float amplitude, int bounces, float dampi…
99 float elasticOut(float fraction, float start, float delta, float amplitude, int bounces, float damp…
100 float elasticInOut(float fraction, float start, float delta, float amplitude, int bounces, float da…
106 float bounceIn(float fraction, float start, float delta, int bounces, float growth, float damping);
107 float bounceOut(float fraction, float start, float delta, int bounces, float growth, float damping);
108 float bounceInOut(float fraction, float start, float delta, int bounces, float growth, float dampin…
110 float fastBounceIn(float fraction, float start, float delta, int bounces, float growth, float dampi…
111 float fastBounceOut(float fraction, float start, float delta, int bounces, float growth, float damp…
112 float fastBounceInOut(float fraction, float start, float delta, int bounces, float growth, float da…
/dports/mail/mailman3/mailman-3.3.1/src/mailman/runners/docs/
H A DOVERVIEW.rst8 mylist-bounces -> bounces
18 to subscription and unsubscription requests. ``-bounces`` is the automated
20 set to ``-bounces``. If the bounce processor fails to extract a bouncing
31 | |[bounces]
32 | mylist-bounces <---+ <-------------------------------+
37 | [bounces *] +--->[register and discard] |
45 | data/owner-bounces.mbox <--[site list] <---+ |
58 |[bounces] |
64 forwarded on to the list membership, with bounces directed to the -bounces
76 ``data/owners-bounces.mbox``.
[all …]
H A Doutgoing.rst84 X-MailFrom: test-bounces@example.com
129 aperson@example.com test-bounces@example.com
130 bperson@example.com test-bounces@example.com
131 cperson@example.com test-bounces@example.com
161 aperson@example.com test-bounces+aperson=example.com@example.com
162 bperson@example.com test-bounces+bperson=example.com@example.com
230 test-bounces@example.com
250 test-bounces@example.com
289 test-bounces@example.com
402 test-bounces@example.com
[all …]
/dports/devel/efl/efl-1.25.1/src/lib/ecore/
H A Defl_bounce_interpolator.c15 int bounces; member
27 pd->rigidness, (double)pd->bounces); in _efl_bounce_interpolator_efl_interpolator_interpolate()
48 int bounces) in _efl_bounce_interpolator_bounces_set() argument
50 pd->bounces = bounces; in _efl_bounce_interpolator_bounces_set()
57 return pd->bounces; in _efl_bounce_interpolator_bounces_get()
67 pd->bounces = 1; in _efl_bounce_interpolator_efl_object_constructor()
H A Defl_bounce_interpolator.eo3 [[Bouncing interpolator. The value quickly reaches $[1.0] and then bounces back
6 The number of bounces and how far it goes back on every bounce can be customized.
12 @property bounces {
13 [[Customize the number of bounces.]]
19 bounces: int; [[Number of bounces before stopping.]]
30 Higher numbers result in smaller bounces (lesser bounciness).]]
/dports/mail/dovecot-pigeonhole/dovecot-2.3-pigeonhole-0.5.17/tests/extensions/regex/
H A Dmatch-values.svtest8 Sender: antlr-interest-bounces@ant.example.com
19 if header :regex ["Sender"] ["([^-@]*)-([^-@]*)(-bounces)?@ant.example.com"] {
29 if not string :is "${3}" "-bounces" {
33 if string :is "${4}" "-bounces" {
42 …if header :regex ["Sender"] ["(.*>[ \\t]*,?[ \\t]*)?([^-@]*)-([^-@]*)(-bounces)?@ant.example.com"]…
56 if not string :is "${4}" "-bounces" {
60 if string :is "${5}" "-bounces" {
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/test/orm/
H A Dtest_deprecations.py156 max = session.query(func.max(Address.bounces)).one()[0]
175 min = session.query(func.min(Address.bounces)).one()[0]
193 avg = session.query(func.avg(Address.bounces)).one()[0]
211 avg = session.query(func.sum(Address.bounces)).one()[0]
246 num = session.query(Address).filter(Address.bounces > 1).count()
419 assert bounced.bounces > 0
435 onebounce = session.query(Address).filter_by(bounces=1).first()
436 assert onebounce.bounces == 1
439 filter_by(bounces=1)).first()
443 filter(Address.bounces == 1)).first()
[all …]
/dports/databases/py-sqlalchemy10/SQLAlchemy-1.0.14/test/orm/
H A Dtest_deprecations.py157 max = session.query(func.max(Address.bounces)).one()[0]
176 min = session.query(func.min(Address.bounces)).one()[0]
194 avg = session.query(func.avg(Address.bounces)).one()[0]
212 avg = session.query(func.sum(Address.bounces)).one()[0]
247 num = session.query(Address).filter(Address.bounces > 1).count()
421 assert bounced.bounces > 0
437 onebounce = session.query(Address).filter_by(bounces=1).first()
438 assert onebounce.bounces == 1
441 filter_by(bounces=1)).first()
445 filter(Address.bounces == 1)).first()
[all …]
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/test/orm/
H A Dtest_deprecations.py181 max_ = session.query(func.max(Address.bounces)).one()[0]
196 mins = list(session.query(Address).values(func.min(Address.bounces)))
200 min_ = session.query(func.min(Address.bounces)).one()[0]
218 avg = session.query(func.avg(Address.bounces)).one()[0]
236 avg = session.query(func.sum(Address.bounces)).one()[0]
274 num = session.query(Address).filter(Address.bounces > 1).count()
463 assert bounced.bounces > 0
479 onebounce = session.query(Address).filter_by(bounces=1).first()
480 assert onebounce.bounces == 1
483 session.query(User).join("addresses").filter_by(bounces=1)
[all …]
/dports/mail/mailman3/mailman-3.3.1/src/mailman/chains/tests/
H A Dtest_reject.py51 bounces = get_queue_messages('virgin', expected_count=1)
52 payload = bounces[0].msg.get_payload(0).as_string()
60 bounces = get_queue_messages('virgin', expected_count=1)
61 payload = bounces[0].msg.get_payload(0).as_string()
/dports/mail/p5-Sisimai/Sisimai-v4.25.11/set-of-emails/maildir/mac/
H A Dlhost-amazonses-01.eml6 Authentication-Results: nijo.example.jp; sender-id=pass header.from=MAILER-DAEMON@email-bounces.ama…
7 X-Original-To: 000001321defbd2a-788e31c8-2be1-422f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses…
8 Delivered-To: 000001321defbd2a-788e31c8-2be1-422f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses.…
12 From: MAILER-DAEMON@email-bounces.amazonses.com
26 2f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses.com>... Access denied'
37 ….7.1 <000001321defbd2a-788e31c8-2be1-422f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses.com>...…
44 Return-Path: 000001321defbd2a-788e31c8-2be1-422f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses.c…
/dports/mail/p5-Sisimai/Sisimai-v4.25.11/set-of-emails/maildir/dos/
H A Dlhost-amazonses-01.eml6 Authentication-Results: nijo.example.jp; sender-id=pass header.from=MAILER-DAEMON@email-bounces.ama…
7 X-Original-To: 000001321defbd2a-788e31c8-2be1-422f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses…
8 Delivered-To: 000001321defbd2a-788e31c8-2be1-422f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses.…
12 From: MAILER-DAEMON@email-bounces.amazonses.com
26 2f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses.com>... Access denied'
37 ….7.1 <000001321defbd2a-788e31c8-2be1-422f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses.com>...…
44 Return-Path: 000001321defbd2a-788e31c8-2be1-422f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses.c…
/dports/mail/p5-Sisimai/Sisimai-v4.25.11/set-of-emails/maildir/bsd/
H A Dlhost-amazonses-01.eml6 Authentication-Results: nijo.example.jp; sender-id=pass header.from=MAILER-DAEMON@email-bounces.ama…
7 X-Original-To: 000001321defbd2a-788e31c8-2be1-422f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses…
8 Delivered-To: 000001321defbd2a-788e31c8-2be1-422f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses.…
12 From: MAILER-DAEMON@email-bounces.amazonses.com
26 2f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses.com>... Access denied'
37 ….7.1 <000001321defbd2a-788e31c8-2be1-422f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses.com>...…
44 Return-Path: 000001321defbd2a-788e31c8-2be1-422f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses.c…
/dports/mail/phplist/phplist-3.6.6/public_html/lists/config/
H A Dconfig.php.sample49 * Settings for handling bounces
52 * set up bounce processing. Without processing of bounces your system will end up sending large amo…
61 // This is the address that most bounces will be delivered to
63 // but a mailbox that phpList can empty every so often, to process the bounces
67 // Handling bounces. Check README.bounces for more info
71 // set this to 0, if you set up a cron to download bounces regularly by using the
97 // a problem, because bounces will be counted multiple times, so only do this if you are
107 // how many bounces in a row need to have occurred for a user to be marked unconfirmed
/dports/mail/phplist/phplist-3.6.6/doc/
H A DREADME.bounces2 # handling bounces with phpList
9 How to make sure you can process bounces in phpList:
22 In the admin pages, you can now load the bounces in the phpList database. Some bounces are not
23 always really bounces, but they can be "Message delayed" or "Out of Office" messages. Therefore
24 phpList will not immediately unsubscribe a user when a message has bounces, but it will determine
38 If a message to a user bounces, the threshold will be used to determine the previous number of
/dports/games/frogatto/frogatto-1.3.1/modules/frogatto/data/objects/enemies/bugs/
H A Dmoth_brown.cfg135 bounces: 3,
143 …on_collide_side: "[set(velocity_x, if(bounces > 0, (velocity_x*3)/4, 0)), set(bounces, bounces-1)]…
144 …if(bounces > 0, [set(velocity_x, (velocity_x*3)/4), set(velocity_y, -(velocity_y)/2)], [set(veloci…
155 on_spat: "[set(countdown, 9), animation('normal2'), set(vars.has_been_spat, 1), set(bounces, 3)]",
/dports/games/aquaria/Aquaria-OSE-v1.002-22-g84366ad/files/scripts/entities/
H A Daggroeggs.lua31 v.bounces = 0
109 v.bounces = v.bounces + 1
110 if v.bounces > 3 then
H A Dmoneyebreeder.lua31 v.bounces = 0
102 v.bounces = v.bounces + 1
103 if v.bounces > 3 then
/dports/mail/mailman3/mailman-3.3.1/src/mailman/mta/docs/
H A Dpersonalized.rst60 X-MailFrom: test-bounces@example.com
70 X-MailFrom: test-bounces@example.com
80 X-MailFrom: test-bounces@example.com
112 X-MailFrom: test-bounces@example.com
122 X-MailFrom: test-bounces@example.com
132 X-MailFrom: test-bounces@example.com
165 X-MailFrom: test-bounces@example.com
175 X-MailFrom: test-bounces@example.com
185 X-MailFrom: test-bounces@example.com
/dports/mail/mailman-exim4/mailman-2.1.39/scripts/
H A Dbounces19 """Process VERP'd bounces.
36 LogStdErr('error', 'bounces')
44 print >> sys.stderr, _('bounces script got no listname.')
48 print >> sys.stderr, _('bounces script, list not found: %(listname)s')
50 # Immediately queue the message for the bounces qrunner to process. The
/dports/mail/mailman-postfix/mailman-2.1.39/scripts/
H A Dbounces19 """Process VERP'd bounces.
36 LogStdErr('error', 'bounces')
44 print >> sys.stderr, _('bounces script got no listname.')
48 print >> sys.stderr, _('bounces script, list not found: %(listname)s')
50 # Immediately queue the message for the bounces qrunner to process. The
/dports/mail/mailman/mailman-2.1.39/scripts/
H A Dbounces19 """Process VERP'd bounces.
36 LogStdErr('error', 'bounces')
44 print >> sys.stderr, _('bounces script got no listname.')
48 print >> sys.stderr, _('bounces script, list not found: %(listname)s')
50 # Immediately queue the message for the bounces qrunner to process. The
/dports/multimedia/v4l_compat/linux-5.13-rc2/tools/testing/selftests/vm/
H A Duserfaultfd.c71 static int bounces; variable
400 if (bounces & BOUNCE_RANDOM) { in locking_thread()
411 page_nr = -bounces; in locking_thread()
771 if (bounces & BOUNCE_POLL) { in stress()
811 if (bounces & BOUNCE_POLL) { in stress()
1433 while (bounces--) { in userfaultfd_stress()
1443 if (bounces & BOUNCE_POLL) in userfaultfd_stress()
1450 if (bounces & BOUNCE_POLL) in userfaultfd_stress()
1544 bounces = 0; in userfaultfd_stress()
1663 bounces = atoi(argv[3]); in main()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/tools/testing/selftests/vm/
H A Duserfaultfd.c71 static int bounces; variable
400 if (bounces & BOUNCE_RANDOM) { in locking_thread()
411 page_nr = -bounces; in locking_thread()
771 if (bounces & BOUNCE_POLL) { in stress()
811 if (bounces & BOUNCE_POLL) { in stress()
1433 while (bounces--) { in userfaultfd_stress()
1443 if (bounces & BOUNCE_POLL) in userfaultfd_stress()
1450 if (bounces & BOUNCE_POLL) in userfaultfd_stress()
1544 bounces = 0; in userfaultfd_stress()
1663 bounces = atoi(argv[3]); in main()
[all …]

12345678910>>...69