Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created August 14, 2019 13:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Whateverable/23fad65a80670c16eb6bb8b9f938241d to your computer and use it in GitHub Desktop.
Save Whateverable/23fad65a80670c16eb6bb8b9f938241d to your computer and use it in GitHub Desktop.
greppable6
File Code
ATROXAPER/LogP6-Writer-Journald
…/Journald.pm6 :27:
method show($context) { 'CODE_FUNC=' ~ $context.callframe.code.name }
ATROXAPER/LogP6-Writer-Journald
…/00-functionality.t :43:
('CODE_FILE=' ~ $frame.file, 'CODE_FUNC=' ~ $frame.code.name,
AZAWAWI/Inline-Go
…/Go.pm6 :12:
has $.code;
BDUGGAN/Grammar-PrettyErrors
…/PrettyErrors.pm6 :77:
my $rule = callframe(4).code.name;
BDUGGAN/OAuth2-Client-Google
…/README.md :31:
my $token = $oauth.code-to-token(code => $code)
BDUGGAN/OAuth2-Client-Google
…/get-calendar-data.p6 :62:
my $access = $oauth.code-to-token(:$code);
BDUGGAN/OAuth2-Client-Google
…/Google.pm6 :134:
my $token = $oauth.code-to-token(code => $code)
BDUGGAN/OAuth2-Client-Google
…/002-auth2.t :40:
ok $o.code-to-token(:code("1234")), 'called code-to-token';
BDUGGAN/RDF-Turtle
…/Grammar.pm6 :289:
$*LASTRULE = callframe(1).code.name;
BDUGGAN/WebService-AWS-S3
…/S3.pm6 :58:
say "Error: { $!res.status-line } { $error.code }";
BDUGGAN/WebService-AWS-S3
…/S3.pm6 :59:
if $error.code eq 'SignatureDoesNotMatch' {
BDUGGAN/WebService-AWS-S3
…/S3.pm6 :80:
if $!res.code != 200 {
BDUGGAN/WebService-AWS-S3
…/S3.pm6 :95:
if $!res.code != 200 {
BDUGGAN/WebService-AWS-S3
…/S3.pm6 :137:
return $res.code == 200;
BDUGGAN/WebService-AWS-S3
…/Resources.pm6 :83:
has $.code is xml-element('Code');
CTILMES/DB-MySQL
…/Native.pm6 :16:
has Int $.code;
CTILMES/DB-SQLite
…/Native.pm6 :29:
has Int $.code;
CTILMES/LibCurl
…/MultiHandle.pod6 :62:
=item has uint32 $.code
CTILMES/LibCurl
…/LibCurl::MultiHandle.md :65:
* has uint32 $.code
CTILMES/LibCurl
…/EasyHandle.pm6 :534:
has Int $.code;
CTILMES/LibCurl
…/Multi.pm6 :101:
$msg.code == CURLE_OK
CTILMES/LibCurl
…/Multi.pm6 :103:
!! X::LibCurl.new(code => $msg.code));
CTILMES/LibCurl
…/MultiHandle.pm6 :40:
has uint32 $.code;
CTILMES/LibGit2
…/testit.p6 :12:
say $!.code;
CTILMES/LibGit2
…/Error.pm6 :68:
has Git::ErrorCode $.code;
CTILMES/Munge
…/unmunge.p6 :17:
if $!.code ~~ EMUNGE_BAD_CRED
CTILMES/Munge
…/unmunge.p6 :20:
exit $!.code;
CTILMES/Munge
…/unmunge.p6 :23:
$code = +$!.code;
CTILMES/Munge
…/Munge.pm6.html :92:
<p>$exception.code will return a Munge::Error enumeration value `EMUNGE_*`</p>
CTILMES/Munge
…/Munge.pm6.html :93:
<p>+$exception.code will give you the traditional libmunge error code.</p>
CTILMES/Munge
…/Munge.pm6 :196:
$exception.code will return a Munge::Error enumeration value `EMUNGE_*`
CTILMES/Munge
…/Munge.pm6 :198:
+$exception.code will give you the traditional libmunge error code.
CTILMES/Munge
…/Context.pm6 :75:
has Munge::Error $.code;
ELIZABETH/FINALIZER
…/Frobnicate.pm6 :4:
has &.code;
ELIZABETH/P5__FILE__
…/P5__FILE__.pm6 :11:
elsif $frame.code -> $code {
ELIZABETH/P5__FILE__
…/P5__FILE__.pm6 :27:
while callframe(++$n).code -> $code {
ELIZABETH/P5caller
…/P5caller.pm6 :29:
my $package = .subname eq '<unit>' ?? 'GLOBAL' !! .code.package.^name;
ELIZABETH/P5caller
…/P5caller.pm6 :32:
!! ($package, .file, .line, .subname, .code)
FCO/Red
…/ResultSeq.pm6 :34:
%data<meth-name> = callframe(1).code.name;
FCO/Red
…/ResultSeq.pm6 :36:
.subname and .subname ne "<anon>" and !.code.?is-hidden-from-sql-commenting
FCO/Red
…/ResultSeq.pm6 :39:
%data<block> = .code.name;
FRITH/Desktop-Notify
…/notify.p6 :19:
if $notify.error.code != 0 {
FRITH/Desktop-Notify
…/notify.p6 :26:
if $notify.error.code != 0 {
FRITH/Desktop-Notify
…/notify.p6 :32:
if $notify.error.code != 0 {
FRITH/Desktop-Notify
…/Notify.pm6 :12:
has int32 $.code;
FRITH/Desktop-Notify
…/01test.t :41:
is $notify.error.code, 0, "reading error code";
FRITH/Image-QRCode
…/rawstruct.p6 :16:
my $qrcode = $entry.code;
FRITH/Image-QRCode
…/QRCode.pm6 :26:
has QRcode $.code;
FRITH/Image-QRCode
…/03-data.t :89:
my QRcode $qrcode = $entry.code;
FRITH/Image-QRCode
…/03-data.t :111:
my QRcode $qrcode = $entry.code;
FRITH/Image-QRCode
…/03-data.t :133:
my QRcode $qrcode = $entry.code;
FRITH/Image-QRCode
…/03-data.t :155:
my QRcode $qrcode = $entry.code;
HANENKAMP/Amazon-DynamoDB
…/UserAgent.pm6 :33:
Status => $res.code,
HANENKAMP/Smack
…/Response.pm6 :12:
has StatusCode $.code is rw is required;
HANENKAMP/Smack
…/Response.pm6 :45:
$handle.write: "$.protocol $.code $.message\r\n".encode('iso-8859-1');
HANENKAMP/Smack
…/Response.pm6 :50:
return [~] "$.protocol $.code $.message\r\n", callsame;
HANENKAMP/Smack
…/cascade.t :15:
is $res.code, 404, 'no apps get a 404';
HANENKAMP/Smack
…/cascade.t :26:
is $res.code, 200, 'found access_log.t';
HANENKAMP/Smack
…/cascade.t :29:
is $res.code, 404, 'no finding foo';
HANENKAMP/Smack
…/cascade.t :33:
is $res.code, 200, 'found urlmap.t';
HANENKAMP/Smack
…/directory.t :13:
is $res.code, 200, 'getting #foo is 200';
HANENKAMP/Smack
…/directory.t :17:
is $res.code, 403, 'getting root parent is 403';
HANENKAMP/Smack
…/directory.t :20:
is $res.code, 400, 'encoding trickery is 400';
HANENKAMP/Smack
…/directory.t :23:
is $res.code, 403, 'getting foo of root parent is 403 even with encoding trickery';
HANENKAMP/Smack
…/directory.t :26:
is $res.code, 200, 'getting index is 200';
HANENKAMP/Smack
…/directory.t :37:
is $res.code, 200, 'able to get to Hello.txt';
HANENKAMP/Smack
…/file.t :16:
is $response.code, 200, 'response status is 200';
HANENKAMP/Smack
…/file.t :27:
is $response.code, 200, 'response status is still 200';
HANENKAMP/Smack
…/file.t :40:
is $response.code, 200, 'status is 200';
HANENKAMP/Smack
…/file.t :47:
is $response.code, 200, 'status is 200';
HANENKAMP/Smack
…/file.t :57:
is $response.code, 200, 'status is 200';
HANENKAMP/Smack
…/file.t :63:
is $response.code, 403, 'status is 403';
HANENKAMP/Smack
…/file.t :72:
is $response.code, 404, 'status is 404';
HANENKAMP/Smack
…/lifecycle.t :14:
is $response.code, 200, 'response status is 200';
HANENKAMP/Smack
…/access_log.t :44:
is $res.code, 200, 'status code is 200';
HANENKAMP/Smack
…/conditional-get.t :90:
diag "ERROR: $res.content()" if is-error($res.code);
HANENKAMP/Smack
…/conditional-get.t :91:
is $res.code, %test<status>, "status matches expected %test<status>";
HANENKAMP/Smack
…/conditional-get.t :95:
if $res.code == 304 {
HANENKAMP/Smack
…/content-length.t :50:
diag "ERROR: $res.content()" if is-error($res.code);
HANENKAMP/Smack
…/error-document.t :32:
is $res.code, 200;
HANENKAMP/Smack
…/error-document.t :35:
is $res.code, 500;
HANENKAMP/Smack
…/error-document.t :39:
is $res.code, 404;
HANENKAMP/Smack
…/static.t :47:
is $res.code, 403;
HANENKAMP/Smack
…/static.t :52:
is $res.code, 403;
HANENKAMP/Smack
…/static.t :57:
is $res.code, 404, 'not found';
HANENKAMP/Smack
…/static.t :73:
is $res.code, 200, 'pass through';
HANENKAMP/Smack
…/smackup.t :19:
is($response.code, 200, 'returned 200');
HANENKAMP/Smack
…/standalone.t :20:
is($response.code, 200, 'returned 200');
JNTHN/Cro-HTTP
…/Frame.pm6 :16:
has $.code;
JNTHN/Cro-HTTP
…/http2-frame-parser.t :24:
if .code == $code {
JNTHN/JSON-Schema
…/Schema.pm6 :240:
if $value ~~ Str:D && $value.codes < $!value {
JNTHN/JSON-Schema
…/Schema.pm6 :250:
if $value ~~ Str:D && $value.codes > $!value {
JNTHN/OpenAPI-Schema-Validate
…/Validate.pm6 :207:
if $value ~~ Str && $value.defined && $value.codes < $!min {
JNTHN/OpenAPI-Schema-Validate
…/Validate.pm6 :217:
if $value ~~ Str && $value.defined && $value.codes > $!max {
JNTHN/cro
…/app.js :9940:
case __WEBPACK_IMPORTED_MODULE_8_keycode___default.a.codes.down:
JNTHN/cro
…/app.js :9948:
case __WEBPACK_IMPORTED_MODULE_8_keycode___default.a.codes.esc:
JNTHN/cro
…/app.js :9949:
case __WEBPACK_IMPORTED_MODULE_8_keycode___default.a.codes.tab:
JNTHN/cro
…/app.js :26536:
* exports.code['enter'] // => 13
JNTHN/cro
…/app.js :26539:
var codes = exports.code = exports.codes = {
JNTHN/cro
…/app.js :40474:
case __WEBPACK_IMPORTED_MODULE_6_keycode___default.a.codes.left:
JNTHN/cro
…/app.js :40475:
case __WEBPACK_IMPORTED_MODULE_6_keycode___default.a.codes.up:
JNTHN/cro
…/app.js :40478:
case __WEBPACK_IMPORTED_MODULE_6_keycode___default.a.codes.right:
JNTHN/cro
…/app.js :40479:
case __WEBPACK_IMPORTED_MODULE_6_keycode___default.a.codes.down:
JNTHN/cro
…/app.js :71784:
props.linkReducer.codeShown && _react2.default.createElement(
JNTHN/cro
…/app.js :71936:
currentCode = serviceLinks[i].code;
JNTHN/cro
…/app.js :71940:
codeShown = !state.codeShown;
JNTHN/cro
…/app.js :71970:
serviceLinks[linkID].code = action.code;
JNTHN/cro
…/app.js :75324:
case __WEBPACK_IMPORTED_MODULE_7_keycode___default.a.codes.down:
JNTHN/cro
…/app.js :75328:
case __WEBPACK_IMPORTED_MODULE_7_keycode___default.a.codes.up:
JNTHN/cro
…/app.js :75332:
case __WEBPACK_IMPORTED_MODULE_7_keycode___default.a.codes.esc:
JNTHN/cro
…/app.js :75333:
case __WEBPACK_IMPORTED_MODULE_7_keycode___default.a.codes.tab:
JNTHN/cro
…/components.js :28:
{props.linkReducer.codeShown &&
JNTHN/cro
…/reducer.js :72:
currentCode = serviceLinks[i].code;
JNTHN/cro
…/reducer.js :76:
codeShown = !state.codeShown;
JNTHN/cro
…/reducer.js :107:
serviceLinks[linkID].code = action.code;
JSTOWE/License-SPDX
…/licenses.json :1349:
"http://www.codeproject.com/info/cpol10.aspx"
JSTOWE/Monitor-Monit
…/Monit.pm :488:
has $.code is required;
JSTOWE/Monitor-Monit
…/Monit.pm :540:
X::Monit::HTTP.new(code => $resp.code, status-line => $resp.status-line).throw;
JSTOWE/WebService-Soundcloud
…/Soundcloud.pm :545:
my $code = $response.code();
JSTOWE/XML-Class
…/060-simple-content.t :60:
has Str $.code;
JSTOWE/XML-Class
…/060-simple-content.t :65:
has Str $.code;
JSTOWE/XML-Class
…/060-simple-content.t :68:
has Str $.code;
JSTOWE/XML-Class
…/060-simple-content.t :77:
is $in.code, "FR", "code is right";
JSTOWE/XML-Class
…/060-simple-content.t :82:
is $in.currency.code, 'EUR', 'currency/@code';
JSTOWE/XML-Class
…/060-simple-content.t :89:
ok $city.code.defined, "city.code defined { $city.code }";
JSTOWE/XML-Class
…/065-country.t :15:
is $in.code, "FR", "code is right";
JSTOWE/XML-Class
…/065-country.t :20:
is $in.currency.code, 'EUR', 'currency/@code';
JSTOWE/XML-Class
…/065-country.t :27:
ok $city.code.defined, "city.code defined { $city.code }";
JSTOWE/XML-Class
…/Country.pm :15:
has Str $.code;
JSTOWE/XML-Class
…/Country.pm :20:
has Str $.code;
JSTOWE/XML-Class
…/Country.pm :23:
has Str $.code;
MARTIMM/BSON
…/701-decoder.t :39:
is( $d1.code, $BSON::Decoder::DOUBLE, 'BSON type: Double');
MARTIMM/BSON
…/701-decoder.t :53:
is( $d1.code, $BSON::Decoder::STRING, 'BSON type: String');
MARTIMM/BSON
…/Decoder.pm :173:
has Int $.code;
MARTIMM/GTK-V3
…/GError.pm6 :15:
has int32 $.code;
MARTIMM/MongoDB
…/Log.pm6 :215:
if ?$cf and $cf.line == 1 and $cf.code ~~ Mu {
MARTIMM/MongoDB
…/Log.pm6 :222:
if ?$cf and $cf.code.^can('name') and $cf.code.name eq 'THREAD-ENTRY' {
MARTIMM/MongoDB
…/Log.pm6 :228:
#note "Code block: ", $cf.code;
MARTIMM/MongoDB
…/Log.pm6 :229:
if ?$cf and $type ~~ Sub and ?$cf.code
MARTIMM/MongoDB
…/Log.pm6 :230:
and $cf.code.name ~~ m/[trace|debug|info|warn|error|fatal] '-message'/ {
MARTIMM/MongoDB
…/Log.pm6 :236:
next if $cf.code ~~ $type and $cf.code.name ~~ m/dispatch/;
MARTIMM/MongoDB
…/Log.pm6 :237:
last if $cf.code ~~ $type;
MARTIMM/MongoDB
…/Log.pm6 :267:
$method = $cf.code.name // '';
NINE/Inline-Perl5
…/Extension.pm6 :69:
callframe(1).code ~~ Inline::Perl5::Caller
NINE/Inline-Perl5
…/Parent.pm6 :34:
callframe(1).code ~~ Inline::Perl5::Caller
SAMGWISE/PowerNap
…/PowerNap.pm6 :51:
has Int $.code;
SAMGWISE/PowerNap
…/Controller.t :16:
is $controller.dispatch-verb(PowerNap::Verb::GET, %()).code, 501, "Default controller error is 501";
SAMGWISE/PowerNap
…/Controller.t :34:
is $r.code, 200, "Response 200";
SAMGWISE/PowerNap
…/Controller.t :41:
is $r.code, 404, "Response 404";
SAMGWISE/PowerNap
…/Controller.t :48:
is $r.code, 501, "Response 501";
SAMGWISE/PowerNap
…/Controller.t :55:
is $r.code, 501, "Response 501";
SCIMON/Test-HTTP-Server
…/README.md :25:
is @events[0].code, 200, "Expected response code";
SCIMON/Test-HTTP-Server
…/Server.pm6 :89:
is @events[0].code, 200, "Expected response code";
SCIMON/Test-HTTP-Server
…/Event.pm6 :6:
has Int $.code;
SCIMON/Test-HTTP-Server
…/02-event.t :8:
is $event.code, 404, "Code as expected";
SCIMON/Test-HTTP-Server
…/03-empty-folder.t :23:
is $response.code, 404, "Empty folder gives a 404 on requests";
SCIMON/Test-HTTP-Server
…/03-empty-folder.t :33:
is @events[0].code, 404, "Expected response code";
SCIMON/Test-HTTP-Server
…/03-empty-folder.t :39:
is $response.code, 404, "Empty folder gives a 404 on requests";
SCIMON/Test-HTTP-Server
…/03-empty-folder.t :45:
is @events[0].code, 404, "Expected response code";
SCIMON/Test-HTTP-Server
…/03-empty-folder.t :49:
is $response.code, 404, "Empty folder gives a 404 on requests";
SCIMON/Test-HTTP-Server
…/03-empty-folder.t :55:
is @events[0].code, 404, "Expected response code";
SCIMON/Test-HTTP-Server
…/04-simple-files.t :22:
is $response.code, 200, "File exists. So it's a 200";
SCIMON/Test-HTTP-Server
…/04-simple-files.t :29:
is @events[0].code, 200, "Expected response code";
TADZIK/Geo-Coder-OpenCage
…/Response.pm :4:
has Int $.code;
TITSUKI/App-AizuOnlineJudge
…/BasicCourse.pm6 :7:
has $.code;
TITSUKI/App-AizuOnlineJudge
…/IntroductionCourse.pm6 :7:
has $.code;
UFOBAT/Bailador
…/Bailador.pm :106:
app.response.code = $code;
UFOBAT/Bailador
…/App.pm :178:
status => self.response.code,
UFOBAT/Bailador
…/App.pm :211:
self.response.code = $status if $status;
UFOBAT/Bailador
…/App.pm :220:
# self.response.code = $code;
UFOBAT/Bailador
…/App.pm :262:
:extra-fields( Hash.new( ( $env.kv, :HTTP_CODE(self.response.code) ) ) ),
UFOBAT/Bailador
…/App.pm :353:
my $http-code = self.response.code;
UFOBAT/Bailador
…/Context.pm :17:
$!response.code = 200;
UFOBAT/Bailador
…/Response.pm :6:
has $.code is rw;
UFOBAT/Bailador
…/Response.pm :14:
[ $.code, [ @headers ], Supply.from-list(@.content) ]
UFOBAT/Bailador
…/AutoHead.pm :6:
has Callable $.code is required;
UFOBAT/Bailador
…/AutoHead.pm :13:
$.code.($match);
UFOBAT/Bailador
…/Simple.pm :6:
has Callable $.code is required;
UFOBAT/Bailador
…/Simple.pm :13:
$.code.(| $match.list);
UFOBAT/Temp-Path
…/Path.pm6 :30:
rand, $*PROGRAM.basename, (try callframe(3).code.line)||'',
UGEXE/zef
…/P6CReporter.pm6 :47:
:codename($*PERL.compiler.codename),
VRURG/AttrX-Mooish
…/010-base.t :154:
has &.code;
VRURG/AttrX-Mooish
…/010-base.t :161:
ok ($inst.fubar.WHAT === $inst.code.WHAT), "initial callable attribute type";
VRURG/AttrX-Mooish
…/010-base.t :178:
ok ($inst.fubar.WHAT === $inst.code.WHAT), "re-create: callable attribute type preserved";
VRURG/Cro-RPC-JSON
…/Exception.pm6 :42:
has Int $.code is required where * ~~ -32099..-32000;
VRURG/Cro-RPC-JSON
…/Exception.pm6 :43:
method jrpc-code { $.code }
VRURG/Cro-RPC-JSON
…/Handler.pm6 :6:
has Code $.code;
VRURG/Cro-RPC-JSON
…/Message.pm6 :127:
has JRPCErrCode $.code is required;
VRURG/OO-Plugin
…/Manager.pm6 :1063:
next unless .code.^can('package');
WARRINGD/PDF-Class
…/pdf-info.p6 :47:
my UInt $size = $input.codes;
Altai-man/perl6-Compress-Bzip2
…/Bzip2.pm6 :9:
has $.code;
Bailador/Bailador
…/Bailador.pm :106:
app.response.code = $code;
Bailador/Bailador
…/App.pm :178:
status => self.response.code,
Bailador/Bailador
…/App.pm :211:
self.response.code = $status if $status;
Bailador/Bailador
…/App.pm :220:
# self.response.code = $code;
Bailador/Bailador
…/App.pm :262:
:extra-fields( Hash.new( ( $env.kv, :HTTP_CODE(self.response.code) ) ) ),
Bailador/Bailador
…/App.pm :353:
my $http-code = self.response.code;
Bailador/Bailador
…/Context.pm :17:
$!response.code = 200;
Bailador/Bailador
…/Response.pm :6:
has $.code is rw;
Bailador/Bailador
…/Response.pm :14:
[ $.code, [ @headers ], Supply.from-list(@.content) ]
Bailador/Bailador
…/AutoHead.pm :6:
has Callable $.code is required;
Bailador/Bailador
…/AutoHead.pm :13:
$.code.($match);
Bailador/Bailador
…/Simple.pm :6:
has Callable $.code is required;
Bailador/Bailador
…/Simple.pm :13:
$.code.(| $match.list);
CurtTilmes/perl6-libcurl
…/MultiHandle.pod6 :62:
=item has uint32 $.code
CurtTilmes/perl6-libcurl
…/LibCurl::MultiHandle.md :65:
* has uint32 $.code
CurtTilmes/perl6-libcurl
…/EasyHandle.pm6 :534:
has Int $.code;
CurtTilmes/perl6-libcurl
…/Multi.pm6 :101:
$msg.code == CURLE_OK
CurtTilmes/perl6-libcurl
…/Multi.pm6 :103:
!! X::LibCurl.new(code => $msg.code));
CurtTilmes/perl6-libcurl
…/MultiHandle.pm6 :40:
has uint32 $.code;
Demayl/perl6-Email-Valid
…/Valid.pm6 :60:
token email { <mailbox><?{$/<mailbox>.codes <= $mailbox_max_length}> '@' <domain><?{$/<domain>.codes <= $max_length - $mailbox_max_length - 1}> }
MARTIMM/BSON
…/701-decoder.t :39:
is( $d1.code, $BSON::Decoder::DOUBLE, 'BSON type: Double');
MARTIMM/BSON
…/701-decoder.t :53:
is( $d1.code, $BSON::Decoder::STRING, 'BSON type: String');
MARTIMM/BSON
…/Decoder.pm :173:
has Int $.code;
MARTIMM/mongo-perl6-driver
…/Log.pm6 :210:
if ?$cf and $cf.line == 1 and $cf.code ~~ Mu {
MARTIMM/mongo-perl6-driver
…/Log.pm6 :217:
if ?$cf and $cf.code.^can('name') and $cf.code.name eq 'THREAD-ENTRY' {
MARTIMM/mongo-perl6-driver
…/Log.pm6 :224:
and $cf.code.name ~~ m/[trace|debug|info|warn|error|fatal] '-message'/ {
MARTIMM/mongo-perl6-driver
…/Log.pm6 :230:
next if $cf.code ~~ $type and $cf.code.name ~~ m/dispatch/;
MARTIMM/mongo-perl6-driver
…/Log.pm6 :231:
last if $cf.code ~~ $type;
MARTIMM/mongo-perl6-driver
…/Log.pm6 :258:
$method = $cf.code.name // '';
MattOates/BioInfo
…/Seq.pm6 :7:
$.sequence.codes;
Perl6-Noise-Gang/Audio-PortAudio
…/PortAudio.pm :704:
has Int $.code is required;
Perl6-Noise-Gang/Audio-PortMIDI
…/PortMIDI.pm :652:
has Int $.code is required;
PerlGameDev/SDL6
…/Structures.pm6 :210:
has int32 $.code;
Uladox/Editscr-Uggedit
…/Uggedit.pm :66:
has $.codeAsField is rw = False;
araraloren/Net-FTP
…/FTP.pm6 :561:
say $ftp.code();
avuserow/perl6-webservice-lastfm
…/Lastfm.pm6 :10:
has $.code;
avuserow/perl6-webservice-lastfm
…/Lastfm.pm6 :13:
"Last.fm API error $.code: $.text"
azawawi/farabi6
…/codemirror.js :7984:
return e_defaultPrevented(e) || e.codemirrorIgnore;
azawawi/farabi6
…/gfm.js :17:
state.code = false;
azawawi/farabi6
…/gfm.js :30:
code: s.code,
azawawi/farabi6
…/gfm.js :31:
codeBlock: s.codeBlock,
azawawi/farabi6
…/gfm.js :39:
if (state.codeBlock) {
azawawi/farabi6
…/gfm.js :41:
state.codeBlock = false;
azawawi/farabi6
…/gfm.js :48:
state.code = false;
azawawi/farabi6
…/gfm.js :52:
state.codeBlock = true;
azawawi/farabi6
…/gfm.js :61:
if (!state.code) {
azawawi/farabi6
…/gfm.js :63:
state.code = true;
azawawi/farabi6
…/gfm.js :66:
state.code = false;
azawawi/farabi6
…/gfm.js :70:
} else if (state.code) {
azawawi/farabi6
…/markdown.js :183:
state.code = true;
azawawi/farabi6
…/markdown.js :219:
state.code = true;
azawawi/farabi6
…/markdown.js :221:
state.code = false;
azawawi/farabi6
…/markdown.js :273:
if (state.code) { styles.push(code); }
azawawi/farabi6
…/markdown.js :377:
if (!state.code) {
azawawi/farabi6
…/markdown.js :379:
state.code = true;
azawawi/farabi6
…/markdown.js :383:
state.code = false;
azawawi/farabi6
…/markdown.js :389:
} else if (state.code) {
azawawi/farabi6
…/markdown.js :729:
// Reset state.code
azawawi/farabi6
…/markdown.js :730:
state.code = false;
azawawi/farabi6
…/icon.min.css :10:
*/@font-face{font-family:Icons;src:url(../themes/default/assets/fonts/icons.eot);src:url(../themes/default/assets/fonts/icons.eot?#iefix) format('em…
azawawi/farabi6
…/semantic.min.css :11:
@import 'https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic\&subset=latin';\*,:after,:before{box-sizing:inherit}html{box-sizing:b…
azawawi/perl6-electron
…/rpc.js :77:
if (res.error.code !== -32601)
azawawi/perl6-electron
…/rpc.js :106:
if (res.error.code !== -32600)
azawawi/perl6-electron
…/rpc.js :135:
if (res.error.code !== -32600)
azawawi/perl6-electron
…/rpc.js :165:
if (res.error.code !== -32600)
azawawi/perl6-electron
…/rpc.js :308:
if (res.error.code !== -32602)
azawawi/perl6-electron
…/rpc.js :379:
if (res.error.code !== -32600)
azawawi/perl6-electron
…/rpc.js :408:
if (res.error.code !== -32600)
azawawi/perl6-electron
…/rpc.js :438:
if (r.error.code !== -32600)
azawawi/perl6-electron
…/rpc.js :554:
if (r.error.code !== -32601)
azawawi/perl6-electron
…/rpc.js :565:
if (r.error.code !== -32600)
azawawi/perl6-gtk-scintilla
…/ScintillaCocoa.mm :1103:
surfaceWindow->SetUnicodeMode(SC_CP_UTF8 == ct.codePage);
azawawi/perl6-gtk-scintilla
…/ScintillaCocoa.mm :1104:
surfaceWindow->SetDBCSMode(ct.codePage);
azawawi/perl6-gtk-scintilla
…/ScintillaCocoa.mm :1323:
CFStringEncoding encoding = EncodingFromCharacterSet(selectedText.codePage == SC_CP_UTF8,
azawawi/perl6-gtk-scintilla
…/ScintillaCocoa.mm :1605:
CFStringEncoding encoding = EncodingFromCharacterSet(selectedText.codePage == SC_CP_UTF8,
azawawi/perl6-gtk-scintilla
…/ScintillaCocoa.mm :2101:
if (scn.nmhdr.code == SCN_UPDATEUI) {
azawawi/perl6-gtk-scintilla
…/ScintillaCocoa.mm :2117:
scn.nmhdr.code = SCN_URIDROPPED;
azawawi/perl6-gtk-scintilla
…/ScintillaView.mm :1403:
if (scn->nmhdr.code != SCN_ZOOM && scn->nmhdr.code != SCN_UPDATEUI)
azawawi/perl6-gtk-scintilla
…/ScintillaView.mm :1407:
switch (scn->nmhdr.code)
azawawi/perl6-gtk-scintilla
…/ScintillaRelated.html :348:
<a href="http://www.codejoin.com/radon/">RAD.On++</a>
azawawi/perl6-gtk-scintilla
…/ScintillaRelated.html :471:
<a href="http://www.codeguru.com/">CodeGuru</a> has source code for several Win32 MFC based
azawawi/perl6-gtk-scintilla
…/ScintillaUsage.html :219:
class='S10'>-&gt;</span><span class='S11'>nmhdr.code</span><span class='S10'>)</span><span
azawawi/perl6-gtk-scintilla
…/ScintillaGTK.cxx :1109:
scn.nmhdr.code = SCN_KEY;
azawawi/perl6-gtk-scintilla
…/ScintillaGTK.cxx :1118:
scn.nmhdr.code = SCN_URIDROPPED;
azawawi/perl6-gtk-scintilla
…/ScintillaGTKAccessible.cxx :855:
switch (nt->nmhdr.code) {
azawawi/perl6-gtk-scintilla
…/ScintillaEditBase.cpp :671:
switch (scn.nmhdr.code) {
azawawi/perl6-gtk-scintilla
…/ScintillaQt.cpp :179:
if (selectedText.codePage == SC_CP_UTF8) {
azawawi/perl6-gtk-scintilla
…/testsepq.py :133:
if scn.nmhdr.code == sci.SCN_CHARADDED:
azawawi/perl6-gtk-scintilla
…/testsepq.py :135:
elif scn.nmhdr.code == sci.SCN_SAVEPOINTREACHED:
azawawi/perl6-gtk-scintilla
…/testsepq.py :137:
elif scn.nmhdr.code == sci.SCN_SAVEPOINTLEFT:
azawawi/perl6-gtk-scintilla
…/testsepq.py :139:
elif scn.nmhdr.code == sci.SCN_MODIFIED:
azawawi/perl6-gtk-scintilla
…/testsepq.py :141:
elif scn.nmhdr.code == sci.SCN_UPDATEUI:
azawawi/perl6-gtk-scintilla
…/testsepq.py :143:
elif scn.nmhdr.code == sci.SCN_PAINTED:
azawawi/perl6-gtk-scintilla
…/testsepq.py :147:
print "Notification", scn.nmhdr.code
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2294:
scn.nmhdr.code = focus ? SCN_FOCUSIN : SCN_FOCUSOUT;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2304:
scn.nmhdr.code = SCN_STYLENEEDED;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2322:
scn.nmhdr.code = SCN_CHARADDED;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2330:
scn.nmhdr.code = SCN_SAVEPOINTREACHED;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2332:
scn.nmhdr.code = SCN_SAVEPOINTLEFT;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2339:
scn.nmhdr.code = SCN_MODIFYATTEMPTRO;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2345:
scn.nmhdr.code = SCN_DOUBLECLICK;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2358:
scn.nmhdr.code = SCN_HOTSPOTDOUBLECLICK;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2370:
scn.nmhdr.code = SCN_HOTSPOTCLICK;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2382:
scn.nmhdr.code = SCN_HOTSPOTRELEASECLICK;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2395:
scn.nmhdr.code = SCN_UPDATEUI;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2406:
scn.nmhdr.code = SCN_PAINTED;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2415:
scn.nmhdr.code = click ? SCN_INDICATORCLICK : SCN_INDICATORRELEASE;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2453:
scn.nmhdr.code = SCN_MARGINCLICK;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2473:
scn.nmhdr.code = SCN_MARGINRIGHTCLICK;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2486:
scn.nmhdr.code = SCN_NEEDSHOWN;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2494:
scn.nmhdr.code = state ? SCN_DWELLSTART : SCN_DWELLEND;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2503:
scn.nmhdr.code = SCN_ZOOM;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2702:
scn.nmhdr.code = SCN_MODIFIED;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2844:
scn.nmhdr.code = SCN_MACRORECORD;
azawawi/perl6-gtk-scintilla
…/Editor.h :93:
Copy(other.s, other.codePage, other.characterSet, other.rectangular, other.lineCopy);
azawawi/perl6-gtk-scintilla
…/ScintillaBase.cxx :325:
scn.nmhdr.code = SCN_AUTOCCANCELLED;
azawawi/perl6-gtk-scintilla
…/ScintillaBase.cxx :361:
scn.nmhdr.code = SCN_AUTOCCHARDELETED;
azawawi/perl6-gtk-scintilla
…/ScintillaBase.cxx :378:
scn.nmhdr.code = listType > 0 ? SCN_USERLISTSELECTION : SCN_AUTOCSELECTION;
azawawi/perl6-gtk-scintilla
…/ScintillaBase.cxx :405:
scn.nmhdr.code = SCN_AUTOCCOMPLETED;
azawawi/perl6-gtk-scintilla
…/ScintillaBase.cxx :476:
scn.nmhdr.code = SCN_CALLTIPCLICK;
azawawi/perl6-gtk-scintilla
…/gi-test.py :12:
if (scn.nmhdr.code == 2001): # SCN_CHARADDED
azawawi/perl6-gtk-scintilla
…/gi-test.py :14:
elif (scn.nmhdr.code == 2008): # SCN_MODIFIED
azawawi/perl6-gtk-scintilla
…/gi-test.py :17:
print ("sci-notify: id: %d, scn.nmhdr.code: %d" % (id, scn.nmhdr.code))
azawawi/perl6-gtk-scintilla
…/ScintillaWin.cxx :2789:
selectedText.characterSet, selectedText.codePage);
azawawi/perl6-gtk-scintilla
…/ScintillaWin.cxx :3335:
surfaceWindow->SetUnicodeMode(SC_CP_UTF8 == sciThis->ct.codePage);
azawawi/perl6-gtk-scintilla
…/ScintillaWin.cxx :3336:
surfaceWindow->SetDBCSMode(sciThis->ct.codePage);
bbkr/jsonrpc
…/RPC.pm6 :12:
has Int $.code;
bbkr/jsonrpc
…/RPC.pm6 :24:
my $error = $.message ~ ' (' ~ $.code ~ ')';
bbkr/jsonrpc
…/RPC.pm6 :33:
'code' => $.code,
bduggan/p6-log-async
…/README.md :106:
$fh.say: "{ $m<frame>.file } { $m<frame>.line } { $m<frame>.code.name }: $m<msg>"
bduggan/p6-log-async
…/14-frame.t :13:
$fh.say: "{ $m<frame>.file } { $m<frame>.line } { $m<frame>.code.name }: $m<msg>"
cosimo/perl6-facter
…/Resolution.pm :21:
has $.code is rw;
cosimo/perl6-facter
…/Resolution.pm :126:
$.code = $string;
cosimo/perl6-facter
…/Resolution.pm :129:
$.code = $block;
cosimo/perl6-facter
…/Resolution.pm :150:
if ! $.code and ! $.interpreter {
cosimo/perl6-facter
…/Resolution.pm :161:
if "Sub()" eq $.code.WHAT {
cosimo/perl6-facter
…/Resolution.pm :162:
self.debug(" Running block $.code");
cosimo/perl6-facter
…/Resolution.pm :163:
$result = $.code();
cosimo/perl6-facter
…/Resolution.pm :165:
self.debug(" Running command $.code through $.interpreter");
cosimo/perl6-facter
…/Resolution.pm :166:
$result = Facter::Util::Resolution.exec($.code, $.interpreter);
edumentab/p6-app-moarvm-debug
…/moar-remote :107:
my $result = await $remote.coderef-handle($thread, $1.Int.self);
fayland/perl6-WebService-GitHub
…/Role.pm :142:
if $res.code == 304 {
gabrielash/p6-net-jupyter
…/kernel.pl :82:
my $code = $recv.code;
gabrielash/p6-net-jupyter
…/Executer.pm :44:
has Str $.code is required;
gabrielash/perl6-zmq
…/11.t :97:
ok $rc.encode('UTF-8').bytes == $lsent, "message receive with correct length $lsent = {$rc.codes }" ;
jnthn/rakudo-debugger
…/CommandLine.pm :699:
if .code && .code.name eq '&fail' {
jonathanstowe/WebService-Soundcloud
…/Soundcloud.pm :545:
my $code = $response.code();
jonathanstowe/XML-Class
…/060-simple-content.t :60:
has Str $.code;
jonathanstowe/XML-Class
…/060-simple-content.t :65:
has Str $.code;
jonathanstowe/XML-Class
…/060-simple-content.t :68:
has Str $.code;
jonathanstowe/XML-Class
…/060-simple-content.t :77:
is $in.code, "FR", "code is right";
jonathanstowe/XML-Class
…/060-simple-content.t :82:
is $in.currency.code, 'EUR', 'currency/@code';
jonathanstowe/XML-Class
…/060-simple-content.t :89:
ok $city.code.defined, "city.code defined { $city.code }";
jonathanstowe/XML-Class
…/065-country.t :15:
is $in.code, "FR", "code is right";
jonathanstowe/XML-Class
…/065-country.t :20:
is $in.currency.code, 'EUR', 'currency/@code';
jonathanstowe/XML-Class
…/065-country.t :27:
ok $city.code.defined, "city.code defined { $city.code }";
jonathanstowe/XML-Class
…/Country.pm :15:
has Str $.code;
jonathanstowe/XML-Class
…/Country.pm :20:
has Str $.code;
jonathanstowe/XML-Class
…/Country.pm :23:
has Str $.code;
jpve/perl6-net-packet
…/TODO.md :11:
`Net::Packet::ICMP` | `$.type` and `$.code` should be enums.
jpve/perl6-net-packet
…/ALL.md :652:
$.code is rw is Int
jpve/perl6-net-packet
…/ALL.md :667:
combinations of $.type and $.code, as per ICMP specification, else it dies.
jpve/perl6-net-packet
…/ALL.md :674:
combinations of $.type and $.code, as per ICMP specification, else it dies.
jpve/perl6-net-packet
…/Net-Packet-ICMP.md :43:
$.code is rw is Int
jpve/perl6-net-packet
…/Net-Packet-ICMP.md :58:
combinations of $.type and $.code, as per ICMP specification, else it dies.
jpve/perl6-net-packet
…/Net-Packet-ICMP.md :65:
combinations of $.type and $.code, as per ICMP specification, else it dies.
jpve/perl6-net-packet
…/ICMP.pm6 :44:
$.code is rw is Int
jpve/perl6-net-packet
…/ICMP.pm6 :54:
has Int $.code is rw;
jpve/perl6-net-packet
…/ICMP.pm6 :84:
$.code = $.frame[1];
jpve/perl6-net-packet
…/ICMP.pm6 :97:
combinations of $.type and $.code, as per ICMP specification, else it dies.
jpve/perl6-net-packet
…/ICMP.pm6 :104:
die("Cannot get/set identifier field in header for this combination of \$.type ($.type) and \$.code ($.code)")
jpve/perl6-net-packet
…/ICMP.pm6 :105:
if !($.code == 0 && ($.type ~~ (0, 8).any));
jpve/perl6-net-packet
…/ICMP.pm6 :124:
combinations of $.type and $.code, as per ICMP specification, else it dies.
jpve/perl6-net-packet
…/ICMP.pm6 :131:
die("Cannot get/set sequence number field in header for this combination of \$.type ($.type) and \$.code ($.code)")
jpve/perl6-net-packet
…/ICMP.pm6 :132:
if !($.code == 0 && ($.type ~~ (0, 8).any));
jpve/perl6-net-packet
…/ICMP.t :33:
is $icmp.code, $code_Int,
jsimonet/IRC-Client-Plugin-UserPoints
…/UserPoints.pm6 :105:
if $e.channel.codes + $e.nick.codes + 2 + $response.codes + "$k: $v, ".codes + 20 > 512 {
jsimonet/log-any
…/Any.pm6 :122:
if $b.code ~~ Routine {
jsimonet/log-any
…/Any.pm6 :123:
if $b.code.package.^name ~~ /^ 'Log::Any' | ^ 'Backtrace' / {
jsimonet/log-any
…/Any.pm6 :126:
$category = $b.code.package.^name;
jsimonet/log-any
…/Any.pm6 :161:
if $b.code ~~ Routine {
jsimonet/log-any
…/Any.pm6 :162:
if $b.code.package.^name ~~ /^ 'Log::Any' | ^ 'Backtrace' / {
jsimonet/log-any
…/Any.pm6 :165:
$category = $b.code.package.^name;
lestrrat/p6-Crust-Middleware-Session
…/02-p6sgi-simple.t :39:
if !is $res.code, 200 {
lestrrat/p6-Crust-Middleware-Session
…/02-p6sgi-simple.t :63:
if !is $res.code, 200 {
lestrrat/p6-Crust-Middleware-Session
…/02-p6sgi-simple.t :79:
if !is $res.code, 200 {
lestrrat/p6-Crust-Middleware-Session
…/02-p6sgi-simple.t :96:
if !is $res.code, 200 {
lestrrat/p6-Crust-Middleware-Session
…/02-p6sgi-simple.t :109:
if !is $res.code, 200 {
lestrrat/p6-Crust-Middleware-Session
…/02-p6sgi-simple.t :121:
if !is $res.code, 200 {
matiaslina/perl6-matrix-client
…/Exception.pm6 :3:
has $.code;
matiaslina/perl6-matrix-client
…/Room.pm6 :18:
.code ~~ /M_NOT_FOUND/
p6-pdf/PDF-Content-p6
…/images.t :24:
is $jpeg.encoded.codes, $jpeg<Length>, 'jpeg encoded length';
p6-pdf/PDF-Content-p6
…/images.t :39:
is $gif.encoded.codes, $gif<Length>, 'gif encoded length';
p6-pdf/PDF-Grammar-p6
…/Changes :73:
- tweaked ind-obj-nibble rule to use .codes rather than .chars to compute
p6-pdf/PDF-Grammar-p6
…/Actions.pm :131:
%stream.push: 'start' => (~$/).codes;
p6-pdf/PDF-Grammar-p6
…/pdf-regex.t :210:
", $content3.codes, $content3;
p6-pdf/PDF-Lite-p6
…/README.md :298:
my $size = $xobject.encoded.codes;
p6-pdf/PDF-p6
…/PDF.pm :115:
my Numeric $offset = $.reader.input.codes + Preamble.codes;
p6-pdf/PDF-p6
…/Stream.pm :33:
self<Length> = .codes with $!encoded;
p6-pdf/PDF-p6
…/Stream.pm :41:
self<Length> //= .codes with $!encoded;
p6-pdf/PDF-p6
…/Stream.pm :47:
self<Length> = .codes with $stream;
p6-pdf/PDF-p6
…/Stream.pm :110:
self<Length> = $!decoded.codes;
p6-pdf/PDF-p6
…/ObjStm.pm :57:
@idx.push: $objects-str.codes;
p6-pdf/PDF-p6
…/ObjStm.pm :61:
self<First> = idx-str.codes + 1;
p6-pdf/PDF-p6
…/ObjStm.pm :86:
!! bytes.codes;
p6-pdf/PDF-p6
…/ObjStm.pm :88:
die X::PDF::ObjStm::Decode.new( :$.obj-num, :$.gen-num, :details("Index offset {begin} exceeds decoded data length {bytes.codes}"))
p6-pdf/PDF-p6
…/ObjStm.pm :89:
if begin > bytes.codes;
p6-pdf/PDF-p6
…/Blob.pm :8:
my UInt \from = $from-whatever( $.codes );
p6-pdf/PDF-p6
…/Blob.pm :11:
multi method substr(Int $from, UInt $len = $.codes - $from) is default { self.subbuf($from, $len).decode("latin-1") }
p6-pdf/PDF-p6
…/AST.pm :31:
$ast<dict><Length> = %( :int(.codes) )
p6-pdf/PDF-p6
…/ASCII85.pm :69:
my $padding = -$str.codes % 5;
p6-pdf/PDF-p6
…/Handle.pm :10:
has UInt $.codes is rw;
p6-pdf/PDF-p6
…/Handle.pm :27:
multi method subbuf( UInt $from!, UInt $length = $.codes - $from + 1 --> Blob) {
p6-pdf/PDF-p6
…/Str.pm :15:
method read(UInt $n = $.codes - $!pos) {
p6-pdf/PDF-p6
…/Str.pm :16:
my \n = min($n, $.codes - $!pos);
p6-pdf/PDF-p6
…/Str.pm :22:
$!pos = min($n, $.codes);
p6-pdf/PDF-p6
…/Str.pm :25:
$!pos = min($!pos + $n, $.codes);
p6-pdf/PDF-p6
…/Str.pm :28:
$!pos = max(0, $.codes - $n);
p6-pdf/PDF-p6
…/Str.pm :31:
my \codes = $.codes;
p6-pdf/PDF-p6
…/Str.pm :36:
method eof { $!pos >= $.codes }
p6-pdf/PDF-p6
…/Reader.pm :604:
my UInt \tail-bytes = min(1024, $!input.codes);
p6-pdf/PDF-p6
…/Reader.pm :620:
my UInt \input-bytes = $!input.codes;
p6-pdf/PDF-p6
…/Reader.pm :724:
dict<Length> = :int(stream<encoded>.codes)
p6-pdf/PDF-p6
…/Writer.pm :62:
$!offset += trailer-bytes.codes + 2 * "\n".codes;
p6-pdf/PDF-p6
…/Writer.pm :91:
$!offset += bytes.codes + 1;
p6-pdf/PDF-p6
…/Writer.pm :108:
$!offset += xref-str.codes;
p6-pdf/PDF-p6
…/Writer.pm :269:
$!offset = header.codes + comment.codes + 2; # since format is byte orientated
p6-pdf/PDF-p6
…/Writer.pm :297:
%dict<Length> //= :int($data.codes);
p6-pdf/PDF-p6
…/cos-tie.t :70:
my UInt $Length = $decoded.codes;
p6-pdf/PDF-p6
…/io-serialize.t :106:
is $stream<encoded>.codes, 54, 'compressed stream length';
p6-pdf/PDF-p6
…/io.t :15:
is $input.codes, $str.codes, "$test .codes";
patch/cldr-list-pm6
…/README.md :41:
CLDR](http://patch.codes/talks/localization-with-the-unicode-cldr/) (video and
patch/cldr-list-pm6
…/List.pm :144:
CLDR|http://patch.codes/talks/localization-with-the-unicode-cldr/> (video and
perl6/DBIish
…/ErrorHandling.pm6 :8:
has $.code;
perl6/doc
…/5to6-perlfunc.pod6 :191:
if $frame.code ~~ Routine {
perl6/doc
…/5to6-perlfunc.pod6 :192:
$subroutine = $frame.code.name;
perl6/doc
…/5to6-perlfunc.pod6 :193:
$package = $frame.code.package;
perl6/doc
…/classtut.pod6 :569:
say $programmer.code_to_solve('halting problem'), " will get ", $programmer.salary(), "\$";
perl6/doc
…/classtut.pod6 :651:
$geek.code_to_solve('P =? NP');
perl6/doc
…/traps.pod6 :634:
If you need the number of codepoints, you should use L«C<.codes>|codes». If you need
perl6/doc
…/traps.pod6 :639:
say 'ǰ̣'.codes; # OUTPUT: «2»
perl6/doc
…/traps.pod6 :1884:
say <þor oðin loki>.map: *.codes; # OUTPUT: «(3 4 4)␤»
perl6/doc
…/traps.pod6 :1889:
<þor oðin loki>.map: *.codes.say; # OUTPUT: «3␤4␤4␤»
perl6/doc
…/Frame.pod6 :47:
say $btf.code;
perl6/doc
…/CallFrame.pod6 :29:
next unless $frame.code ~~ Routine;
perl6/doc
…/CallFrame.pod6 :30:
say $frame.code.package;
perl6/doc
…/Cool.pod6 :770:
say 'møp'.codes; # OUTPUT: «3␤»
perl6/perl6-pod-to-bigpage
…/BigPage.pm6 :132:
.code { font-family: monospace; background-color: #f9f9f9; }
perl6/perl6-pod-to-bigpage
…/html.xhtml :65:
.code { font-family: monospace; background-color: #f9f9f9; }
perl6/whateverable
…/Unicodable.p6 :62:
CATCH { return “{self.codepointify($ord)} (invalid codepoint)” }
perl6/whateverable
…/Unicodable.p6 :79:
self.codepointify($ord), $ord.uniname,
retupmoca/P6-Web-RF
…/RF.pm6 :53:
has Int $.code where { !$_.defined || $_ ~~ any(0, 301, 302, 303, 307, 308) };
retupmoca/P6-Web-RF
…/RF.pm6 :60:
$.code ??
retupmoca/P6-Web-RF
…/RF.pm6 :61:
[ $.code, [ 'Location' => $.url ], []]
retupmoca/p6-Email-Simple
…/Simple.pm6 :39:
my $crlf = $newlines.NFC[^($newlines<b>.code</b>s / 2)]>>.chr.join;
retupmoca/p6-MIME-QuotedPrint
…/QuotedPrint.pm6 :74:
if $seq.codes == 3 {
salortiz/p6-LMDB
…/LMDB.pm6 :148:
has Int $.code;
salortiz/p6-LMDB
…/LMDB.pm6 :548:
if $_.code == MDB_NOTFOUND {
sergot/http-useragent
…/Response.pm6 :9:
has $.code is rw;
sergot/http-useragent
…/Response.pm6 :86:
if self.code == 303 &&
sergot/http-useragent
…/UserAgent.pm6 :170:
if $response.code ~~ /^30<[0123]>/ {
sergot/http-useragent
…/UserAgent.pm6 :182:
given $response.code {
sergot/http-useragent
…/UserAgent.pm6 :469:
$response.code;
sergot/http-useragent
…/050-response.t :58:
is $r.code, 403, "got the code we expected";
sergot/http-useragent
…/050-response.t :75:
is $r.code, 500, "and got a 500 response";
sergot/http-useragent
…/082-exceptions.t :13:
is $res.code, 404, "and a 404";
sergot/http-useragent
…/085-auth.t :20:
is $res.code, 401, "and it's a 401";
sergot/http-useragent
…/085-auth.t :23:
is $res.code, 200, "and it's a 200";
sergot/http-useragent
…/190-issue-116.t :25:
is $res.code , 304, "and it is actually a 304";
skaji/Frinfon
…/01-basic.t :19:
is $res.code, 405;
skids/perl6sum
…/libcrypto.pm6 :12:
has $.code = "undetermined";
skids/perl6sum
…/libcrypto.pm6 :14:
"Error while talking to libcrypto: $.code"
skids/perl6sum
…/libmhash.pm6 :13:
has $.code = "undetermined";
skids/perl6sum
…/libmhash.pm6 :15:
"Error while talking to libmhash: $.code"
skids/perl6sum
…/librhash.pm6 :13:
has $.code = "undetermined";
skids/perl6sum
…/librhash.pm6 :15:
"Error while talking to librhash: $.code"
skids/perl6xproto
…/Protocol.pm6 :136:
self.code-to-human);
skids/perl6xproto
…/Protocol.pm6 :144:
self.human or self.codes{$.status} or nextsame;
skids/perl6xproto
…/Protocol.pm6 :164:
#| Attempts to cast C<.code> to C<Numeric> or returns NaN.
skids/perl6xproto
…/Protocol.pm6 :169:
#| Attempts to cast C<.code> to C<Str> or returns an empty string.
skids/perl6xproto
…/X11.pm6 :76:
("$.protocol protocol error: {self.codes{self.status}}",
skids/perl6xproto
…/X11.pm6 :85:
("{self.codes{self.status}}",
spitsh/spitsh
…/CHANGELOG.md :73:
ok $resp.code == 200, 'code is 200';
spitsh/spitsh
…/DigitalOcean.sp :14:
die "{$self.req-method} {$self.remote-url} {$self.code} {$self.message}\n" ~
spitsh/spitsh
…/HTTP.sp :28:
method is-success? { $self.code.starts-with(2) }
spitsh/spitsh
…/HTTP.sp :29:
method is-redirect? { $self.code.starts-with(3) }
spitsh/spitsh
…/HTTP.sp :30:
method is-client-error? { $self.code.starts-with(4) }
spitsh/spitsh
…/HTTP.sp :31:
method is-server-error? { $self.code.starts-with(5) }
spitsh/spitsh
…/HTTP.sp :32:
method is-error? { $self.code.matches(/^[45]/) }
spitsh/spitsh
…/HTTP.sp :38:
die "{$self.req-method} {$self.remote-url} {$self.code} {$self.message}\n" ~
spitsh/spitsh
…/HTTP.sp :142:
debug "HTTP <== {$response.code} {$response.message} $self", "\c[GLOBE WITH MERIDIANS]";
spitsh/spitsh
…/GET-request.t :9:
ok $resp.code == 200, 'code is 200';
sylvarant/Avro
…/DataFile.pm :117:
my %metahash = 'avro.schema' => $schema.to_json(), 'avro.codec' => ~$codec;
sylvarant/Avro
…/DataFile.pm :173:
has Codec $.codec;
sylvarant/Avro
…/DataFile.pm :198:
given %meta{'avro.codec'} {
sylvarant/Avro
…/DataFile.pm :203:
%meta<avro.codec>:delete;
sylvarant/Avro
…/Encode.pm :121:
unless $schema.size == $str.codes();
sylvarant/Avro
…/Encode.pm :138:
my BlobStream $stream = BlobStream.new(:blob(encode_long($str.codes())));
sylvarant/Avro
…/Encode.pm :139:
$stream.append( pack(template($str.codes()),$str.ords()) );
sylvarant/Avro
…/Schema.pm :504:
$str.codes() == $!size
tadzik/Geo-Coder-OpenCage
…/Response.pm :4:
has Int $.code;
tadzik/Template-Mojo
…/Mojo.pm :109:
has &.code;
tadzik/Template-Mojo
…/Mojo.pm :128:
&.code.(|@a, |%a)
tadzik/panda
…/Reporter.pm :86:
:codename($*PERL.compiler.codename),
titsuki/p6-App-AizuOnlineJudge
…/BasicCourse.pm6 :14:
has $.code;
titsuki/p6-App-AizuOnlineJudge
…/IntroductionCourse.pm6 :14:
has $.code;
tokuhirom/p6-Crust
…/directory.t :24:
is $res.code, 200;
tokuhirom/p6-Crust
…/directory.t :29:
is $res.code, 404;
tokuhirom/p6-Crust
…/directory.t :33:
is $res.code, 301;
tokuhirom/p6-Crust
…/directory.t :37:
is $res.code, 200;
tokuhirom/p6-Crust
…/directory.t :42:
is $res.code, 200;
tokuhirom/p6-Crust
…/directory.t :47:
is $res.code, 403;
tokuhirom/p6-Crust
…/file.t :27:
is $res.code, 200;
tokuhirom/p6-Crust
…/file.t :33:
is $res.code, 200;
tokuhirom/p6-Crust
…/file.t :38:
is $res.code, 404;
tokuhirom/p6-Crust
…/file.t :43:
is $res.code, 404;
tokuhirom/p6-Crust
…/file.t :49:
is $res.code, 403;
tokuhirom/p6-Crust
…/file.t :53:
is $res.code, 403;
tokuhirom/p6-Crust
…/urlmap.t :21:
is $res.code, 200;
tokuhirom/p6-Crust
…/urlmap.t :26:
is $res.code, 200;
tokuhirom/p6-Crust
…/urlmap.t :31:
is $res.code, 200;
tokuhirom/p6-Crust
…/urlmap.t :36:
is $res.code, 200;
tokuhirom/p6-Crust
…/urlmap.t :41:
is $res.code, 404;
tokuhirom/p6-Crust
…/urlmap.t :45:
is $res.code, 200;
tokuhirom/p6-Crust
…/urlmap.t :50:
is $res.code, 200;
tokuhirom/p6-Crust
…/urlmap.t :67:
is $res.code, 404;
tokuhirom/p6-Crust
…/mount.t :38:
is $res.code, 200;
tokuhirom/p6-Crust
…/mount.t :52:
is $res.code, 200;
tokuhirom/p6-Crust
…/auth_basic.t :27:
is $res.code, 401;
tokuhirom/p6-Crust
…/auth_basic.t :33:
is $res.code, 200, "Should succeed";
tokuhirom/p6-Crust
…/auth_basic.t :40:
is $res.code, 200, "Should succeed";
tokuhirom/p6-Crust
…/auth_basic.t :47:
if !is $res.code, 401, "Should fail" {
tokuhirom/p6-Crust
…/reverse-proxy.t :175:
is $res.code, 500;
tokuhirom/p6-Crust
…/reverse-proxy.t :199:
is $res.code, 500;
tokuhirom/p6-Crust
…/reverse-proxy.t :224:
is $res.code, 200;
tokuhirom/p6-Crust
…/static.t :36:
is $res.code, 200;
tokuhirom/p6-Crust
…/static.t :41:
is $res.code, 200;
tokuhirom/p6-Crust
…/static.t :46:
is $res.code, 404;
tokuhirom/p6-Crust
…/static.t :51:
is $res.code, 200;
tokuhirom/p6-Crust
…/hello.t :14:
is $res.code, 200;
tokuhirom/p6-Crust
…/res.t :13:
is $res.code, 404;
tokuhirom/p6-Crust
…/res.t :27:
is $res.code, 200;
tony-o/perl6-encoding-huffman-pp6
…/README.md :19:
The encoding table you'd like to use. Defaults to the HTTP2 spec's predefined huffman table found here
tony-o/perl6-encoding-huffman-pp6
…/PP6.pm6 :265:
my Buf[uint8] $enc .=new((0..($bits.codes/8).ceiling).map({ 0 }));
ufobat/HTTP-Server-Ogre
…/Frame.pm6 :14:
has $.code;
ufobat/perl6-Temp-Path
…/Path.pm6 :30:
rand, $*PROGRAM.basename, (try callframe(3).code.line)||'',
ugexe/zef
…/P6CReporter.pm6 :47:
:codename($*PERL.compiler.codename),
viklund/november
…/Rule.pm :8:
has Code $.code;
whity/perl6-hematite
…/Handler.pm6 :42:
my Int $status = $ctx.response.code;
whity/perl6-hematite
…/001-methods.t :24:
is($res.code, 200, "method { $method }");
whity/perl6-hematite
…/000-static.t :28:
is-deeply($res.code, 404, 'static middleware serving unexistant file');
zoffixznet/perl6-IO-Path-ChildSecure
…/01-operation.t :13:
((try callframe(3).code.line)||''), '_',
zoffixznet/perl6-WWW-vlc-Remote
…/Remote.pm6 :25:
method message { "Network error: {$!res.code} - {$!res.status-line}" }
zoffixznet/perl6-WWW
…/WWW.pm6 :73:
.code == 204 and return ''; # "204 No Content"
zoffixznet/perl6-WWW
…/WWW.pm6 :79:
sub err ($_) { "Error {.code}: {.status-line}" }
zoffixznet/q
…/Actions.pm6 :4:
has Str:D $.code is required;
CIAvash/App-Football
…/Football.pm6 :116:
my @rows = $teams.map: { .name, .short_name, .code, .squad_market_value };
CIAvash/App-Football
…/Football.pm6 :123:
my @rows = $leagues.map: { .name, .code, .season, .current_matchday, .number_of_matchdays, .number_of_teams, .number_of_games };
CIAvash/App-Football
…/FakeFootballData.pm6 :158:
has $.code = 'MCFC';
CIAvash/App-Football
…/FakeFootballData.pm6 :190:
has $.code = 'PL';
CIAvash/App-Football
…/FakeFootballData.pm6 :220:
has $.code = 'PL';
CIAvash/WebService-FootballData
…/League.pm6 :16:
has Str $.code;
CIAvash/WebService-FootballData
…/Team.pm6 :15:
has Str $.code;
CIAvash/WebService-FootballData
…/11-team.t :20:
isa-ok $obj.code, Str;
CIAvash/WebService-FootballData
…/16-league.t :17:
isa-ok $obj.code, Str;
CIAvash/WebService-FootballData
…/17-footballdata.t :25:
is @leagues[0].code, 'BL1', 'League code is correctly set';
CIAvash/WebService-FootballData
…/17-footballdata.t :45:
is $premier_league.code, 'PL', 'Has the correct code';
CIAvash/WebService-FootballData
…/17-footballdata.t :69:
is $bayern.code, 'FCB', 'Has the correct code';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment