Home
last modified time | relevance | path

Searched refs:chuck (Results 1 – 25 of 871) sorted by relevance

12345678910>>...35

/dports/devel/R-cran-purrr/purrr/tests/testthat/
H A Dtest-chuck.R6 expect_error(chuck(NULL, "a"), "can't be NULL")
14 expect_error(chuck(x, NA_character_), "can't be NA")
15 expect_error(chuck(x, ""), "can't be an empty string")
17 expect_error(chuck(x, NA_integer_), "must be finite")
19 expect_error(chuck(x, NA_real_), "must be finite")
20 expect_error(chuck(x, NaN), "must be finite")
21 expect_error(chuck(x, Inf), "must be finite")
22 expect_error(chuck(x, -Inf), "must be finite")
53 expect_error(chuck(x, NA_character_), "can't be NA")
72 expect_error(chuck(A, NA_character_), "can't be NA")
[all …]
H A Dtest-pluck.R268 expect_identical(chuck(x, 1, 1), "foo")
269 expect_identical(chuck(x, 1, "b", 1), "bar")
279 expect_error(chuck(x, 1, 1), "Length of S3 object must be a scalar integer")
290 expect_error(chuck(x, 1, "b", 1), "unnamed vector")
/dports/games/golddig/golddigC3.1/levs/
H A Dscores2 38 20 20 54171 chuck was abandoned
3 19 5 5 54171 chuck was abandoned
4 1 26 27 54171 chuck was abandoned
5 0 20 20 54171 chuck was abandoned
6 0 20 20 54171 chuck was abandoned
7 0 12 12 54171 chuck was abandoned
8 0 10 10 54171 chuck was abandoned
9 0 10 10 54171 chuck was abandoned
/dports/math/fricas/fricas-1.3.7/src/hyper/
H A Ditem.c62 ItemStack *is = gTopOfItemStack, *chuck; in clear_item_stack() local
65 chuck = is; in clear_item_stack()
67 free(chuck); in clear_item_stack()
74 ItemStack *chuck; in pop_item_stack() local
80 chuck = gTopOfItemStack; in pop_item_stack()
82 indent = chuck->indent; in pop_item_stack()
83 item_indent = chuck->item_indent; in pop_item_stack()
84 gInItem = chuck->in_item; in pop_item_stack()
85 free(chuck); in pop_item_stack()
/dports/audio/din/din-52/src/
H A Ddrone.cc279 if (chuck.yes && chuckt::autoresettrails && chuck.sat) chuck.resettrail (chuck.sat); in freeze()
287 if (chuck.yes && chuckt::autoresettrails && chuck.sat) chuck.resettrail (chuck.sat); in thaw()
326 if (sun) p.chuck.len = unit_vector (p.chuck.ux, p.chuck.uy, sun->cx, sun->cy, p.cx, p.cy); in re()
333 ss << ", Previous = " << sun->chuck.speed; in print()
336 ss << ", Next = " << sat->chuck.speed; in print()
344 drone* sat = d->chuck.sat; in resettrail()
345 if (sat) sat->chuck.resettrail (sat); in resettrail()
H A Ddrone.h286 if (sat) sat->chuck.calc (sat); in calc()
291 sat->chuck.sun = sun; in de()
293 sun->chuck.sat = sat; in de()
294 sat->chuck.calc (sat); in de()
297 if (sun) sun->chuck.sat = 0; in de()
308 } chuck; member
H A Ddin.cc640 if (di.chuck.yes) file >> di.chuck; in load_drones()
710 if (di.chuck.sun) di.chuck.sun = get_drone ((uintptr_t) di.chuck.sun); in load_drones()
711 if (di.chuck.sat) di.chuck.sat = get_drone ((uintptr_t) di.chuck.sat); in load_drones()
3174 if (di.chuck.yes && di.chuck.sun) { in calc_xform_vectors()
3557 if (di.chuck.yes && di.chuck.sun) { in evalchuck()
3559 …di.chuck.len = unit_vector (di.chuck.ux, di.chuck.uy, di.chuck.sun->chuck.cx, di.chuck.sun->chuck.… in evalchuck()
3561 … rotate_vector (di.chuck.ux, di.chuck.uy, di.chuck.dir * di.chuck.speed * drone::chuckt::apt.rad); in evalchuck()
3562 …di.set_center (di.chuck.sun->chuck.cx + di.chuck.len * di.chuck.ux, di.chuck.sun->chuck.cy + di.ch… in evalchuck()
3607 if (di.chuck.yes) di.chuck.dir = -di.chuck.dir; in flipchuckspeed()
3619 if (di.chuck.yes) swap (di.chuck.speed, di.chuck.speed0); in togchuckspeed()
[all …]
/dports/misc/thrill/thrill-12c5b59bca66df93b66628b3829027bd0f110dd9/tests/inputs/
H A Dwordcount.in1 … fatback frankfurter leberkas bacon pork belly cupim prosciutto drumstick chuck meatloaf brisket f…
3chuck brisket flank meatloaf porchetta strip steak meatloaf alcatra drumstick tongue tail kevin bi…
9 …in pork chuck picanha filet mignon prosciutto pork landjaeger alcatra flank kielbasa ball tip pork…
11 … fatback frankfurter leberkas bacon pork belly cupim prosciutto drumstick chuck meatloaf brisket f…
13chuck brisket flank meatloaf porchetta strip steak meatloaf alcatra drumstick tongue tail kevin bi…
19 …in pork chuck picanha filet mignon prosciutto pork landjaeger alcatra flank kielbasa ball tip pork…
21 … fatback frankfurter leberkas bacon pork belly cupim prosciutto drumstick chuck meatloaf brisket f…
23chuck brisket flank meatloaf porchetta strip steak meatloaf alcatra drumstick tongue tail kevin bi…
29 …in pork chuck picanha filet mignon prosciutto pork landjaeger alcatra flank kielbasa ball tip pork…
33chuck brisket flank meatloaf porchetta strip steak meatloaf alcatra drumstick tongue tail kevin bi…
[all …]
/dports/devel/R-cran-purrr/purrr/man/
H A Dpluck.Rd5 \alias{chuck}
7 \title{Pluck or chuck a single element from a vector or environment}
11 chuck(.x, ...)
33 \code{pluck()} and \code{chuck()} implement a generalised form of \code{[[} that
36 exist, \code{chuck()} always throws an error in that case.
40 \item You can pluck or chuck with standard accessors like integer
84 # the opinionated variant chuck():
85 chuck(x, 1)
86 try(chuck(x, 10))
87 try(chuck(x, 1, 10))
[all …]
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/examples/nested_sets/
H A Dnested_sets.py91 chuck = Employee(emp="Chuck") variable
97 chuck.parent = albert
98 donna.parent = chuck
99 eddie.parent = chuck
100 fred.parent = chuck
104 session.add_all([albert, bert, chuck, donna, eddie, fred])
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/examples/nested_sets/
H A Dnested_sets.py90 chuck = Employee(emp="Chuck") variable
96 chuck.parent = albert
97 donna.parent = chuck
98 eddie.parent = chuck
99 fred.parent = chuck
103 session.add_all([albert, bert, chuck, donna, eddie, fred])
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/examples/nested_sets/
H A Dnested_sets.py73 chuck = Employee(emp='Chuck') variable
79 chuck.parent = albert
80 donna.parent = chuck
81 eddie.parent = chuck
82 fred.parent = chuck
86 session.add_all([albert, bert, chuck, donna, eddie, fred])
/dports/databases/py-sqlalchemy10/SQLAlchemy-1.0.14/examples/nested_sets/
H A Dnested_sets.py73 chuck = Employee(emp='Chuck') variable
79 chuck.parent = albert
80 donna.parent = chuck
81 eddie.parent = chuck
82 fred.parent = chuck
86 session.add_all([albert, bert, chuck, donna, eddie, fred])
/dports/databases/py-sqlalchemy14/SQLAlchemy-1.4.27/examples/nested_sets/
H A Dnested_sets.py91 chuck = Employee(emp="Chuck") variable
97 chuck.parent = albert
98 donna.parent = chuck
99 eddie.parent = chuck
100 fred.parent = chuck
104 session.add_all([albert, bert, chuck, donna, eddie, fred])
/dports/devel/mongo-c-driver/mongo-c-driver-1.8.1/tests/binary/
H A Dgridfs-large.dat7 Frankfurter chuck beef corned beef bresaola cow pancetta capicola turkey andouille. Pork ribeye fra…
16 Frankfurter chuck beef corned beef bresaola cow pancetta capicola turkey andouille. Pork ribeye fra…
25 Frankfurter chuck beef corned beef bresaola cow pancetta capicola turkey andouille. Pork ribeye fra…
34 Frankfurter chuck beef corned beef bresaola cow pancetta capicola turkey andouille. Pork ribeye fra…
43 Frankfurter chuck beef corned beef bresaola cow pancetta capicola turkey andouille. Pork ribeye fra…
52 Frankfurter chuck beef corned beef bresaola cow pancetta capicola turkey andouille. Pork ribeye fra…
61 Frankfurter chuck beef corned beef bresaola cow pancetta capicola turkey andouille. Pork ribeye fra…
70 Frankfurter chuck beef corned beef bresaola cow pancetta capicola turkey andouille. Pork ribeye fra…
79 Frankfurter chuck beef corned beef bresaola cow pancetta capicola turkey andouille. Pork ribeye fra…
88 Frankfurter chuck beef corned beef bresaola cow pancetta capicola turkey andouille. Pork ribeye fra…
[all …]
H A Dgridfs.dat5 …pig pork beef ribs prosciutto leberkas. Ball tip t-bone ham, pig ham hock chuck meatloaf tail boud…
7 Frankfurter chuck beef corned beef bresaola cow pancetta capicola turkey andouille. Pork ribeye fra…
9 …one kevin chicken beef swine corned beef ball tip ham hock jerky kielbasa chuck. Tail venison sala…
/dports/www/pear-Horde_Form/Horde_Form-2.0.20/test/
H A DHorde_Form_Type_email.phpt50 test('chuck@horde.org,');
51 test('chuck@horde.org,,');
53 test(',chuck@horde.org,');
59 test('chuck@horde.org,');
60 test('chuck@horde.org,,');
62 test(',chuck@horde.org,');
/dports/astro/accrete/accrete-1.0/
H A DChangeLog1 2003-06-02 Charles Swiger <chuck@pkix.net>
5 2003-05-31 Charles Swiger <chuck@pkix.net>
8 2003-05-30 Charles Swiger <chuck@pkix.net>
/dports/www/htdigest/httpd-2.4.6/modules/proxy/
H A DCHANGES55 [Chuck Murcko <chuck@topsail.org>]
61 [Chuck Murcko <chuck@topsail.org>]
72 [Chuck Murcko <chuck@topsail.org>]
77 [Chuck Murcko <chuck@topsail.org>]
83 [Chuck Murcko <chuck@topsail.org>]
86 [Chuck Murcko <chuck@topsail.org>]
111 [Chuck Murcko <chuck@topsail.org>]
216 [Chuck Murcko <chuck@topsail.org>]
219 [Chuck Murcko <chuck@topsail.org>]
222 [Chuck Murcko <chuck@topsail.org>]
/dports/www/apache24/httpd-2.4.53/modules/proxy/
H A DCHANGES55 [Chuck Murcko <chuck@topsail.org>]
61 [Chuck Murcko <chuck@topsail.org>]
72 [Chuck Murcko <chuck@topsail.org>]
77 [Chuck Murcko <chuck@topsail.org>]
83 [Chuck Murcko <chuck@topsail.org>]
86 [Chuck Murcko <chuck@topsail.org>]
111 [Chuck Murcko <chuck@topsail.org>]
216 [Chuck Murcko <chuck@topsail.org>]
219 [Chuck Murcko <chuck@topsail.org>]
222 [Chuck Murcko <chuck@topsail.org>]
/dports/devel/pear-Horde_Rdo/Horde_Rdo-2.1.0/doc/Horde/Rdo/examples/
H A DTask.php39 $chuck = $tm->find(Horde_Rdo::FIND_ALL, array('task_owner' => 'chuck'));
41 foreach ($chuck as $task) {
/dports/biology/seqan-apps/seqan-seqan-v2.4.0/dox/pages/
H A Dsupermaximal_repeats.dox22 …* The only supermaximal repeats of "How many wood would a woodchuck chuck." of length at least 3 a…
23 …* "chuck". There are repeats of " wo" which are maximal (see Maximal Repeats), ut not supermaximal…
31 * 26, 32, 5 "chuck"
/dports/biology/biosig/biosig-2.3.3/biosig4matlab/maybe-missing/
H A Dstrfind2.m68 %! cstr = {"How much wood would a woodchuck chuck";
69 %! "if a woodchuck could chuck wood?"};
76 %! cstr = {"How much wood would a woodchuck chuck";
77 %! "if a woodchuck could chuck wood?"};
H A Dstrfind3.m79 %! cstr = {"How much wood would a woodchuck chuck";
80 %! "if a woodchuck could chuck wood?"};
87 %! cstr = {"How much wood would a woodchuck chuck";
88 %! "if a woodchuck could chuck wood?"};
/dports/shells/ohmyzsh/ohmyzsh-6babcbd8841335a3c25ec960ff57ab9a139c9073/plugins/chucknorris/
H A Dchucknorris.plugin.zsh6 alias chuck="fortune -a $fortunes_dir" alias
7 alias chuck_cow="chuck | cowthink"

12345678910>>...35