Home
last modified time | relevance | path

Searched refs:looks (Results 1 – 25 of 9354) sorted by relevance

12345678910>>...375

/dports/www/p5-Dancer/Dancer-1.3513/t/02_request/
H A D11_accessors.t22 is_deeply $r->env, $env, "environement looks good";
24 is $r->path, $env->{PATH_INFO}, 'path looks good';
25 is $r->method, $env->{REQUEST_METHOD}, 'method looks good';
28 is $r->body, '', 'body looks good';
29 is $r->user_agent, 'Mozy', 'user_agent looks good';
30 is $r->agent, 'Mozy', 'agent looks good';
31 is $r->host, 'foo.bar.com', 'host looks good';
32 is $r->remote_address, '192.168.0.2', 'remote address looks good';
34 is $r->user, 'franck', 'remote user looks good';
35 is $r->request_uri, '/', 'request_uri looks good';
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/tests/ui/
H A Dsuspicious_operation_groupings.stderr1 error: this sequence of operators looks suspiciously like a bug
9 error: this sequence of operators looks suspiciously like a bug
15 error: this sequence of operators looks suspiciously like a bug
21 error: this sequence of operators looks suspiciously like a bug
27 error: this sequence of operators looks suspiciously like a bug
33 error: this sequence of operators looks suspiciously like a bug
39 error: this sequence of operators looks suspiciously like a bug
45 error: this sequence of operators looks suspiciously like a bug
51 error: this sequence of operators looks suspiciously like a bug
57 error: this sequence of operators looks suspiciously like a bug
[all …]
H A Dmatch_expr_like_matches_macro.stderr1 error: match expression looks like `matches!` macro
13 error: match expression looks like `matches!` macro
35 error: match expression looks like `matches!` macro
45 error: if let .. else expression looks like `matches!` macro
51 error: match expression looks like `matches!` macro
62 error: match expression looks like `matches!` macro
73 error: match expression looks like `matches!` macro
83 error: match expression looks like `matches!` macro
93 error: match expression looks like `matches!` macro
103 error: match expression looks like `matches!` macro
[all …]
H A Dswap.stderr1 error: this looks like you are swapping `bar.a` and `bar.b` manually
12 error: this looks like you are swapping elements of `foo` manually
20 error: this looks like you are swapping elements of `foo` manually
28 error: this looks like you are swapping elements of `foo` manually
36 error: this looks like you are swapping `a` and `b` manually
44 error: this looks like you are swapping `bar.a` and `bar.b` manually
52 error: this looks like you are swapping elements of `foo` manually
70 error: this looks like you are swapping `a` and `b` manually
81 error: this looks like you are swapping `c.0` and `a` manually
92 error: this looks like you are trying to swap `a` and `b`
[all …]
H A Dsame_item_push.stderr1 error: it looks like the same item is being pushed into this Vec
10 error: it looks like the same item is being pushed into this Vec
18 error: it looks like the same item is being pushed into this Vec
26 error: it looks like the same item is being pushed into this Vec
34 error: it looks like the same item is being pushed into this Vec
/dports/devel/R-cran-rprojroot/rprojroot/man/
H A Dcriteria.Rd44 \code{is_rstudio_project} looks for a file with extension \code{.Rproj}.
46 \code{is_r_package} looks for a \code{DESCRIPTION} file.
48 \code{is_remake_project} looks for a \code{remake.yml} file.
50 \code{is_drake_project} looks for a \code{.drake} directory.
52 \code{is_projectile_project} looks for a \code{.projectile} file.
54 \code{is_git_root} looks for a \code{.git} directory.
56 \code{is_svn_root} looks for a \code{.svn} directory.
58 \code{is_vcs_root} looks for the root of a version control
61 \code{is_testthat} looks for the \code{testthat} directory, works when
/dports/math/chuffed/chuffed-e04bedd/chuffed/flatzinc/
H A Dflatzinc.h108 : VarSpec(output, introduced, looks) { in VarSpec() argument
113 …VarSpec(int i0, bool output, bool introduced, bool looks = false) : VarSpec(output, introduced, lo… in VarSpec() argument
116 …onst Alias& eq, bool output, bool introduced, bool looks = false) : VarSpec(output, introduced, lo… in VarSpec() argument
136 : VarSpec(output, introduced, looks) { in VarSpec() argument
142 …VarSpec(bool b, bool output, bool introduced, bool looks = false) : VarSpec(output, introduced, lo… in VarSpec() argument
164 …SetVarSpec(bool output, bool introduced, bool looks = false) : VarSpec(output, introduced, looks) { in VarSpec() argument
169 : VarSpec(output, introduced, looks) { in VarSpec() argument
172 …AST::SetLit* v, bool output, bool introduced, bool looks = false) : VarSpec(output, introduced, lo… in VarSpec() argument
176 …onst Alias& eq, bool output, bool introduced, bool looks = false) : VarSpec(output, introduced, lo… in VarSpec() argument
191 : VarSpec(output, introduced, looks) { in VarSpec() argument
[all …]
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/radiant/xyview/grid/
H A DGrid.cpp128 ComboBoxValueList looks; in constructPreferencePage() local
130 looks.push_back(_("Lines")); in constructPreferencePage()
131 looks.push_back(_("Dotted Lines")); in constructPreferencePage()
132 looks.push_back(_("More Dotted Lines")); in constructPreferencePage()
133 looks.push_back(_("Crosses")); in constructPreferencePage()
134 looks.push_back(_("Dots")); in constructPreferencePage()
135 looks.push_back(_("Big Dots")); in constructPreferencePage()
136 looks.push_back(_("Squares")); in constructPreferencePage()
138 page->appendCombo(_("Major Grid Style"), RKEY_GRID_LOOK_MAJOR, looks); in constructPreferencePage()
139 page->appendCombo(_("Minor Grid Style"), RKEY_GRID_LOOK_MINOR, looks); in constructPreferencePage()
/dports/lang/perl5.32/perl-5.32.1/lib/
H A Dbytes.t37 is(ord($c), 0x8c, "ord under use bytes looks at the 1st byte");
39 is(ord($c), 0xc4, "ord under use bytes looks at the 1st byte");
41 is(length($c), 2, "length under use bytes looks at bytes");
42 is(bytes::length($c), 2, "bytes::length under use bytes looks at bytes");
44 is(bytes::ord($c), 0x8c, "bytes::ord under use bytes looks at the 1st byte");
46 is(bytes::ord($c), 0xc4, "bytes::ord under use bytes looks at the 1st byte");
50 is(bytes::substr($c, 0, 1), "\x8c", "bytes::substr under use bytes looks at bytes");
51 is(bytes::index($c, "\x41"), 1, "bytes::index under use bytes looks at bytes");
52 is(bytes::rindex($c, "\x8c"), 0, "bytes::rindex under use bytes looks at bytes");
57 is(bytes::index($c, "\x80"), 1, "bytes::index under use bytes looks at bytes");
[all …]
/dports/lang/perl5.30/perl-5.30.3/lib/
H A Dbytes.t37 is(ord($c), 0x8c, "ord under use bytes looks at the 1st byte");
39 is(ord($c), 0xc4, "ord under use bytes looks at the 1st byte");
41 is(length($c), 2, "length under use bytes looks at bytes");
42 is(bytes::length($c), 2, "bytes::length under use bytes looks at bytes");
44 is(bytes::ord($c), 0x8c, "bytes::ord under use bytes looks at the 1st byte");
46 is(bytes::ord($c), 0xc4, "bytes::ord under use bytes looks at the 1st byte");
50 is(bytes::substr($c, 0, 1), "\x8c", "bytes::substr under use bytes looks at bytes");
51 is(bytes::index($c, "\x41"), 1, "bytes::index under use bytes looks at bytes");
52 is(bytes::rindex($c, "\x8c"), 0, "bytes::rindex under use bytes looks at bytes");
57 is(bytes::index($c, "\x80"), 1, "bytes::index under use bytes looks at bytes");
[all …]
/dports/math/fricas/fricas-1.3.7/pre-generated/target/share/hypertex/pages/
H A Dpatch.ht17 I hope it looks okay
19 I hope it looks okay
21 I hope it looks okay
30 I hope it looks okay
32 I hope it looks okay
34 I hope it looks okay
43 I hope it looks okay
45 I hope it looks okay
47 I hope it looks okay
/dports/math/fricas/fricas-1.3.7/src/doc/ht/
H A Dpatch.ht17 I hope it looks okay
19 I hope it looks okay
21 I hope it looks okay
30 I hope it looks okay
32 I hope it looks okay
34 I hope it looks okay
43 I hope it looks okay
45 I hope it looks okay
47 I hope it looks okay
/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/tests/ui/manual_memcpy/
H A Dwithout_loop_counters.stderr1 error: it looks like you're manually copying between slices
11 error: it looks like you're manually copying between slices
19 error: it looks like you're manually copying between slices
27 error: it looks like you're manually copying between slices
35 error: it looks like you're manually copying between slices
43 error: it looks like you're manually copying between slices
58 error: it looks like you're manually copying between slices
66 error: it looks like you're manually copying between slices
74 error: it looks like you're manually copying between slices
82 error: it looks like you're manually copying between slices
[all …]
H A Dwith_loop_counters.stderr1 error: it looks like you're manually copying between slices
12 error: it looks like you're manually copying between slices
21 error: it looks like you're manually copying between slices
30 error: it looks like you're manually copying between slices
39 error: it looks like you're manually copying between slices
48 error: it looks like you're manually copying between slices
57 error: it looks like you're manually copying between slices
66 error: it looks like you're manually copying between slices
75 error: it looks like you're manually copying between slices
92 error: it looks like you're manually copying between slices
[all …]
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/mysql-test/r/
H A Dcheck_basedir.result14 # basedir looks ok
16 # lc-messages-dir looks ok
24 # basedir looks ok
26 # lc-messages-dir looks ok
34 # basedir looks ok
36 # lc-messages-dir looks ok
/dports/www/p5-Dancer/Dancer-1.3513/t/01_config/
H A D04_config_file.t40 'setting environment looks good');
42 'setting port looks good');
44 'setting startup_info looks good');
46 'setting logger looks good');
61 is(setting('log'), 'debug', 'log setting looks good');
62 is(setting('startup_info'), '1', 'startup_info setting looks good');
76 is(setting('log'), 'warning', 'log setting looks good');
78 is(setting('startup_info'), '0', 'startup_info setting looks good');
/dports/www/p5-Dancer/Dancer-1.3513/t/12_response/
H A D02_headers.t39 "X-Foo looks good for /header");
45 "X-A looks good for /headers");
46 is($res->header('X-B'), 'b', 'X-B looks good for /headers');
50 is($res->header('X-Foo'), 'bar', "X-Foo looks good for /headers/more");
51 is($res->header('X-Bar'), 'schmuk', "X-Bar looks good for /headers/more");
52 is($res->header('X-XXX'), 'porn', "X-XXX looks good for /headers/more");
53 is($res->header('Content-Type'), 'text/css', "Content-Type looks good for /headers/more");
57 is($res->header('Content-Type'), 'text/css', "Content-Type looks good for /headers/content_type");
/dports/www/p5-Jifty/Jifty-1.50430/t/TestApp-JiftyJS/t/
H A D4-tangent.t22 like $sel->get_location, qr{/tangent/returner}, "URL looks like /tangent/returner";
24 like $sel->get_location, qr{/tangent/page1}, "URL looks like /tangent/page1";
32 like $sel->get_location, qr{/tangent/returner}, "URL looks like /tangent/returner";
34 like $sel->get_location, qr{/tangent/page2}, "URL looks like /tangent/page2j";
42 like $sel->get_location, qr{/tangent/returner}, "URL looks like /tangent/returner";
44 like $sel->get_location, qr{/}, "URL looks like /";
/dports/lang/rust/rustc-1.58.1-src/src/doc/rustdoc/src/
H A Dcommand-line-arguments.md7 Using this flag looks like this:
22 Using this flag looks like this:
38 Using this flag looks like this:
62 Using this flag looks like this:
76 Using this flag looks like this:
88 Using this flag looks like this:
107 Using this flag looks like this:
124 Using this flag looks like this:
136 Using this flag looks like this:
148 Using this flag looks like this:
[all …]
/dports/www/firefox/firefox-99.0/testing/web-platform/meta/content-security-policy/wasm-unsafe-eval/
H A Dscript-src-spv-asynch.any.js.ini3 [Securitypolicyviolation event looks like it should]
9 [Securitypolicyviolation event looks like it should]
15 [Securitypolicyviolation event looks like it should]
21 [Securitypolicyviolation event looks like it should]
/dports/net/p5-Net-Random/Net-Random-2.32/t/
H A Dlive-tests.t32 ok(!(grep { $_ > 10 } values %dist), "distribution looks sane");
42 ok(!(grep { $_ > 35 } values %dist), "distribution looks sane");
53 ok(!(grep { $_ > 35 } values %dist), "distribution looks sane");
64 ok(!(grep { $_ > 15 } values %dist), "distribution looks sane");
75 ok(!(grep { $_ > 6 } values %dist), "distribution looks sane");
86 ok(!(grep { $_ > 2 } values %dist), "distribution looks sane");
98 ok(!(grep { $_ > 10 } values %dist), "distribution looks sane");
108 ok(!(grep { $_ > 35 } values %dist), "distribution looks sane");
119 ok(!(grep { $_ > 35 } values %dist), "distribution looks sane");
130 ok(!(grep { $_ > 2 } values %dist), "distribution looks sane");
/dports/textproc/sdf/sdf-2.001/doc/user/
H A Din_looks.sdf30 Note: At this time (January 98), multiple looks are currently only
35 H2: Available looks
37 The available looks include:
47 H2: Creating new looks
49 It is relatively simple to create new looks
/dports/graphics/opencolorio-tools/OpenColorIO-1.1.1/src/core/
H A DDisplay.cpp74 const std::string & looks)
80 views.push_back( View(view, colorspace, looks) );
89 views.push_back( View(view, colorspace, looks) );
94 views[index].looks = looks;
/dports/graphics/opencolorio/OpenColorIO-1.1.1/src/core/
H A DDisplay.cpp74 const std::string & looks)
80 views.push_back( View(view, colorspace, looks) );
89 views.push_back( View(view, colorspace, looks) );
94 views[index].looks = looks;
/dports/graphics/py-opencolorio/OpenColorIO-1.1.1/src/core/
H A DDisplay.cpp74 const std::string & looks)
80 views.push_back( View(view, colorspace, looks) );
89 views.push_back( View(view, colorspace, looks) );
94 views[index].looks = looks;

12345678910>>...375