Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created July 27, 2019 03:24
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/c3666d09d31c8fdcea4aead2e6196200 to your computer and use it in GitHub Desktop.
Save Whateverable/c3666d09d31c8fdcea4aead2e6196200 to your computer and use it in GitHub Desktop.
greppable6
File Code
perl6-all-modules/README.md This is an attempt to get all Perl 6 modules from the ecosystem into a single
ALOREN/App-FindSource
…/LICENSE :410:
provided under this License. Any attempt otherwise to propagate or
ALOREN/Getopt-Advance
…/fetch-picture.p6 :26:
"t|tempfile=s",
ALOREN/Getopt-Advance
…/02-option.t :26:
$optset.push("source-template=s", "use a template", value => "base" );
ALOREN/Getopt-Advance
…/02-option.t :28:
$optset.append("p|print-code=b;d|debug=b;t|temp=a");
ALOREN/Getopt-Advance
…/02-option.t :75:
'--source-template', 'custom',
ALOREN/Getopt-Advance
…/02-option.t :95:
isa-ok $optset.get('source-template', 's'), Option::String, 'the **source-template** is a String option.';
ALOREN/Getopt-Advance
…/02-option.t :96:
is $optset.get('source-template').value, "custom", "**source-template** is set to 'custom'";
ALOREN/Getopt-Advance
…/02-option.t :101:
ok $optset.remove('t'), 'remove the **t|temp** option.';
ALOREN/Terminal-Table
…/Frame.pm6 :189:
my @temp = Array.new;
ALOREN/Terminal-Table
…/Frame.pm6 :196:
@temp.push(
ALOREN/Terminal-Table
…/Frame.pm6 :229:
for ^+@temp -> $i {
ALOREN/Terminal-Table
…/Frame.pm6 :232:
value => @temp[$i].[0],
ALOREN/Terminal-Table
…/Frame.pm6 :236:
@new-padding.push(@temp[$i].[1].clone());
ALOREN/Terminal-Table
…/Frame.pm6 :302:
my @temp = @!lines;
ALOREN/Terminal-Table
…/Frame.pm6 :304:
@temp.push(String.new(value => "").extend-to(self.max-width()));
ALOREN/Terminal-Table
…/Frame.pm6 :306:
self.clone(lines => @temp);
AZAWAWI/App-Perl6LangServer
…/Perl6LangServer.pm6 :164:
# Create a temporary file for Perl 6 source code buffer
AZAWAWI/App-Perl6LangServer
…/Perl6LangServer.pm6 :165:
my ($file-name,$file-handle) = tempfile(:!unlink);
AZAWAWI/App-Perl6LangServer
…/Perl6LangServer.pm6 :167:
# Remove temporary file when leaving lexical scope
AZAWAWI/App-Perl6LangServer
…/Perl6LangServer.pm6 :175:
# Invoke perl -c temp-filder
AZAWAWI/Inline-Go
…/CHANGELOG.md :20:
- Use proper temporary directory go/gcc build operations.
AZAWAWI/Inline-Go
…/Go.pm6 :18:
has $!temp-dir;
AZAWAWI/Inline-Go
…/Go.pm6 :41:
# Create a temporary build directory
AZAWAWI/Inline-Go
…/Go.pm6 :42:
$!temp-dir = tempdir.IO.add( "perl6-inline-go" )
AZAWAWI/Inline-Go
…/Go.pm6 :43:
unless $!temp-dir.defined;
AZAWAWI/Inline-Go
…/Go.pm6 :44:
$!temp-dir.mkdir;
AZAWAWI/Inline-Go
…/Go.pm6 :45:
my $go-file-name = ~$!temp-dir.add( "foo.go" );
AZAWAWI/Inline-Go
…/Go.pm6 :47:
# Write provided go code into temporay file
AZAWAWI/Inline-Go
…/Go.pm6 :56:
$!so-file-name = ~$!temp-dir.add( "foo.dll" )
AZAWAWI/Inline-Go
…/Go.pm6 :70:
$!temp-dir.add( "foo.c" ).IO.spurt( $foo_c_workaround, :createonly );
AZAWAWI/Inline-Go
…/Go.pm6 :71:
$output = qq:x/cd $!temp-dir && go build -o foo.a -buildmode=c-archive foo.go/;
AZAWAWI/Inline-Go
…/Go.pm6 :72:
$output = qq:x/cd $!temp-dir && gcc -shared -pthread -o foo.dll foo.c foo.a -lWinMM -lntdll -lWS2_32/;
AZAWAWI/Inline-Go
…/Go.pm6 :75:
$!so-file-name = ~$!temp-dir.add( "foo.so" )
AZAWAWI/MagickWand
…/MagickWand.pm6 :138:
my $temp-wand = NewMagickWand;
AZAWAWI/MagickWand
…/MagickWand.pm6 :139:
MagickSetLastIterator($temp-wand);
AZAWAWI/MagickWand
…/MagickWand.pm6 :143:
MagickAddImage($temp-wand, $wand.handle);
AZAWAWI/MagickWand
…/MagickWand.pm6 :144:
MagickSetLastIterator($temp-wand);
AZAWAWI/MagickWand
…/MagickWand.pm6 :148:
MagickSetFirstIterator($temp-wand);
AZAWAWI/MagickWand
…/MagickWand.pm6 :149:
my $cloned-wand = MagickAppendImages($temp-wand, MagickFalse);
AZAWAWI/MagickWand
…/MagickWand.pm6 :152:
DestroyMagickWand( $temp-wand );
AZAWAWI/MagickWand
…/MagickWand.pm6 :329:
my $temp-wand = NewMagickWand;
AZAWAWI/MagickWand
…/MagickWand.pm6 :331:
MagickSetLastIterator($temp-wand);
AZAWAWI/MagickWand
…/MagickWand.pm6 :335:
MagickAddImage($temp-wand, $wand.handle);
AZAWAWI/MagickWand
…/MagickWand.pm6 :336:
MagickSetLastIterator($temp-wand);
AZAWAWI/MagickWand
…/MagickWand.pm6 :340:
MagickSetFirstIterator($temp-wand);
AZAWAWI/MagickWand
…/MagickWand.pm6 :342:
$temp-wand,
AZAWAWI/MagickWand
…/MagickWand.pm6 :351:
DestroyMagickWand( $temp-wand );
AZAWAWI/MagickWand
…/Deprecated.pm6 :286:
DrawPopGraphicContext() destroys the current drawing wand and returns to the previously pushed drawing wand. Multiple drawing wands may exist. It is an error to attempt to pop more drawing wands than have been pushed, and it is proper form to pop all drawing wands which have been pushed.
AZAWAWI/MagickWand
…/DrawingWand.pm6 :2305:
PopDrawingWand() destroys the current drawing wand and returns to the previously pushed drawing wand. Multiple drawing wands may exist. It is an erro…
AZAWAWI/MagickWand
…/Image.pm6 :1126:
MagickDistortImage() distorts an image using various distortion methods, by mapping color lookups of the source image to a new destination image usal…
AZAWAWI/MagickWand
…/Image.pm6 :2791:
MagickLiquidRescaleImage() rescales image with seam carving.MagickBooleanType MagickLiquidRescaleImage(MagickWand \*wand, const size_t columns,const …
AZAWAWI/MagickWand
…/Image.pm6 :3158:
MagickOptimizeImageLayers() compares each image the GIF disposed forms of the previous image in the sequence. From this it attempts to select the smallest cropped image to replace each frame, while preserving the results of the animation.- wand: the magick wand.
AZAWAWI/MagickWand
…/02-magickwand.t :27:
my $temp-file-name = "temp.png";
AZAWAWI/MagickWand
…/02-magickwand.t :28:
ok $o.write($temp-file-name), "write() works";
AZAWAWI/MagickWand
…/02-magickwand.t :29:
ok $temp-file-name.IO ~~ :e, "write() output file exists";
AZAWAWI/MagickWand
…/02-magickwand.t :33:
$temp-file-name.IO.unlink if $temp-file-name.defined;
BRAKMIC/Verge-RPC-Client
…/Client.pm6 :164:
getblocktemplate
BRAKMIC/Verge-RPC-Client
…/Client.pm6 :165:
getblocktemplate
CCWORLD/CCLog
…/LICENSE :173:
except as expressly provided under this License. Any attempt
CHSANCH/Lingua-Stem-Es
…/diffs.txt :6631:
contempla contempl
CHSANCH/Lingua-Stem-Es
…/diffs.txt :6632:
contemplaba contempl
CHSANCH/Lingua-Stem-Es
…/diffs.txt :6633:
contemplación contempl
CHSANCH/Lingua-Stem-Es
…/diffs.txt :6634:
contemplada contempl
CHSANCH/Lingua-Stem-Es
…/diffs.txt :6635:
contempladas contempl
CHSANCH/Lingua-Stem-Es
…/diffs.txt :6636:
contemplado contempl
CHSANCH/Lingua-Stem-Es
…/diffs.txt :6637:
contemplados contempl
CHSANCH/Lingua-Stem-Es
…/diffs.txt :6638:
contemplan contempl
CHSANCH/Lingua-Stem-Es
…/diffs.txt :6639:
contemplando contempl
CHSANCH/Lingua-Stem-Es
…/diffs.txt :6640:
contemplar contempl
CHSANCH/Lingua-Stem-Es
…/diffs.txt :6641:
contemplaron contempl
CHSANCH/Lingua-Stem-Es
…/diffs.txt :6642:
contemplarse contempl
CHSANCH/Lingua-Stem-Es
…/diffs.txt :6643:
contemple contempl
CHSANCH/Lingua-Stem-Es
…/diffs.txt :6644:
contemporánea contemporane
CHSANCH/Lingua-Stem-Es
…/diffs.txt :6645:
contemporáneas contemporan
CHSANCH/Lingua-Stem-Es
…/diffs.txt :6646:
contemporáneo contemporane
CHSANCH/Lingua-Stem-Es
…/diffs.txt :6647:
contemporáneos contemporane
CHSANCH/Lingua-Stem-Es
…/diffs.txt :8747:
destemplada destempl
CHSANCH/Lingua-Stem-Es
…/diffs.txt :8748:
destemplado destempl
CHSANCH/Lingua-Stem-Es
…/diffs.txt :15051:
intempestivamente intempest
CHSANCH/Lingua-Stem-Es
…/diffs.txt :15052:
intempestivo intempest
CHSANCH/Lingua-Stem-Es
…/diffs.txt :21395:
pretemporada pretempor
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26143:
témpano tempan
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26144:
temperamento temperament
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26145:
temperatura temperatur
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26146:
temperaturas temperatur
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26147:
tempestad tempest
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26148:
templado templ
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26149:
templados templ
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26150:
temple templ
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26151:
templete templet
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26152:
templo templ
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26153:
templos templ
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26154:
temporada tempor
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26155:
temporadas tempor
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26156:
temporal temporal
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26157:
temporales temporal
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26158:
temporalmente temporal
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26159:
temprana tempran
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26160:
tempranamente tempran
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26161:
tempranero tempraner
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26162:
temprano tempran
CHSANCH/Lingua-Stem-Es
…/diffs.txt :26163:
tempranos tempran
CHSANCH/Lingua-Stopwords
…/IT.pm6 :30:
sulle sullo suo suoi tanto te tempo terzo ti tra tre triplo tu tua tue tuo tuoi tutti tutto ultimo
CHSANCH/Lingua-Stopwords
…/IT.pm6 :40:
soprattutto sotto stati stato stesso su subito sul sulla tanto te tempo terzo tra tre triplo ultimo
CHSANCH/Lingua-Stopwords
…/PT.pm6 :24:
somente somos sou sua suas são só tal também te tem temos tempo tenha tenham tenhamos tenho tentar
CHSANCH/Lingua-Stopwords
…/PT.pm6 :37:
qual qualquer quando quem quieto quê saber sem ser seu somente são tal também tem tempo tenho tentar
CHSANCH/Lingua-Stopwords
…/it_all.txt :335:
tempo
CHSANCH/Lingua-Stopwords
…/it_ranks-nl.txt :121:
tempo
CHSANCH/Lingua-Stopwords
…/pt_all.txt :236:
tempo
CHSANCH/Lingua-Stopwords
…/pt_ranks-nl.txt :119:
tempo
CTILMES/DB-MySQL
…/README.md :86:
* `:connect-timeout` - timeout in seconds for a connect attempt.
CTILMES/DB-MySQL
…/README.md :88:
* `:read-timeout` - timeout in seconds for each attempt to read
CTILMES/DB-MySQL
…/README.md :91:
* `:write-timeout` - timeout in seconds for each attempt to write to
CTILMES/DB-SQLite
…/README.md :54:
will default to an empty string which causes a private, temporary
CTILMES/DB-SQLite
…/README.md :60:
temporary, in-memory database. Again, this will not be shared across
CTILMES/DB-SQLite
…/SQLite.pm6 :57:
to an empty string which causes a private, temporary on-disk database to be
CTILMES/DB-SQLite
…/SQLite.pm6 :61:
If you specify filename => ':memory' you will get a private, temporary,
CTILMES/LibCurl
…/test0046.t :60:
$HOSTIP FALSE / FALSE 0 ckySession temporary
CTILMES/LibGit2
…/Init.pm6 :27:
has Str $.template-path;
CTILMES/LibGit2
…/Init.pm6 :32:
Bool :$mkdir, Bool :$mkpath, Bool :$external-template,
CTILMES/LibGit2
…/Init.pm6 :36:
Str :$template-path, Str :$initial-head,
CTILMES/LibGit2
…/Init.pm6 :44:
+| ($external-template || $template-path
CTILMES/LibGit2
…/Init.pm6 :53:
$!template-path := $template-path;
CTILMES/LibGit2
…/Init.pm6 :96:
=item B<:external-template> - libgit2 normally uses internal templates to
CTILMES/LibGit2
…/Init.pm6 :97:
initialize a new repo. This flags enables external templates, looking
CTILMES/LibGit2
…/Init.pm6 :98:
the <template_path> from the options if set, or the
CTILMES/LibGit2
…/Init.pm6 :99:
C<init.templatedir> global config if not, or falling back on
CTILMES/LibGit2
…/Init.pm6 :100:
C</usr/share/git-core/templates> if it exists.
CTILMES/LibGit2
…/Init.pm6 :121:
"description" file in the repository, instead of using the template
CTILMES/LibGit2
…/Init.pm6 :124:
=item Str B<:$template-path> - When C<:external-template> is set, this
CTILMES/LibGit2
…/Init.pm6 :125:
contains the path to use for the template directory. If this isn't
CTILMES/LibGit2
…/02-init.t :13:
my $testdir = tempdir;
CTILMES/LibGit2
…/02-init.t :27:
my $testdir = tempdir;
CTILMES/LibGit2
…/02-init.t :39:
my $testdir = tempdir.IO.child('subdir');
CTILMES/LibGit2
…/03-config.t :5:
my ($config_file, $filehandle) = tempfile;
CTILMES/LibGit2
…/04-clone.t :17:
my $repodir = tempdir;
CTILMES/LibGit2
…/04-clone.t :32:
my $gitdir = tempdir;
CTILMES/LibGit2
…/05-reference.t :10:
my $repodir = tempdir;
CTILMES/LibGit2
…/06-tag.t :10:
my $repodir = tempdir;
CTILMES/LibGit2
…/07-remote-fetch.t :10:
my $repodir = tempdir;
CTILMES/LibGit2
…/08-commit.t :10:
my $repodir = tempdir;
CTILMES/LibGit2
…/10-blob.t :7:
my $test-repo-dir = tempdir;
CTILMES/LibGit2
…/11.tree.t :10:
my $repodir = tempdir;
CTILMES/LibGit2
…/13-blame.t :7:
my $testdir = tempdir;
CTILMES/LibGit2
…/14-branch.t :7:
my $testdir = tempdir;
CTILMES/LibGit2
…/15-describe.t :10:
my $repodir = tempdir;
CTILMES/LibGit2
…/16-treebuilder.t :10:
my $repodir = tempdir;
CTILMES/LibGit2
…/18-index.t :10:
my $repodir = tempdir;
CTILMES/LibGit2
…/19-ignore.t :7:
my $repodir = tempdir;
CTILMES/LibGit2
…/20-status.t :7:
my $testdir = tempdir;
CTILMES/LibGit2
…/22-diff.t :7:
my $testdir = tempdir;
CTILMES/LibGit2
…/23-revwalk.t :7:
my $testdir = tempdir;
CTILMES/LibGit2
…/24-checkout.t :7:
my $testdir = tempdir;
CTILMES/LibGit2
…/25-patch.t :7:
my $testdir = tempdir;
CTILMES/LibGit2
…/26-worktree.t :7:
my $testdir = tempdir;
CTILMES/LibGit2
…/26-worktree.t :27:
my $tempdir = tempdir;
CTILMES/LibGit2
…/26-worktree.t :29:
my $worktreedir = ~$tempdir.IO.child('worktree1');
CTILMES/LibGit2
…/29-open.t :7:
my $testdir = tempdir;
CTILMES/LibGit2
…/31-index-add-file.t :7:
my $testdir = tempdir;
CTILMES/LibGit2
…/32-index-add-all.t :7:
my $testdir = tempdir;
CTILMES/LibGit2
…/33-commit.t :7:
my $testdir = tempdir;
CTILMES/LibGit2
…/34-remote-push.t :9:
my $repodir = tempdir;
DARRENF/Test-Declare
…/README.md :120:
* `Test::Declare::Comparisons` - for fuzzy matching including some naive/rudimentary attempts at copying the Test::Deep interface where Perl 6 does not have it builtin.
DARRENF/Test-Declare
…/Declare.pm6 :129:
attempts at copying the L<Test::Deep|https://metacpan.org/pod/Test::Deep\> interface
ELIZABETH/AccountableBagHash
…/README.md :27:
This module makes an `AccountableBagHash` class available that can be used instead of the normal `BagHash`. The only difference with a normal `BagHas…
ELIZABETH/AccountableBagHash
…/README.md :29:
Also exports a `X::BagHash::Acountable` error class that will be thrown if an attempt is made to set the value to below 0.
ELIZABETH/AccountableBagHash
…/AccountableBagHash.pm6 :53:
C<BagHash> is, is that if an attempt is made to set the value of a key to
ELIZABETH/AccountableBagHash
…/AccountableBagHash.pm6 :58:
if an attempt is made to set the value to below 0.
ELIZABETH/Acme-Cow
…/README.md :109:
For the standalone file, take your piece of ASCII art and modify it according to the rules above. Note that the balloon must be flush-left in the template if you choose this method. If the balloon isn't meant to be flush-left in the final output, use its `over()` method.
ELIZABETH/Acme-Cow
…/README.md :111:
For a Perl module, declare that your module is a subclass of `Acme::Cow`. You may do other modifications to the variables in the template, if you wish: many examples are provided with the `Acme::Cow` distribution.
ELIZABETH/Acme-Cow
…/cowpm :9:
my $template = Q:to/EOF/;
ELIZABETH/Acme-Cow
…/cowpm :23:
print Acme::Cow.process_template($template, name => $name.lc, NAME => $name.tc);
ELIZABETH/Acme-Cow
…/Cow.pm6 :47:
self.process_template(
ELIZABETH/Acme-Cow
…/Cow.pm6 :60:
method process_template($text, *%mapper) {
ELIZABETH/Acme-Cow
…/Cow.pm6 :188:
balloon must be flush-left in the template if you choose this method.
ELIZABETH/Acme-Cow
…/Cow.pm6 :194:
modifications to the variables in the template, if you wish:
ELIZABETH/Acme-Cow
…/Example.pm6 :33:
... template goes here ...
ELIZABETH/Acme-Cow
…/Example.pm6 :41:
First, put together your template as described in L<Acme::Cow>.
ELIZABETH/Acme-Cow
…/Example.pm6 :42:
It is recommended that you store this template in a variable.
ELIZABETH/Acme-Cow
…/Example.pm6 :43:
B<Your template should not have tab characters in it.> This will
ELIZABETH/Acme-Cow
…/Example.pm6 :57:
Assuming you stored the template as C<$my_cow> then
ELIZABETH/Hash-Util
…/Util.pm6 :17:
die "Attempt to access disallowed key '$key' in a restricted hash"
ELIZABETH/Hash-Util
…/Util.pm6 :20:
die "Modification of a read-only value attempted"
ELIZABETH/Hash-Util
…/Util.pm6 :28:
die "Attempt to delete $type key '$key' from a restricted hash"
ELIZABETH/Hash-Util
…/lock_hash.t :22:
is $caught, 1, 'did we get an exception for attempting to assign unexisting';
ELIZABETH/Hash-Util
…/lock_hash.t :26:
is $caught, 1, 'did we get an exception for attempting to delete unexisting';
ELIZABETH/Hash-Util
…/lock_keys.t :48:
is $caught, 1, 'did we get an exception for attempting to delete unexisting';
ELIZABETH/Hash-Util
…/lock_value.t :32:
is $caught, 1, 'did we get an exception for attempting to change value of "a"?';
ELIZABETH/List-MoreUtils
…/mode.t :8:
my $lorem = "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliq…
ELIZABETH/List-MoreUtils
…/occurrences.t :8:
my $lorem = "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliq…
ELIZABETH/List-Util
…/README.md :95:
However, this produces a list of temporary integer values as long as the original list of strings, only to reduce it down to a single value again. We can compute the same result more efficiently by using `reduce` with a code block that accumulates lengths by writing this instead as:
ELIZABETH/List-Util
…/Util.pm6 :300:
However, this produces a list of temporary integer values as long as the
ELIZABETH/Map-Agnostic
…/01-basic.t :61:
}, 'attempt deletion of key';
ELIZABETH/Map-Ordered
…/01-basic.t :52:
}, 'attempt deletion of key';
ELIZABETH/Memoize
…/README.md :243:
Note that if the cache is a tied hash, `flush_cache` will attempt to invoke the `CLEAR` method on the hash. If there is no `CLEAR` method, this will cause a run-time error.
ELIZABETH/Memoize
…/Memoize.pm6 :482:
Note that if the cache is a tied hash, C<flush_cache> will attempt to
ELIZABETH/P5caller
…/README.md :92:
or temporary values. Finally, a side effect of the current
ELIZABETH/P5caller
…/P5caller.pm6 :124:
or temporary values. Finally, a side effect of the current
ELIZABETH/P5lc
…/README.md :77:
does not attempt to do titlecase mapping on initial letters. See
ELIZABETH/P5lc
…/P5lc.pm6 :86:
does not attempt to do titlecase mapping on initial letters. See
ELIZABETH/P5pack
…/README.md :151:
One can replace a numeric repeat count with a template letter
ELIZABETH/P5pack
…/README.md :153:
bracketed template for the repeat count.
ELIZABETH/P5pack
…/README.md :155:
For example, the template "x[L]" skips as many bytes as in a
ELIZABETH/P5pack
…/README.md :156:
packed long, and the template "$t X[$t] $t" unpacks twice
ELIZABETH/P5pack
…/README.md :157:
whatever $t (when variable-expanded) unpacks. If the template
ELIZABETH/P5pack
…/README.md :159:
packed length is calculated as if the start of the template
ELIZABETH/P5pack
…/README.md :239:
Starting from the beginning of the template to pack(), each
ELIZABETH/P5pack
…/README.md :258:
temporary value, as that could potentially get deallocated
ELIZABETH/P5pack
…/README.md :268:
little-endian byte order. Attempting to do so raises an
ELIZABETH/P5pack
…/README.md :271:
* The "/" template character allows packing and unpacking of a
ELIZABETH/P5pack
…/README.md :420:
Otherwise, attempting to use them raises an exception.
ELIZABETH/P5pack
…/README.md :495:
unpack(), also via the "/" template character. Within each
ELIZABETH/P5pack
…/README.md :514:
one may need to use the template "c x![d] d c[2]". This
ELIZABETH/P5pack
…/README.md :530:
immediately. Breaking complex templates into individual
ELIZABETH/P5pack
…/README.md :581:
$utmp_template = "Z8 Z8 Z16 L";
ELIZABETH/P5pack
…/README.md :582:
$utmp = pack($utmp_template, @utmp1);
ELIZABETH/P5pack
…/README.md :585:
@utmp2 = unpack($utmp_template, $utmp);
ELIZABETH/P5pack
…/README.md :609:
The same template may generally also be used in unpack().
ELIZABETH/P5pack
…/P5pack.pm6 :36:
my %parsed-templates;
ELIZABETH/P5pack
…/P5pack.pm6 :38:
# parse a pack/unpack template into ops with additional info
ELIZABETH/P5pack
…/P5pack.pm6 :39:
my sub parse-pack-template($template) {
ELIZABETH/P5pack
…/P5pack.pm6 :40:
sub parse($template) {
ELIZABETH/P5pack
…/P5pack.pm6 :41:
my @template;
ELIZABETH/P5pack
…/P5pack.pm6 :43:
my int $chars = $template.chars;
ELIZABETH/P5pack
…/P5pack.pm6 :48:
my str $directive = substr($template,$i,1);
ELIZABETH/P5pack
…/P5pack.pm6 :51:
?? substr($template,$i,1)
ELIZABETH/P5pack
…/P5pack.pm6 :55:
@template.push( (%dispatch.AT-KEY($directive),1) );
ELIZABETH/P5pack
…/P5pack.pm6 :59:
@template.push( (%dispatch.AT-KEY($directive),$repeat) );
ELIZABETH/P5pack
…/P5pack.pm6 :62:
@template.push( (%dispatch.AT-KEY($directive),1) );
ELIZABETH/P5pack
…/P5pack.pm6 :72:
&& !(($next = substr($template,$i,1)).unival === NaN);
ELIZABETH/P5pack
…/P5pack.pm6 :73:
@template.push( (%dispatch.AT-KEY($directive),+$repeat) );
ELIZABETH/P5pack
…/P5pack.pm6 :85:
@template
ELIZABETH/P5pack
…/P5pack.pm6 :88:
# make sure we don't have a race condition getting the template
ELIZABETH/P5pack
…/P5pack.pm6 :90:
%parsed-templates.AT-KEY($template)
ELIZABETH/P5pack
…/P5pack.pm6 :91:
// %parsed-templates.BIND-KEY($template,parse($template))
ELIZABETH/P5pack
…/P5pack.pm6 :95:
my sub pack($template, *@items) is export {
ELIZABETH/P5pack
…/P5pack.pm6 :97:
my @template := parse-pack-template($template);
ELIZABETH/P5pack
…/P5pack.pm6 :232:
for @template -> $todo {
ELIZABETH/P5pack
…/P5pack.pm6 :240:
my sub unpack($template, Blob:D \b) is export {
ELIZABETH/P5pack
…/P5pack.pm6 :242:
my @template := parse-pack-template($template);
ELIZABETH/P5pack
…/P5pack.pm6 :400:
for @template -> $todo {
ELIZABETH/P5pack
…/P5pack.pm6 :554:
One can replace a numeric repeat count with a template letter
ELIZABETH/P5pack
…/P5pack.pm6 :556:
bracketed template for the repeat count.
ELIZABETH/P5pack
…/P5pack.pm6 :558:
For example, the template "x[L]" skips as many bytes as in a
ELIZABETH/P5pack
…/P5pack.pm6 :559:
packed long, and the template "$t X[$t] $t" unpacks twice
ELIZABETH/P5pack
…/P5pack.pm6 :560:
whatever $t (when variable-expanded) unpacks. If the template
ELIZABETH/P5pack
…/P5pack.pm6 :562:
packed length is calculated as if the start of the template
ELIZABETH/P5pack
…/P5pack.pm6 :642:
Starting from the beginning of the template to pack(), each
ELIZABETH/P5pack
…/P5pack.pm6 :661:
temporary value, as that could potentially get deallocated
ELIZABETH/P5pack
…/P5pack.pm6 :671:
little-endian byte order. Attempting to do so raises an
ELIZABETH/P5pack
…/P5pack.pm6 :674:
* The "/" template character allows packing and unpacking of a
ELIZABETH/P5pack
…/P5pack.pm6 :823:
Otherwise, attempting to use them raises an exception.
ELIZABETH/P5pack
…/P5pack.pm6 :898:
unpack(), also via the "/" template character. Within each
ELIZABETH/P5pack
…/P5pack.pm6 :917:
one may need to use the template "c x![d] d c[2]". This
ELIZABETH/P5pack
…/P5pack.pm6 :933:
immediately. Breaking complex templates into individual
ELIZABETH/P5pack
…/P5pack.pm6 :984:
$utmp_template = "Z8 Z8 Z16 L";
ELIZABETH/P5pack
…/P5pack.pm6 :985:
$utmp = pack($utmp_template, @utmp1);
ELIZABETH/P5pack
…/P5pack.pm6 :988:
@utmp2 = unpack($utmp_template, $utmp);
ELIZABETH/P5pack
…/P5pack.pm6 :1012:
The same template may generally also be used in unpack().
ELIZABETH/P5print
…/01-basic.t :22:
method printf($template, *@_) { $format = $template, $said = @_.join }
ELIZABETH/Scalar-Util
…/README.md :99:
Attempting to import these functions will result in a compilation error with hopefully targeted feedback. Attempt to call these functions using the fully qualified name (e.g. `Scalar::Util::weaken($a)`) will result in a run time error with the same feedback.
ELIZABETH/Scalar-Util
…/Util.pm6 :190:
Attempting to import these functions will result in a compilation error with
ELIZABETH/Scalar-Util
…/Util.pm6 :191:
hopefully targeted feedback. Attempt to call these functions using the fully
ELIZABETH/Sub-Util
…/README.md :49:
Attempting to import these functions will result in a compilation error with hopefully targeted feedback. Attempt to call these functions using the fully qualified name (e.g. `Sub::Util::set_prototype($a)`) will result in a run time error with the same feedback.
ELIZABETH/Sub-Util
…/Util.pm6 :128:
Attempting to import these functions will result in a compilation error with
ELIZABETH/Sub-Util
…/Util.pm6 :129:
hopefully targeted feedback. Attempt to call these functions using the fully
ELIZABETH/Unix-errno
…/errno.pm6 :77:
'Multihop attempted',
ELIZABETH/Unix-errno
…/errno.pm6 :87:
'Attempting to link in too many shared libraries',
ELIZABETH/WriteOnceHash
…/README.md :31:
This module makes an `WriteOnceHash` class available that can be used instead of the normal `Hash`. The only difference with a normal `Hash` is, is t…
ELIZABETH/WriteOnceHash
…/README.md :33:
Also exports a `X::Hash::WriteOnce` error class that will be thrown if an attempt is made to set a key again.
ELIZABETH/WriteOnceHash
…/WriteOnceHash.pm6 :68:
C<Hash> is, is that if an attempt is made to set the value of a key that
ELIZABETH/WriteOnceHash
…/WriteOnceHash.pm6 :73:
if an attempt is made to set a key again.
FCO/Red
…/Changes :11:
- Support temporary tables
FCO/Red
…/Model.pm6 :38:
has Bool $!temporary;
FCO/Red
…/Model.pm6 :229:
method temp(|) is rw { $!temporary }
FCO/Red
…/Model.pm6 :244:
:temp(model.^temp),
FCO/Red
…/CreateTable.pm6 :8:
has Bool $.temp;
FCO/Red
…/CommonSQL.pm6 :411:
"CREATE{ " TEMPORARY" if .temp } TABLE {
FCO/Red
…/Traits.pm6 :7:
multi trait_mod:<is>(Mu:U $model, Bool :$temp!) {
FCO/Red
…/Traits.pm6 :8:
$model.^temp = True;
FRITH/Math-FFT-Libfftw3
…/README.md :175:
This module needs Perl 6 ≥ 2018.09 only if one wants to use shaped arrays as input data. An attempt to feed a shaped
FRITH/Math-FFT-Libfftw3
…/C2C.pm6 :303:
This module needs Perl 6 ≥ 2018.09 only if one wants to use shaped arrays as input data. An attempt to feed a shaped
FRITH/Math-FFT-Libfftw3
…/R2C.pm6 :331:
This module needs Perl 6 ≥ 2018.09 only if one wants to use shaped arrays as input data. An attempt to feed a shaped
FRITH/Math-FFT-Libfftw3
…/R2R.pm6 :320:
This module needs Perl 6 ≥ 2018.09 only if one wants to use shaped arrays as input data. An attempt to feed a shaped
HANENKAMP/AWS-Session
…/Changes :3:
* Second attempt to fix type problems in assigning $!token from the
HANENKAMP/AWS-Session
…/Refreshable.pod6 :19:
In AWS, many access keys are generated for temporary use. These credentials need
HANENKAMP/AWS-Session
…/Session.pm6 :28:
my $attempts = $session.metadata-service-num-attempts;
HANENKAMP/AWS-Session
…/Session.pm6 :80:
=head2 metadata-service-num-attempts
HANENKAMP/AWS-Session
…/Session.pm6 :82:
This is the number of attempts to make when using the metadata service.
HANENKAMP/AWS-Session
…/Session.pm6 :206:
metadata-service-num-attempts => Default.new(
HANENKAMP/AWS-Session
…/Session.pm6 :207:
:config-file<metadata_service_num_attempts>,
HANENKAMP/AWS-Session
…/Session.pm6 :225:
has Int $.metadata-service-num-attempts is rw;
HANENKAMP/AWS-Session
…/Session.pm6 :330:
method metadata-service-num-attempts(::?CLASS:D:) returns Int { self.session-accessor('metadata-service-num-attempts') }
HANENKAMP/AWS-Session
…/session.t :26:
is $session.metadata-service-num-attempts, 1;
HANENKAMP/Amazon-DynamoDB
…/README.md :152:
* request This is the `HTTP::Request` that was attempted.
HANENKAMP/Amazon-DynamoDB
…/DynamoDB.pm6 :164:
=item request This is the C<HTTP::Request> that was attempted.
HANENKAMP/ArrayHash
…/array-hash.t :428:
subtest { temp $_ = $o; test() }, $init-desc;
HANENKAMP/ArrayHash
…/multi-hash.t :443:
subtest { temp $_ = $o; test() }, $init-desc;
HANENKAMP/Cofra
…/View.pm6 :19:
multi method redirect($uri, Bool :$created = False, :$temporary = False --> Cofra::Web::Response:D) {
HANENKAMP/Cofra
…/View.pm6 :22:
elsif $temporary ~~ Bool { $status = 307 }
HANENKAMP/Cofra
…/View.pm6 :23:
else { $status = +$temporary }
HANENKAMP/Cofra
…/View.pm6 :32:
multi method redirect(*%mapping, Bool :$created = False, :$temporary = False --> Cofra::Web::Response:D) {
HANENKAMP/Cofra
…/View.pm6 :36:
:$temporary,
HANENKAMP/Cofra
…/Instance.pod6 :36:
:$temporary = False
HANENKAMP/Cofra
…/Instance.pod6 :40:
This will return the response object with the headers and status codes modified to perform an HTTP redirect to the C<$uri> given. The status code use…
HANENKAMP/DOM-Tiny
…/Changes :8:
attempts to write always failed previously.
HANENKAMP/DOM-Tiny
…/HTML.pm6 :126:
script select slot small span strong sub sup svg template textarea time u
HANENKAMP/DOM-Tiny
…/HTML.pm6 :140:
tbody td template textarea tfoot th thead title tr tt u ul xmp
HANENKAMP/Getopt-ForClass
…/.gitignore :4:
# Vim temporary file
HANENKAMP/Getopt-ForClass
…/ForClass.pod6 :65:
This implementation will attempt to locate the most appropriate C<MAIN> candidate using parameters given on the command-line. It will then …
HANENKAMP/HTTP-Request-FormData
…/README.md :31:
I wrote this as an expedient work-around to some encoding issues I have with the way HTTP::Request works. This may be a better way t…
HANENKAMP/HTTP-Request-FormData
…/README.md :86:
For this reason, the `add-part` method will throw an exception if you attempt to add a part after calling this method to select a boundary.
HANENKAMP/HTTP-Request-FormData
…/FormData.pm6 :37:
regard. I was merely attempting to expedite a solution and sharing it with the
HANENKAMP/HTTP-Request-FormData
…/FormData.pm6 :98:
For this reason, the C<add-part> method will throw an exception if you attempt
HANENKAMP/HTTP-Request-Supply
…/Request.pm6 :111:
chunks of the body as bytes as they arrive. No attempt is made to decode these
HANENKAMP/HTTP-Supply
…/Request.pm6 :111:
chunks of the body as bytes as they arrive. No attempt is made to decode these
HANENKAMP/Path-Router
…/README.md :231:
This exception is thrown whenever an attempt is made to include one router in another incorrectly.
HANENKAMP/Path-Router
…/README.md :254:
This is an X::Path::Router::BadRoute exception that is thrown when a validation attempts to add a slurpy parameter that is not at the end of the path.
HANENKAMP/Path-Router
…/Router.pm6 :162:
debug("> Attempting to match ", $route.path, " to (", @keys.join(" / "), ")");
HANENKAMP/Path-Router
…/Router.pm6 :252:
temp %path-map = %path-map;
HANENKAMP/Path-Router
…/Router.pm6 :535:
This exception is thrown whenever an attempt is made to include one router in another incorrectly.
HANENKAMP/Path-Router
…/Router.pm6 :555:
This is an L<#X::Path::Router::BadRoute> exception that is thrown when a validation attempts to add a slurpy parameter that is not at the end of the path.
HANENKAMP/Smack
…/Smack.pm6 :139:
method !temp-file {
HANENKAMP/Smack
…/URLMap.pm6 :89:
# work. I guess temp does not survive the transition across
HANENKAMP/Smack
…/URLMap.pm6 :91:
# temp %env<PATH_INFO> = $path;
HANENKAMP/Smack
…/URLMap.pm6 :92:
# temp %env<SCRIPT_NAME> = $script-name ~ $location;
HANENKAMP/Smack
…/Static.pm6 :39:
temp %env;
HANENKAMP/Smack
…/URI.pm6 :1397:
In some cases where an attempt is made to set C<path> to an invalid value, this exception is thrown.
HANENKAMP/Template-Anti
…/Changes :38:
* Previously, template objects were reused as-is every time. This meant that
HANENKAMP/Template-Anti
…/Changes :46:
* Structures the templates into libraries of templates.
HANENKAMP/Template-Anti
…/META6.json :5:
"description" : "The anti-template templating tool.",
HANENKAMP/Template-Anti
…/README.md :4:
Template::Anti - The anti-template templating tool
HANENKAMP/Template-Anti
…/README.md :16:
method hello($dom, :$title, :$welcome-message) is anti-template(:source<welcome.html>) {
HANENKAMP/Template-Anti
…/README.md :33:
method sith($dom, $_) is anti-template(:source<people.html>) {
HANENKAMP/Template-Anti
…/README.md :40:
# Construct a library of templates
HANENKAMP/Template-Anti
…/README.md :42:
path => </var/myapp/template-root/ /var/myapp/other-template-root/>,
HANENKAMP/Template-Anti
…/README.md :48:
# Use .process() to render the templates with input
HANENKAMP/Template-Anti
…/README.md :55:
It is a generally accepted principle that you should avoid mixing code with presentation. Yet, whenever a software engineer needs to render some cust…
HANENKAMP/Template-Anti
…/README.md :61:
* Generally uglifies your code making your templates harder to read as they mix two or three language syntaxes together inline.
HANENKAMP/Template-Anti
…/README.md :63:
This "templating" engine allows you to put an end to that.
HANENKAMP/Template-Anti
…/README.md :65:
This module, Template::Anti, is the anti-templating engine. This tool splits your presentation from your code in a way that is familiar to many front-end developers, using a select-and-modify methodology similar to jQuery.
HANENKAMP/Template-Anti
…/README.md :72:
To build a template you need two components:
HANENKAMP/Template-Anti
…/README.md :78:
From there, Template::Anti provides two different ways to process your templates, inline (a.k.a. embedded) and out-of-line. Let's consider the latter first.
HANENKAMP/Template-Anti
…/README.md :83:
This is the "pure" use-case that completely separates your template from your view processor, which should maximize reuse for most applications. To do this, you create an HTML original and then a method to apply a set of rules and modifications to it, like this:
HANENKAMP/Template-Anti
…/README.md :86:
method index($dom, :$title) is anti-template(:source<index.html>) {
HANENKAMP/Template-Anti
…/README.md :91:
The `is anti-template` trait associates a source file name with your method. When it comes time to process the template, this will be found within the search paths setup in /Template::Anti::Library. The trait takes two optional named parameters:
HANENKAMP/Template-Anti
…/README.md :102:
At times, it may be convenient to keep your processing code within the original file. In this case, your original file will include zero or more `<sc…
HANENKAMP/Template-Anti
…/README.md :116:
The `type="application/anti+perl6"` attirbute is required. The `data-dom` and `data-stash` attributes are optional. These attributes the names of the template variables the engine will provide to the block.
HANENKAMP/Template-Anti
…/README.md :122:
This works whether the template is HTML or XML. However, when templating with XML, it is also recommended that you wrap your code in a `<![CDATA[ ]]>` section to avoid problems with greater than signs (">"), less than signs ("<"), and ampersands in your code confusing the parser.
HANENKAMP/Template-Anti
…/README.md :124:
Finally, the processing method for this template looks like the following:
HANENKAMP/Template-Anti
…/README.md :127:
method index(|) is anti-template(:source<index.html>) {
HANENKAMP/Template-Anti
…/README.md :137:
This class provides tools for locating original source files for parsing and for grouping your processing methods together. You do not have to use it…
HANENKAMP/Template-Anti
…/README.md :169:
This is a map of names to objects that each should contain one or more methods that have been tagged with the `is anti-template` trait. The names are used by the [/method process](/method process) as part of the name used to look up the template to process.
HANENKAMP/Template-Anti
…/README.md :174:
method process(Str $template, |c) returns Str:D
HANENKAMP/Template-Anti
…/README.md :176:
This is the workhorse of the system. If the named template has never been processed before, the source template will be located, …
HANENKAMP/Template-Anti
…/README.md :178:
The `$template` name itself should be composed of two names separated by a period ("."). The first name is name given to the [/method views](/method views) parameter. The second is the name of the processing method to call on that object.
HANENKAMP/Template-Anti
…/README.md :183:
trait is anti-template
HANENKAMP/Template-Anti
…/README.md :186:
sub trait_mod:<is> (Routine $r, :$anti-template)
HANENKAMP/Template-Anti
…/README.md :190:
method tmpl($dom, *%stash) is anti-template(
HANENKAMP/Template-Anti
…/README.md :213:
sub anti-template
HANENKAMP/Template-Anti
…/README.md :217:
sub anti-template(&process?, Str:D :$source!, Str:D :$format = 'html') returns Routine:D
HANENKAMP/Template-Anti
…/README.md :219:
This is exported in the `:one-off` group. This routine builds a template routine and returns it. The returned routine completely encapsulates the processing of the template.
HANENKAMP/Template-Anti
…/README.md :223:
The `&process` is optional. When given, it names the routine to call to transform a template source and stash into a final version of the �…
HANENKAMP/Template-Anti
…/README.md :231:
The `$format` tells the `anti-template` routine which format the file is in and how to parse and process it. Template::Anti provides two bu…
HANENKAMP/Template-Anti
…/README.md :233:
The format also determines how to extract embedded templates. In the case of "xml" and "html", the embedding is handled via `<script>` tags…
HANENKAMP/Template-Anti
…/README.md :242:
my &process1-template = anti-template(&process1, ...);
HANENKAMP/Template-Anti
…/README.md :243:
say process1-template();
HANENKAMP/Template-Anti
…/README.md :246:
my &process2-template = anti-template(&process2, ...);
HANENKAMP/Template-Anti
…/README.md :247:
say process2-template(MyUser.new(0), :title<Hello>, :name<Bob>);
HANENKAMP/Template-Anti
…/README.md :250:
my &process3-template = anti-template(&process3, ...);
HANENKAMP/Template-Anti
…/README.md :251:
say process3-template(%myapp-stash);
HANENKAMP/Template-Anti
…/README.md :255:
Once the `&process` passed to `anti-template` has been called, the template object (`$dom` in the signature above), will be stringified by calling the `Str` method on it. That stringified version of the value is returned.
HANENKAMP/Template-Anti
…/README.md :310:
If you just need a quick template and don't need to worry about building a complete library of methods, there is also a mechanism for creat…
HANENKAMP/Template-Anti
…/README.md :326:
my &hello = anti-template :$source, -> $dom, $_ {
HANENKAMP/Template-Anti
…/README.md :370:
my &hello-again = anti-template :source($emb-source), :html, :embedded;
HANENKAMP/Template-Anti
…/README.md :376:
While this library has been built using DOM::Tiny to implement XML and HTML parsing and rendering of template sources, it is p…
HANENKAMP/Template-Anti
…/README.md :405:
This also adds support for embedding the code part of the template in the source following a `__CODE__` annotation. Here's a couple examples using this custom object.
HANENKAMP/Template-Anti
…/README.md :441:
method hello($email, *%data) is anti-template(:source<welcome.html>) {
HANENKAMP/Template-Anti
…/README.md :445:
method hello-embedded($email, %adata) is anti-template(:source<welcome-embedded.html>) {
HANENKAMP/Template-Anti
…/README.md :458:
This way, you can get code separated from your templates in any format you like.
HANENKAMP/Template-Anti
…/README.md :460:
If your format object does not have an `embedded-source` method defined, attempting to us the embedded form of `anti-template` will result in an exception.
HANENKAMP/Template-Anti
…/README.md :462:
Finally, whatever object is used as the parsed structure for your template (i.e., takes the place of the DOM::Tiny object provided with the built-in "xml" and "html" formats) must supply a `Str` method to render the object to string.
HANENKAMP/Template-Anti
…/Anti.pm6 :9:
=NAME Template::Anti - The anti-template templating tool
HANENKAMP/Template-Anti
…/Anti.pm6 :18:
method hello($dom, :$title, :$welcome-message) is anti-template(:source<welcome.html>) {
HANENKAMP/Template-Anti
…/Anti.pm6 :35:
method sith($dom, $_) is anti-template(:source<people.html>) {
HANENKAMP/Template-Anti
…/Anti.pm6 :42:
# Construct a library of templates
HANENKAMP/Template-Anti
…/Anti.pm6 :44:
path => </var/myapp/template-root/ /var/myapp/other-template-root/>,
HANENKAMP/Template-Anti
…/Anti.pm6 :50:
# Use .process() to render the templates with input
HANENKAMP/Template-Anti
…/Anti.pm6 :61:
templating engine, which does that very thing. Rather than building a file that
HANENKAMP/Template-Anti
…/Anti.pm6 :69:
=item Generally uglifies your code making your templates harder to read as they mix two or three language syntaxes together inline.
HANENKAMP/Template-Anti
…/Anti.pm6 :71:
This "templating" engine allows you to put an end to that.
HANENKAMP/Template-Anti
…/Anti.pm6 :73:
This module, L<Template::Anti>, is the anti-templating engine. This tool splits
HANENKAMP/Template-Anti
…/Anti.pm6 :86:
To build a template you need two components:
HANENKAMP/Template-Anti
…/Anti.pm6 :93:
templates, inline (a.k.a. embedded) and out-of-line. Let's consider the latter
HANENKAMP/Template-Anti
…/Anti.pm6 :98:
This is the "pure" use-case that completely separates your template from your
HANENKAMP/Template-Anti
…/Anti.pm6 :104:
method index($dom, :$title) is anti-template(:source<index.html>) {
HANENKAMP/Template-Anti
…/Anti.pm6 :109:
The C<is anti-template> trait associates a source file name with your method.
HANENKAMP/Template-Anti
…/Anti.pm6 :110:
When it comes time to process the template, this will be found within the search
HANENKAMP/Template-Anti
…/Anti.pm6 :127:
"application/anti+perl6". For example, here is a simple template you might have
HANENKAMP/Template-Anti
…/Anti.pm6 :144:
template variables the engine will provide to the block.
HANENKAMP/Template-Anti
…/Anti.pm6 :154:
This works whether the template is HTML or XML. However, when templating with
HANENKAMP/Template-Anti
…/Anti.pm6 :159:
Finally, the processing method for this template looks like the following:
HANENKAMP/Template-Anti
…/Anti.pm6 :162:
method index(|) is anti-template(:source<index.html>) {
HANENKAMP/Template-Anti
…/Anti.pm6 :175:
This class provides tools for locating original source files for parsing and for grouping your processing methods together. You do not have to use it…
HANENKAMP/Template-Anti
…/Anti.pm6 :209:
that have been tagged with the C<is anti-template> trait. The names are used by
HANENKAMP/Template-Anti
…/Anti.pm6 :210:
the L</method process> as part of the name used to look up the template to
HANENKAMP/Template-Anti
…/Anti.pm6 :215:
method process(Str $template, |c) returns Str:D
HANENKAMP/Template-Anti
…/Anti.pm6 :217:
This is the workhorse of the system. If the named template has never been
HANENKAMP/Template-Anti
…/Anti.pm6 :218:
processed before, the source template will be located, read, and parsed
HANENKAMP/Template-Anti
…/Anti.pm6 :219:
according to the format for that template. This setup happens once and the
HANENKAMP/Template-Anti
…/Anti.pm6 :221:
after the template name are passed as is through to the processing method).
HANENKAMP/Template-Anti
…/Anti.pm6 :223:
The C<$template> name itself should be composed of two names separated by a
HANENKAMP/Template-Anti
…/Anti.pm6 :229:
=head2 trait is anti-template
HANENKAMP/Template-Anti
…/Anti.pm6 :231:
sub trait_mod:<is> (Routine $r, :$anti-template)
HANENKAMP/Template-Anti
…/Anti.pm6 :235:
method tmpl($dom, *%stash) is anti-template(
HANENKAMP/Template-Anti
…/Anti.pm6 :251:
=head2 sub anti-template
HANENKAMP/Template-Anti
…/Anti.pm6 :254:
sub anti-template(&process?, Str:D :$source!, Template::Anti::Format :$format = DOM) returns Routine:D
HANENKAMP/Template-Anti
…/Anti.pm6 :256:
This is exported in the C<:one-off> export group. This routine builds a template routine and returns it. The returned routine completely encapsulates the processing of the template.
HANENKAMP/Template-Anti
…/Anti.pm6 :260:
The C<&process> is optional. When given, it names the routine to call to transform a template source and stash into a final version of the …
HANENKAMP/Template-Anti
…/Anti.pm6 :268:
The C<$format> tells the C<anti-template> routine which format the file is in and how to parse and process it. Template::Anti provides buil…
HANENKAMP/Template-Anti
…/Anti.pm6 :270:
The format also determines how to extract embedded templates. In the case of C<DOM>, C<HTML>, C<XML>, the embedding is handled via C«<scrip…
HANENKAMP/Template-Anti
…/Anti.pm6 :279:
my &process1-template = anti-template(&process1, ...);
HANENKAMP/Template-Anti
…/Anti.pm6 :280:
say process1-template();
HANENKAMP/Template-Anti
…/Anti.pm6 :283:
my &process2-template = anti-template(&process2, ...);
HANENKAMP/Template-Anti
…/Anti.pm6 :284:
say process2-template(MyUser.new(0), :title<Hello>, :name<Bob>);
HANENKAMP/Template-Anti
…/Anti.pm6 :287:
my &process3-template = anti-template(&process3, ...);
HANENKAMP/Template-Anti
…/Anti.pm6 :288:
say process3-template(%myapp-stash);
HANENKAMP/Template-Anti
…/Anti.pm6 :292:
Once the C<&process> passed to C<anti-template> has been called, the template
HANENKAMP/Template-Anti
…/Anti.pm6 :419:
proto sub anti-template(|) { * }
HANENKAMP/Template-Anti
…/Anti.pm6 :420:
multi sub anti-template(&process, Str:D :$source!, Format :$format = Format::DOM, :$object) returns Routine:D is export(:one-off) {
HANENKAMP/Template-Anti
…/Anti.pm6 :439:
multi sub anti-template(Str:D :$source!, Format :$format = Format::DOM, :$object) returns Routine:D is export(:one-off) {
HANENKAMP/Template-Anti
…/Anti.pm6 :442:
die qq[embedded anti-templates are not available for source formatted as "{$format.^name}"]
HANENKAMP/Template-Anti
…/Anti.pm6 :467:
has %.template-cache;
HANENKAMP/Template-Anti
…/Anti.pm6 :469:
method locate(Library:D: Str $template) {
HANENKAMP/Template-Anti
…/Anti.pm6 :471:
my $try-file = $search-path.IO.child($template);
HANENKAMP/Template-Anti
…/Anti.pm6 :475:
die qq[no template source file named "$template" found];
HANENKAMP/Template-Anti
…/Anti.pm6 :478:
method slurp(Library:D: Str $template) {
HANENKAMP/Template-Anti
…/Anti.pm6 :479:
self.locate($template).slurp;
HANENKAMP/Template-Anti
…/Anti.pm6 :482:
method build(Library:D: Str $template) {
HANENKAMP/Template-Anti
…/Anti.pm6 :483:
my ($view, $method) = $template.split: '.', 2;
HANENKAMP/Template-Anti
…/Anti.pm6 :491:
return anti-template(:$source, :$format, :$object);
HANENKAMP/Template-Anti
…/Anti.pm6 :494:
return anti-template($r, :$source, :$format, :$object);
HANENKAMP/Template-Anti
…/Anti.pm6 :506:
method process(Library:D: Str $template, |c) {
HANENKAMP/Template-Anti
…/Anti.pm6 :507:
%!template-cache{$template} //= self.build($template);
HANENKAMP/Template-Anti
…/Anti.pm6 :508:
my &process = %!template-cache{$template};
HANENKAMP/Template-Anti
…/Anti.pm6 :520:
multi trait_mod:<is> (Routine $r, :$anti-template! is copy) is export(:MANDATORY) {
HANENKAMP/Template-Anti
…/Anti.pm6 :522:
given $anti-template {
HANENKAMP/Template-Anti
…/Anti.pm6 :524:
$anti-template = %(|$anti-template);
HANENKAMP/Template-Anti
…/Anti.pm6 :528:
$format = $anti-template<format>:exists ?? $anti-template<format> !! Format::DOM;
HANENKAMP/Template-Anti
…/Anti.pm6 :529:
$source-file = $anti-template<source>;
HANENKAMP/Template-Anti
…/Anti.pm6 :532:
$format = $anti-template;
HANENKAMP/Template-Anti
…/Anti.pm6 :548:
If you just need a quick template and don't need to worry about building a
HANENKAMP/Template-Anti
…/Anti.pm6 :550:
template routines. This requires using the C<anti-template> routine, which is
HANENKAMP/Template-Anti
…/Anti.pm6 :567:
my &hello = anti-template :$source, -> $dom, $_ {
HANENKAMP/Template-Anti
…/Anti.pm6 :611:
my &hello-again = anti-template :source($emb-source), :html, :embedded;
HANENKAMP/Template-Anti
…/Anti.pm6 :617:
parsing and rendering of template sources, it is possible to extend
HANENKAMP/Template-Anti
…/Anti.pm6 :654:
The C<parse> method is only called once, when the template is initially built.
HANENKAMP/Template-Anti
…/Anti.pm6 :655:
This is called before the template is ever processed. This method should take
HANENKAMP/Template-Anti
…/Anti.pm6 :656:
the given string as the template to parse and parse it. Then, the
HANENKAMP/Template-Anti
…/Anti.pm6 :658:
the template. This allows the original to be parsed once and cached. Finally,
HANENKAMP/Template-Anti
…/Anti.pm6 :662:
This also adds support for embedding the code part of the template in the source
HANENKAMP/Template-Anti
…/Anti.pm6 :702:
method hello($email, *%data) is anti-template(:source<welcome.txt>, :format(BlankText)) {
HANENKAMP/Template-Anti
…/Anti.pm6 :706:
method hello-embedded($email, %adata) is anti-template(:source<welcome-embedded.txt>, :format(BlankText)) {
HANENKAMP/Template-Anti
…/Anti.pm6 :719:
This way, you can get code separated from your templates in any format you like.
HANENKAMP/Template-Anti
…/Anti.pm6 :722:
attempting to us the embedded form of C<anti-template> will result in an
HANENKAMP/Template-Anti
…/Template.pm6 :10:
=SUBTITLE Class representing anti-template template objects
HANENKAMP/Template-Anti
…/Template.pm6 :17:
# Now, apply your template rules from your Perl source
HANENKAMP/Template-Anti
…/Template.pm6 :38:
<script type="text/x-perl6" data-template="$anti">
HANENKAMP/Template-Anti
…/Template.pm6 :54:
This class is the main work horse of L<Template::Anti>. It is created by calling one of the C<load> multi methods. After getting this object, you may process your template by using CSS-like selectors to find the elements you are interestd in and transforming them.
HANENKAMP/Template-Anti
…/Template.pm6 :56:
This is done using out-of-line processing by using the postcircumfix parenthesis operator ("()") to select nodes and then apply changes to the result…
HANENKAMP/Template-Anti
…/Template.pm6 :78:
This method finds all C«<script></script>» tags within the document that have the C<type> attribute set to C<text/x-perl6> and have a C<data-t…
HANENKAMP/Template-Anti
…/Template.pm6 :84:
Returns the rendered template with all modifications that have been applied thus far. This renders the document as HTML.
HANENKAMP/Template-Anti
…/Template.pm6 :180:
has XML::Node $.template; #= The XML document or element to manipulate for output.
HANENKAMP/Template-Anti
…/Template.pm6 :183:
has $!sq = Template::Anti::Selector.new(:source($!template));
HANENKAMP/Template-Anti
…/Template.pm6 :185:
#| Apply the given selection criteria to the template.
HANENKAMP/Template-Anti
…/Template.pm6 :191:
#| Apply the given selection criteria to the template.
HANENKAMP/Template-Anti
…/Template.pm6 :196:
#| Evaluate and run the built in template scripts. This will also remove those scripts from the document.
HANENKAMP/Template-Anti
…/Template.pm6 :198:
my @scripts = $!sq('script[type="text/x-perl6"][data-template]');
HANENKAMP/Template-Anti
…/Template.pm6 :201:
my $var = $script.attribs<data-template>;
HANENKAMP/Template-Anti
…/Template.pm6 :214:
#| Render the template as HTML.
HANENKAMP/Template-Anti
…/Template.pm6 :271:
render-walk($print, $!template);
HANENKAMP/Template-Anti
…/Template.pm6 :276:
return 'Template::Anti::Template.new(template => from-xml("' ~ $!template.Str.trans([ '"' ] => [ "\"" ]) ~ '"))';
HANENKAMP/Template-Anti
…/basic-embed.t :8:
my &people = anti-template :source("t/view/basic-embed.html".IO.slurp);
HANENKAMP/Template-Anti
…/basic.t :8:
my &people = anti-template :source("t/view/basic.html".IO.slurp), -> $at, :$title, :$motto, :@sith-lords {
HANENKAMP/Template-Anti
…/extend-one-off.t :44:
&!hello = anti-template :source($welcome), :format(BlankText), -> $email, *%data {
HANENKAMP/Template-Anti
…/extend-one-off.t :48:
&!hello-embedded = anti-template :source($welcome-embedded), :format(BlankText);
HANENKAMP/Template-Anti
…/MyEmails.pm6 :37:
is anti-template(
HANENKAMP/Template-Anti
…/MyEmails.pm6 :45:
is anti-template(
HANENKAMP/Template-Anti
…/library.t :14:
) is anti-template(:source<basic.html>) {
HANENKAMP/Template-Anti
…/library.t :26:
method people-two(|) is anti-template(:source<basic-embed.html>) { ... }
HANENKAMP/Template-Anti
…/reuse.t :7:
my &simple = anti-template :source($str), -> $at, :$h1 {
HMBRAND/Text-CSV
…/csv-check :14:
$err and temp $*OUT = $*ERR;
HMBRAND/Text-CSV
…/csv-check-tuxic :13:
$err and temp $*OUT = $*ERR;
HMBRAND/Text-CSV
…/CSV.pm :1818:
!! tempfile;
HMBRAND/Text-CSV
…/CSV.pod6 :815:
L</getline> method associated with C<$io> (or the internal temporary IO
HOLLI/Color-Named
…/COPYING :413:
provided under this License. Any attempt otherwise to propagate or
HOLLI/Color-Names
…/COPYING :413:
provided under this License. Any attempt otherwise to propagate or
HOLLI/Color-Scheme
…/COPYING :413:
provided under this License. Any attempt otherwise to propagate or
HOLLI/Test-Color
…/COPYING :413:
provided under this License. Any attempt otherwise to propagate or
JDV/Data-Selector
…/03-apply_tree.t :94:
my $data_tree_temp = EVAL $data_tree.perl;
JDV/Data-Selector
…/03-apply_tree.t :95:
$data_tree_temp{'-foo_4'}:delete;
JDV/Data-Selector
…/03-apply_tree.t :96:
$data_tree_temp;
JDV/Data-Selector
…/03-apply_tree.t :104:
my $data_tree_temp = EVAL $data_tree.perl;
JDV/Data-Selector
…/03-apply_tree.t :105:
$data_tree_temp{'+foo_4'}:delete;
JDV/Data-Selector
…/03-apply_tree.t :106:
$data_tree_temp;
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :175:
// to the code generation templates and may be ignored by the template
JGOFF/ANTLR4-Grammar
…/IDL.g4 :247:
| template_type_spec
JGOFF/ANTLR4-Grammar
…/IDL.g4 :263:
template_type_spec
JGOFF/ANTLR4-Grammar
…/Smalltalk.g4 :11:
sequence : temps? ws statements?;
JGOFF/ANTLR4-Grammar
…/Smalltalk.g4 :13:
temps : PIPE (ws IDENTIFIER)+ ws PIPE;
JGOFF/ANTLR4-Grammar
…/UCBLogo.g4 :388:
put("settemploc", 1);
JGOFF/ANTLR4-Grammar
…/Verilog2001.g4 :365:
// spec didn't allow temp funcs.
JGOFF/ANTLR4-Grammar
…/scala.g4 :103:
| (('new' (classTemplate | templateBody)| blockExpr | simpleExpr1 '_'?) '.') Id '=' expr
JGOFF/ANTLR4-Grammar
…/scala.g4 :115:
('new' (classTemplate | templateBody)| blockExpr | simpleExpr1 '_'?) ;
JGOFF/ANTLR4-Grammar
…/scala.g4 :122:
| ('new' (classTemplate | templateBody) | blockExpr ) '.' Id
JGOFF/ANTLR4-Grammar
…/scala.g4 :123:
| ('new' (classTemplate | templateBody) | blockExpr ) typeArgs
JGOFF/ANTLR4-Grammar
…/scala.g4 :231:
templateBody : Nl? '{' selfType? templateStat (Semi templateStat)* '}' ;
JGOFF/ANTLR4-Grammar
…/scala.g4 :233:
templateStat : import_
JGOFF/ANTLR4-Grammar
…/scala.g4 :296:
classTemplateOpt : 'extends' classTemplate | ('extends'? templateBody)? ;
JGOFF/ANTLR4-Grammar
…/scala.g4 :298:
traitTemplateOpt : 'extends' traitTemplate | ('extends'? templateBody)? ;
JGOFF/ANTLR4-Grammar
…/scala.g4 :300:
classTemplate : earlyDefs? classParents templateBody? ;
JGOFF/ANTLR4-Grammar
…/scala.g4 :302:
traitTemplate : earlyDefs? traitParents templateBody? ;
JGOFF/ANTLR4-Grammar
…/vhdl.g4 :299:
| group_template_declaration
JGOFF/ANTLR4-Grammar
…/vhdl.g4 :604:
| group_template_declaration
JGOFF/ANTLR4-Grammar
…/vhdl.g4 :746:
group_template_declaration
JGOFF/ANTLR4-Grammar
…/vhdl.g4 :1008:
| group_template_declaration
JGOFF/ANTLR4-Grammar
…/vhdl.g4 :1036:
| group_template_declaration
JGOFF/ANTLR4-Grammar
…/vhdl.g4 :1099:
| group_template_declaration
JGOFF/ANTLR4-Grammar
…/vhdl.g4 :1131:
| group_template_declaration
JGOFF/ANTLR4-Grammar
…/vhdl.g4 :1407:
| group_template_declaration
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :157:
#method prequelConstruct - gave up temporarily on using tat.
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :326:
# to the code generation templates and may be ignored by the template
JGOFF/Perl6-Parser
…/README.md :112:
Look down in this file for a `assert-hash-keys()` call attempting to assert the existence of exactly a `infix` and `OPER` tag. There may actually be other hash keys in this data structure, as `.dump()` doesn't report unused hash keys; this caused me a deal of confusion.
JGOFF/Perl6-Parser
…/Parser.pm6 :113:
Look down in this file for a C<assert-hash-keys()> call attempting to assert the existence of exactly a C<infix> and C<OPER> tag. There may actually be other hash keys in this data structure, as C<.dump()> doesn't report unused hash keys; this caused me a deal of confusion.
JGOFF/Perl6-Parser
…/Factory.pm6 :4561:
my Str $temp = $_.Str.substr(
JGOFF/Perl6-Parser
…/Factory.pm6 :4564:
if $temp ~~ m{ ^ ( \s+ ) (';') } {
JGOFF/Perl6-Parser
…/Factory.pm6 :6699:
my Str $temp = $p.Str.substr(
JGOFF/Perl6-Parser
…/Factory.pm6 :6702:
if $temp ~~ m{ ^ (';') ( \s* ) } {
JGOFF/Perl6-Parser
…/16-quote.t :17:
# The code uses symmetric RE's to parse, and the temptation to reuse the first
JGOFF/Perl6-Parser
…/19-operators.t :1318:
# XXX 'temp$a' is illegal (weird.)
JGOFF/Perl6-Parser
…/19-operators.t :1326:
my $a; temp $a
JGOFF/Perl6-Parser
…/19-operators.t :1333:
}, Q{temp};
JGOFF/Perl6-Parser
…/rosetta-1.t :90:
my $temp = @c[$ym;$yd];
JGOFF/Perl6-Parser
…/rosetta-1.t :92:
@c[$xm;$xd] = $temp;
JGOFF/Pod-To-HTMLBody
…/01-tree.t :1687:
=for DESCRIPTION :title<presentation template>
JGOFF/Readline
…/Readline.pm :44:
While I'd prefer to use L<LibraryCheck>'s technique of just attempting to link to a library, it doesn't seem to work inside of the C<is nat…
JGOFF/Readline
…/Readline.pm :2242:
# that also attempts to call any calling application's SIGWINCH signal
JGOFF/Readline
…/Readline.pm :2284:
#extern rl_completion_func_t *rl_attempted_completion_function;
JGOFF/Readline
…/Readline.pm :2403:
# before completion is attempted, so the embedded quotes do not interfere
JGOFF/Readline
…/Readline.pm :2417:
#extern int rl_attempted_completion_over;
JGOFF/Readline
…/Readline.pm :2419:
# Set to a character describing the type of completion being attempted by
JGOFF/Readline
…/Readline.pm :2481:
# If this is non-zero, completion is (temporarily) inhibited, and the
JGOFF/Vroom-Reveal
…/Reveal.pm :23:
method populate-template( $title, $author, @section ) {
JGOFF/Vroom-Reveal
…/Reveal.pm :108:
self.populate-template( $title, $vroom-author, @section );
JKRAMER/Proc-Editor
…/README.md :40:
Writes `$text` to a temporary file runs an editor with that file as argument. On success, the contents of the file are returned. If `$file`…
JKRAMER/Proc-Editor
…/Editor.pm6 :37:
Writes C<$text> to a temporary file runs an editor with that file as argument.
JKRAMER/Proc-Editor
…/Editor.pm6 :39:
is used instead of creating a temporary file. The file used (temporary or not)
JKRAMER/Proc-Editor
…/Editor.pm6 :68:
method temporary-file(--> IO::Path) {
JKRAMER/Proc-Editor
…/Editor.pm6 :105:
my $temporary-file = $file // $.temporary-file;
JKRAMER/Proc-Editor
…/Editor.pm6 :108:
$temporary-file.unlink unless $keep;
JKRAMER/Proc-Editor
…/Editor.pm6 :111:
$temporary-file.spurt($text) if $text.defined;
JKRAMER/Proc-Editor
…/Editor.pm6 :113:
my $exitcode = $.edit-file($temporary-file);
JKRAMER/Proc-Editor
…/Editor.pm6 :116:
return $temporary-file.slurp;
JMASLAK/DateTime-Monotonic
…/CODE_OF_CONDUCT.md :42:
that are not aligned to this Code of Conduct, or to ban temporarily or
JMASLAK/DateTime-Monotonic
…/CODE_OF_CONDUCT.md :65:
faith may face temporary or permanent repercussions as determined by other
JMASLAK/IP-Random
…/CODE_OF_CONDUCT.md :42:
that are not aligned to this Code of Conduct, or to ban temporarily or
JMASLAK/IP-Random
…/CODE_OF_CONDUCT.md :65:
faith may face temporary or permanent repercussions as determined by other
JMASLAK/Net-BGP
…/CODE_OF_CONDUCT.md :42:
that are not aligned to this Code of Conduct, or to ban temporarily or
JMASLAK/Net-BGP
…/CODE_OF_CONDUCT.md :65:
faith may face temporary or permanent repercussions as determined by other
JMASLAK/Net-BGP
…/bgpmon.pod :56:
If this is provided, the script will not attempt to connect to the BGP peers.
JMASLAK/Net-BGP
…/BGP.pm6 :313:
$p.last-connect-attempt = monotonic-whole-seconds;
JMASLAK/Net-BGP
…/Controller.pm6 :313:
$p.last-connect-attempt = monotonic-whole-seconds;
JMASLAK/Net-BGP
…/Peer-List.pm6 :81:
if ! $peer.last-connect-attempt.defined { return $peer; }
JMASLAK/Net-BGP
…/Peer-List.pm6 :84:
if $now ≥ ($peer.last-connect-attempt + $peer.connect-retry-time) {
JMASLAK/Net-BGP
…/Peer.pm6 :28:
has Int $.last-connect-attempt is rw;
JMASLAK/Net-BGP
…/rfc4271.txt :2003:
multiple attempts at opening a BGP connection, starting with the
JMASLAK/Net-BGP
…/rfc4271.txt :2004:
highest version number each BGP speaker supports. If an open attempt
JMASLAK/Net-BGP
…/rfc4271.txt :2256:
TCP connection attempt rather than individual TCP
JMASLAK/Net-BGP
…/rfc4271.txt :2826:
peer paired in a potential connection will attempt to connect to the
JMASLAK/Net-BGP
…/rfc4271.txt :3789:
If a TCP connection is attempted with an invalid port (Event 15),
JMASLAK/Net-BGP
…/rfc4271.txt :3790:
the local system will ignore the second connection attempt.
JMASLAK/Net-BGP
…/rfc4271.txt :5804:
attempt made to obtain a general license or permission for the use of
JMASLAK/Net-BGP
…/rfc5492.txt :107:
not a new requirement.) In this case, the speaker SHOULD attempt to
JMASLAK/Net-BGP
…/rfc6793.txt :515:
to be used, with a new template record, specifying the new length of
JMERELO/Algorithm-Evolutionary-Simple
…/LICENSE :410:
provided under this License. Any attempt otherwise to propagate or
JMERELO/Wikidata-API
…/LICENSE :410:
provided under this License. Any attempt otherwise to propagate or
JNTHN/Concurrent-Queue
…/README.md :55:
queue, consider using the Perl 6 built-in `Channel` class. (If tempted to
JNTHN/Concurrent-Trie
…/Trie.pm6 :53:
# update attempt and not bump $!elems.
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :188:
'clkt' => 'application/vnd.crick.clicker.template',
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :267:
'tpl' => 'application/vnd.groove-tool-template',
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :366:
'xltm' => 'application/vnd.ms-excel.template.macroenabled.12',
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :381:
'potm' => 'application/vnd.ms-powerpoint.template.macroenabled.12',
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :385:
'dotm' => 'application/vnd.ms-word.template.macroenabled.12',
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :410:
'otc' => 'application/vnd.oasis.opendocument.chart-template',
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :413:
'odft' => 'application/vnd.oasis.opendocument.formula-template',
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :415:
'otg' => 'application/vnd.oasis.opendocument.graphics-template',
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :417:
'oti' => 'application/vnd.oasis.opendocument.image-template',
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :419:
'otp' => 'application/vnd.oasis.opendocument.presentation-template',
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :421:
'ots' => 'application/vnd.oasis.opendocument.spreadsheet-template',
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :424:
'ott' => 'application/vnd.oasis.opendocument.text-template',
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :432:
'potx' => 'application/vnd.openxmlformats-officedocument.presentationml.template',
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :434:
'xltx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.template',
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :436:
'dotx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.template',
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :474:
'itp' => 'application/vnd.shana.informed.formtemplate',
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :495:
'stc' => 'application/vnd.sun.xml.calc.template',
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :497:
'std' => 'application/vnd.sun.xml.draw.template',
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :499:
'sti' => 'application/vnd.sun.xml.impress.template',
JNTHN/Cro-HTTP
…/MimeTypes.pm6 :503:
'stw' => 'application/vnd.sun.xml.writer.template',
JNTHN/Cro-HTTP
…/Router.pm6 :783:
multi redirect(Str() $location, :$temporary, :$permanent, :$see-other --> Nil) {
JNTHN/Cro-HTTP
…/Router.pm6 :797:
multi redirect(Str() $location, $content-type, $body, :$temporary,
JNTHN/Cro-HTTP
…/http-client.t :369:
'Attempt to get body without any parsers fails';
JNTHN/Cro-HTTP
…/http-client.t :384:
'Attempt to get body without any parsers fails';
JNTHN/Cro-HTTP
…/http-router.t :977:
get -> 'redir', 'temp-1' {
JNTHN/Cro-HTTP
…/http-router.t :978:
redirect '/to/temp-1';
JNTHN/Cro-HTTP
…/http-router.t :979:
content 'text/html', '<a href="/to/temp-1">Click here</a>';
JNTHN/Cro-HTTP
…/http-router.t :982:
get -> 'redir', 'temp-2' {
JNTHN/Cro-HTTP
…/http-router.t :983:
redirect '/to/temp-2', 'text/html',
JNTHN/Cro-HTTP
…/http-router.t :984:
'<a href="/to/temp-2">Click here</a>'
JNTHN/Cro-HTTP
…/http-router.t :987:
get -> 'redir', 'temp-3' {
JNTHN/Cro-HTTP
…/http-router.t :988:
redirect :temporary, '/to/temp-3';
JNTHN/Cro-HTTP
…/http-router.t :989:
content 'text/html', '<a href="/to/temp-3">Click here</a>';
JNTHN/Cro-HTTP
…/http-router.t :992:
get -> 'redir', 'temp-4' {
JNTHN/Cro-HTTP
…/http-router.t :993:
redirect :temporary, '/to/temp-4', 'text/html',
JNTHN/Cro-HTTP
…/http-router.t :994:
'<a href="/to/temp-4">Click here</a>'
JNTHN/Cro-HTTP
…/http-router.t :1021:
'/redir/temp-1', 307, '/to/temp-1', 'Temporary redirect (1)',
JNTHN/Cro-HTTP
…/http-router.t :1022:
'/redir/temp-2', 307, '/to/temp-2', 'Temporary redirect (2)',
JNTHN/Cro-HTTP
…/http-router.t :1023:
'/redir/temp-3', 307, '/to/temp-3', 'Temporary redirect (3)',
JNTHN/Cro-HTTP
…/http-router.t :1024:
'/redir/temp-4', 307, '/to/temp-4', 'Temporary redirect (4)',
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/RoutesFromDefinition.pm6 :34:
has Str $.path-template is required;
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/RoutesFromDefinition.pm6 :38:
"The operation '$!operation' has path '$!path-template'.\n" ~
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/RoutesFromDefinition.pm6 :60:
has Str $.path-template is required;
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/RoutesFromDefinition.pm6 :61:
has @.template-segments;
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/RoutesFromDefinition.pm6 :68:
if $!path-template.starts-with('/') {
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/RoutesFromDefinition.pm6 :69:
@!template-segments = $!path-template.substr(1).split('/');
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/RoutesFromDefinition.pm6 :72:
die "Invalid path template '$!path-template' (must start with '/')";
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/RoutesFromDefinition.pm6 :84:
:$!path-template, :$expected, :$got
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/RoutesFromDefinition.pm6 :103:
@!template-segments.grep(/^'{' .+ '}'$/).elems
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/RoutesFromDefinition.pm6 :242:
has @.template-segments;
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/RoutesFromDefinition.pm6 :248:
:@!template-segments
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/RoutesFromDefinition.pm6 :254:
:$!method, :&!implementation, :@!template-segments,
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/RoutesFromDefinition.pm6 :316:
for flat $paths.kv -> Str $path-template, $path {
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/RoutesFromDefinition.pm6 :320:
:method($method.uc), :$path-template, :$path, :$operation;
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/RoutesFromDefinition.pm6 :353:
:method('GET'), :template-segments(@path)
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/RoutesFromDefinition.pm6 :390:
:template-segments(.template-segments), :@before, :@after,
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/RoutesFromDefinition.pm6 :413:
:@parameters, :template-segments($op.template-segments),
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/AdaptHandler.pm6 :17:
method TWEAK(:@template-segments! --> Nil) {
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/AdaptHandler.pm6 :24:
for @template-segments {
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/Checkers.pm6 :223:
method TWEAK(:@parameters, :@template-segments, :%validate-options) {
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/Checkers.pm6 :225:
with @template-segments.first(:k, '{' ~ $param.name ~ '}') -> $index {
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/Checkers.pm6 :232:
die "Template parameter '$param.name()' not found in template '/@template-segments.join('/')'";
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/basic-operations.t :284:
path-template => '/pets/{petId}',
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/routes.t :67:
is $resp.status, 200, 'Valid 200 response returned for complex template';
JNTHN/IO-Socket-Async-SSL
…/SSL.pm6 :456:
warn "IO::Socket::Async::SSL: Failed to set temporary DH";
JNTHN/IO-Socket-Async-SSL
…/SSL.pm6 :464:
warn "IO::Socket::Async::SSL: Failed to set temporary ECDH";
JNTHN/JSON-Schema
…/.gitignore :14:
# temporary
JNTHN/JSON-Schema
…/Schema.pm6 :40:
uri-template => { so try Cro::Uri::URI-Template.parse($_) },
JNTHN/JSON-Schema
…/08-format.t :85:
format => 'uri-template'
JNTHN/OpenAPI-Model
…/OpenAPI.pm6 :48:
"Attempt to parse the document failed due to invalid format."
JNTHN/OpenAPI-Model
…/01-openapi-model-openapi.t :32:
"description": "Returns all pets from the system that the user has access to\nNam sed condimentum est. Maecenas tempor sagi…
JNTHN/OpenAPI-Model
…/05-references.t :125:
'Dies on attempt to resolve incorrect reference';
JNTHN/OpenAPI-Model
…/05-references.t :128:
'Dies on attempt to resolve incorrect reference on hash';
JNTHN/OpenAPI-Model
…/05-references.t :140:
'Dies on attempt to resolve external link without matching model';
JNTHN/OpenAPI-Schema-Validate
…/README.md :59:
* `uri-template` (a valid URI template as defined by RFC6570)
JNTHN/OpenAPI-Schema-Validate
…/Validate.pm6 :41:
uri-template => { Cro::Uri::URI-Template.parse($_) },
JNTHN/OpenAPI-Schema-Validate
…/format.t :93:
format => 'uri-template'
JNTHN/POFile
…/.gitignore :14:
# temporary
JNTHN/POFile
…/01-basic.t :203:
#| msgid "Elements with boiling point around this temperature:"
JNTHN/POFile
…/01-basic.t :204:
msgid "Elements with melting point around this temperature:"
JNTHN/POFile
…/01-basic.t :205:
msgstr "Elementi s tačkom ključanja u blizini ove temperature:"
JNTHN/POFile
…/01-basic.t :209:
is $result[0].fuzzy-msgid, '"Elements with boiling point around this temperature:"', 'Fuzzy msgid is set';
JNTHN/cro
…/cro-tool.md :155:
service's `.cro.yml`. This command will, provided there is a link template
JNTHN/cro
…/docker-deployment.md :32:
Which makes it accessible as port 20000 on the host. Cro does not attempt to
JNTHN/cro
…/index.md :100:
* Cro::Tools::LinkTemplate
JNTHN/cro
…/index.md :101:
* Cro::Tools::Template
JNTHN/cro
…/spa-with-cro.md :1225:
Finally, here's our first attempt at the `top-tips` method:
JNTHN/cro
…/cro-http-router.md :577:
response header. By default, `redirect` will result in a HTTP `307` temporary
JNTHN/cro
…/cro-http-router.md :580:
it is possible to pass `:temporary`. Alternatively, `:see-other` may be used
JNTHN/cro
…/cro-http-router.md :581:
to achieve a HTTP `303` response; this is temporary, but indicates that a `GET`
JNTHN/cro
…/cro-tools-linktemplate.md :3:
Link templates are used to generate code that sets up an inter-service link.
JNTHN/cro
…/cro-tools-linktemplate.md :7:
## Implementing a link template
JNTHN/cro
…/cro-tools-linktemplate.md :9:
Link templates exist per protocol, the protocol being that specified in the
JNTHN/cro
…/cro-tools-linktemplate.md :10:
`protocol` key of an `endpoint` in a `.cro.yml` file. Link template modules
JNTHN/cro
…/cro-tools-linktemplate.md :19:
the string name of the protocol that the template provides code for.
JNTHN/cro
…/cro-tools-template.md :4:
uses them as the backend to its service stubbing UI also. A template does the
JNTHN/cro
…/cro-tools-template.md :7:
will be identified as a template provided that, when the module is loaded,
JNTHN/cro
…/cro-tools-template.md :12:
The `id` method must be implemented, returning an ID for the template that
JNTHN/cro
…/cro-tools-template.md :17:
templates at at the command line when showing the list of available templates.
JNTHN/cro
…/cro-tools-template.md :19:
This is how they are implemented in the built-in HTTP service template, as an
JNTHN/cro
…/cro-tools-template.md :44:
it back to your template)
JNTHN/cro
…/cro-tools-template.md :53:
HTTP template:
JNTHN/cro
…/cro-tools-template.md :85:
the entered options. Here is the HTTP service template's implementation, as
JNTHN/cro
…/cro-tools-template.md :113:
It is left to the template to decide what to do. However, it's generally
JNTHN/cro
…/cro-tools-template.md :114:
expected that a template will:
JNTHN/cro
…/cro-uri.md :13:
Takes a string and attempts to parse it as an absolute URI.
JNTHN/cro
…/cro-websocket-frameparser.md :5:
`Cro::WebSocket::Frame`. It makes no attempt to interpret the
JNTHN/cro
…/releases.md :335:
* Refactor HTTP application templates for easier extensibility
JNTHN/cro
…/releases.md :336:
* Add a `cro stub` template for React/Redux Single Page Applications
JNTHN/cro
…/releases.md :351:
when stubbing, and there are improvements for those writing templates
JNTHN/cro
…/releases.md :380:
tasks between stub templates, and use it
JNTHN/cro
…/releases.md :381:
* Make existing templates more possible to subclass, to ease adding further
JNTHN/cro
…/releases.md :382:
stubbing templates
JNTHN/cro
…/releases.md :458:
templates and the new `cro link` sub-command
JNTHN/cro
…/releases.md :466:
* Disarm any Failure found in template locator, avoiding a lot of noise
JNTHN/cro
…/structuring-services.md :5:
The `cro stub` HTTP templates place that `route` block in a module, leaving
JNTHN/cro
…/CLI.pm6 :32:
my @templates = get-available-templates(Cro::Tools::Template);
JNTHN/cro
…/CLI.pm6 :33:
my $found = @templates.first(*.id eq $service-type);
JNTHN/cro
…/CLI.pm6 :37:
check-and-complete-template-options($found.options, %options);
JNTHN/cro
…/CLI.pm6 :40:
%options = request-template-options($found.options);
JNTHN/cro
…/CLI.pm6 :53:
note "Please report the following location to the template developer:";
JNTHN/cro
…/CLI.pm6 :61:
if @templates {
JNTHN/cro
…/CLI.pm6 :62:
conk "Couldn't find template '$service-type'. Available templates:\n" ~
JNTHN/cro
…/CLI.pm6 :63:
@templates.map(*.id).join(", ");
JNTHN/cro
…/CLI.pm6 :66:
conk "No templates available.";
JNTHN/cro
…/CLI.pm6 :70:
sub request-template-options(@template-options) {
JNTHN/cro
…/CLI.pm6 :71:
return {} unless @template-options;
JNTHN/cro
…/CLI.pm6 :74:
for @template-options -> $opt {
JNTHN/cro
…/CLI.pm6 :145:
sub check-and-complete-template-options(@template-options, %provided) {
JNTHN/cro
…/CLI.pm6 :146:
for @template-options -> $opt {
JNTHN/cro
…/CLI.pm6 :152:
conk "Sorry, this template requires the option '$opt.id()'.";
JNTHN/cro
…/CLI.pm6 :159:
if %provided > @template-options {
JNTHN/cro
…/CLI.pm6 :160:
my @unrec = keys %provided.keys (-) @template-options>>.id;
JNTHN/cro
…/Editor.pm6 :87:
my @templates = get-available-templates(Cro::Tools::LinkTemplate);
JNTHN/cro
…/Editor.pm6 :89:
for @templates {
JNTHN/cro
…/LinkTemplate.pm6 :26:
my @link-templates = get-available-templates(Cro::Tools::LinkTemplate);
JNTHN/cro
…/LinkTemplate.pm6 :44:
my $gl-template = @link-templates.grep(*.protocol eq $endpoint.protocol)[0];
JNTHN/cro
…/LinkTemplate.pm6 :45:
unless $gl-template ~~ Cro::Tools::LinkTemplate {
JNTHN/cro
…/LinkTemplate.pm6 :46:
conk "There is no link template for protocol {$endpoint.protocol}.";
JNTHN/cro
…/LinkTemplate.pm6 :48:
my $generated = $gl-template.generate($service, $endpoint.id,
JNTHN/cro
…/TemplateLocator.pm6 :5:
sub get-available-templates($pattern, Supplier $warnings?) is export {
JNTHN/cro
…/TemplateLocator.pm6 :27:
my @template-modules = @modules-found
JNTHN/cro
…/TemplateLocator.pm6 :31:
my @templates;
JNTHN/cro
…/TemplateLocator.pm6 :32:
for @template-modules {
JNTHN/cro
…/TemplateLocator.pm6 :40:
push @templates, $_;
JNTHN/cro
…/TemplateLocator.pm6 :47:
return @templates;
JNTHN/cro
…/Web.pm6 :75:
my @templates = get-available-templates(Cro::Tools::Template);
JNTHN/cro
…/Web.pm6 :76:
my $found = @templates.first(*.id eq %json<type>);
JNTHN/cro
…/Web.pm6 :214:
my @templates = get-available-templates(Cro::Tools::Template);
JNTHN/cro
…/Web.pm6 :220:
for @templates -> $_ {
JNTHN/cro
…/Web.pm6 :236:
templates => @result
JNTHN/cro
…/bootstrap.min.css :5:
*//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-siz…
JNTHN/cro
…/app.js :1984:
// Remove hasOwnProperty from the template to make it generic
JNTHN/cro
…/app.js :4388:
* @param {*} self A *temporary* helper to detect places where `this` is
JNTHN/cro
…/app.js :5048:
lowPriorityWarning(warnedForCreateClass, 'Accessing createClass via the main React package is deprecated,' + ' and will be removed in React v…
JNTHN/cro
…/app.js :5521:
* Attempts to match a pattern on the given pathname. Patterns may use
JNTHN/cro
…/app.js :5836:
add(temp, y, this.t);
JNTHN/cro
…/app.js :5837:
add(this, temp.s, this.s);
JNTHN/cro
…/app.js :5838:
if (this.s) this.t += temp.t;
JNTHN/cro
…/app.js :5839:
else this.s = temp.t;
JNTHN/cro
…/app.js :5846:
var temp = new Adder;
JNTHN/cro
…/app.js :7481:
!!EventPluginRegistry.eventNameDispatchConfigs.hasOwnProperty(eventName) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'EventPluginHub: More than one plugin attempted to publish the same event name, `%s`.', eventName) : _prodInvariant('99', eventName) : void 0;
JNTHN/cro
…/app.js :7509:
!!EventPluginRegistry.registrationNameModules[registrationName] ? process.env.NODE_ENV !== 'production' ? invariant(false, 'EventPluginHub: More than one plugin attempted to publish the same registration name, `%s`.', registrationName) : _prodInvariant('100', registrationName) : void 0;
JNTHN/cro
…/app.js :8003:
// SVG temp container for IE lacking innerHTML
JNTHN/cro
…/app.js :8016:
// new markup in a temp node and then move the child nodes across into
JNTHN/cro
…/app.js :8055:
// Recover leading whitespace by temporarily prepending any character.
JNTHN/cro
…/app.js :11884:
var specialTags = ['address', 'applet', 'area', 'article', 'aside', 'base', 'basefont', 'bgsound', 'blockquote', 'body', 'br', 'button', 'caption',…
JNTHN/cro
…/app.js :11887:
var inScopeTags = ['applet', 'caption', 'html', 'table', 'td', 'th', 'marquee', 'object', 'template',
JNTHN/cro
…/app.js :11982:
return tag === 'th' || tag === 'td' || tag === 'style' || tag === 'script' || tag === 'template';
JNTHN/cro
…/app.js :11987:
return tag === 'tr' || tag === 'style' || tag === 'script' || tag === 'template';
JNTHN/cro
…/app.js :11990:
return tag === 'col' || tag === 'template';
JNTHN/cro
…/app.js :11993:
return tag === 'caption' || tag === 'colgroup' || tag === 'tbody' || tag === 'tfoot' || tag === 'thead' || tag === 'style' || tag === 'script' || tag === 'template';
JNTHN/cro
…/app.js :11996:
return tag === 'base' || tag === 'basefont' || tag === 'bgsound' || tag === 'link' || tag === 'meta' || tag === 'title' || tag === 'noscript' || tag === 'noframes' || tag === 'style' || tag === 'script' || tag === 'template';
JNTHN/cro
…/app.js :13027:
// enough that all such attempts are guarded in a try block.
JNTHN/cro
…/app.js :15345:
var temp, i, elem,
JNTHN/cro
…/app.js :15376:
temp = condense( matcherOut, postMap );
JNTHN/cro
…/app.js :15377:
postFilter( temp, [], context, xml );
JNTHN/cro
…/app.js :15380:
i = temp.length;
JNTHN/cro
…/app.js :15382:
if ( (elem = temp[i]) ) {
JNTHN/cro
…/app.js :15392:
temp = [];
JNTHN/cro
…/app.js :15397:
temp.push( (matcherIn[i] = elem) );
JNTHN/cro
…/app.js :15400:
postFinder( null, (matcherOut = []), temp, xml );
JNTHN/cro
…/app.js :15407:
(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {
JNTHN/cro
…/app.js :15409:
seed[temp] = !(results[temp] = elem);
JNTHN/cro
…/app.js :16185:
// Treat the template element as a regular one in browsers that
JNTHN/cro
…/app.js :16187:
if ( nodeName( elem, "template" ) ) {
JNTHN/cro
…/app.js :16560:
// Ignore double-resolution attempts
JNTHN/cro
…/app.js :17298:
// throw an exception if an attempt to read a data cache is made.
JNTHN/cro
…/app.js :17301:
// Attempt to get data from the cache
JNTHN/cro
…/app.js :17308:
// Attempt to "discover" the data in
JNTHN/cro
…/app.js :17584:
var temp,
JNTHN/cro
…/app.js :17593:
temp = doc.body.appendChild( doc.createElement( nodeName ) );
JNTHN/cro
…/app.js :17594:
display = jQuery.css( temp, "display" );
JNTHN/cro
…/app.js :17596:
temp.parentNode.removeChild( temp );
JNTHN/cro
…/app.js :19698:
// attempt a parseFloat and fallback to a string if the parse fails.
JNTHN/cro
…/app.js :19894:
// Get nonempty value(s) by temporarily forcing visibility
JNTHN/cro
…/app.js :20039:
temp = remaining / animation.duration || 0,
JNTHN/cro
…/app.js :20040:
percent = 1 - temp,
JNTHN/cro
…/app.js :20582:
// Avoid an infinite loop by temporarily removing this function from the getter
JNTHN/cro
…/app.js :28723:
'ReactClassInterface: You are attempting to override ' +
JNTHN/cro
…/app.js :28734:
'ReactClassInterface: You are attempting to define ' +
JNTHN/cro
…/app.js :28755:
"%s: You're attempting to include a mixin that is either null " +
JNTHN/cro
…/app.js :28770:
"ReactClass: You're attempting to " +
JNTHN/cro
…/app.js :28776:
"ReactClass: You're attempting to " +
JNTHN/cro
…/app.js :28872:
'ReactClass: You are attempting to define a reserved ' +
JNTHN/cro
…/app.js :28882:
'ReactClass: You are attempting to define ' +
JNTHN/cro
…/app.js :31341:
// This is temporarily available for custom components that are not string
JNTHN/cro
…/app.js :31787:
console.error('Attempted to listen to events during the capture phase on a ' + 'browser that does not support the capture phase. Your application ' + 'will not receive some events.');
JNTHN/cro
…/app.js :32414:
process.env.NODE_ENV !== 'production' ? warning(!nodeIsRenderedByOtherInstance(container), "unmountComponentAtNode(): The node you're attempting to unmount " + 'was rendered by another copy of React.') : void 0;
JNTHN/cro
…/app.js :32427:
process.env.NODE_ENV !== 'production' ? warning(!containerHasNonRootReactChild, "unmountComponentAtNode(): The node you're attempti…
JNTHN/cro
…/app.js :32478:
process.env.NODE_ENV !== 'production' ? warning(false, 'React attempted to reuse markup in a container but the ' + 'checksum was …
JNTHN/cro
…/app.js :33440:
// attempt to access window.sessionStorage.
JNTHN/cro
…/app.js :33464:
// attempt to access window.sessionStorage.
JNTHN/cro
…/app.js :36099:
// Attempt to place each remaining circle…
JNTHN/cro
…/app.js :39789:
var _temp, _this, _ret;
JNTHN/cro
…/app.js :39797:
return _ret = (_temp = (_this = _possibleConstructorReturn(this, _React$Component.call.apply(_React$Component, [this].concat(args))), _this), _this._mountOverlayTarget = function () {
JNTHN/cro
…/app.js :39839:
}, _temp), _possibleConstructorReturn(_this, _ret);
JNTHN/cro
…/app.js :48094:
var tempStyle = document.createElement('div').style;
JNTHN/cro
…/app.js :48097:
tempStyle.font = '';
JNTHN/cro
…/app.js :48696:
* Attempts to determine the correct vendor prefixed event name.
JNTHN/cro
…/app.js :48948:
// We need to temporarily unset name to avoid disrupting radio button groups.
JNTHN/cro
…/app.js :50494:
!(inst != null) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Attempted to update component `%s` that has already been un…
JNTHN/cro
…/app.js :50760:
process.env.NODE_ENV !== 'production' ? warning(publicComponentInstance != null || component._compositeType !== CompositeTypes.StatelessFunctio…
JNTHN/cro
…/app.js :51432:
for (var tempA = instA; tempA; tempA = tempA._hostParent) {
JNTHN/cro
…/app.js :51436:
for (var tempB = instB; tempB; tempB = tempB._hostParent) {
JNTHN/cro
…/app.js :52060:
* high level DOM manipulations (like temporarily removing a text input from the
JNTHN/cro
…/app.js :52303:
var tempRange = currentRange.cloneRange();
JNTHN/cro
…/app.js :52304:
tempRange.selectNodeContents(node);
JNTHN/cro
…/app.js :52305:
tempRange.setEnd(currentRange.startContainer, currentRange.startOffset);
JNTHN/cro
…/app.js :52307:
var isTempRangeCollapsed = isCollapsed(tempRange.startContainer, tempRange.startOffset, tempRange.endContainer, tempRange.endOffset);
JNTHN/cro
…/app.js :52309:
var start = isTempRangeCollapsed ? 0 : tempRange.toString().length;
JNTHN/cro
…/app.js :52375:
var temp = end;
JNTHN/cro
…/app.js :52377:
start = temp;
JNTHN/cro
…/app.js :54421:
this.shouldAttemptReconnect = !!this.reconnectInterval;
JNTHN/cro
…/app.js :54429:
this.shouldAttemptReconnect = !!this.reconnectInterval;
JNTHN/cro
…/app.js :54440:
this.shouldAttemptReconnect = false;
JNTHN/cro
…/app.js :54455:
if (this.shouldAttemptReconnect && this.retryCount > 0) {
JNTHN/cro
…/app.js :57160:
props.template !== null && _react2.default.createElement(
JNTHN/cro
…/app.js :57166:
props.template.name,
JNTHN/cro
…/app.js :57171:
props.template.id
JNTHN/cro
…/app.js :57174:
props.template.options.map(function (opt, index) {
JNTHN/cro
…/app.js :57222:
return props.onStubSent(props.idText, props.nameText, props.pathText, props.template.id, props.template.options.map(function (e) {
JNTHN/cro
…/app.js :57298:
{ className: "control-label", htmlFor: "templateSelectInput" },
JNTHN/cro
…/app.js :57303:
{ id: "templateSelectInput", defaultValue: this.props.stubReducer.current && this.props.stubReducer.current.id || '', className: "form-control", onChange: function onChange(e) {
JNTHN/cro
…/app.js :57306:
this.props.stubReducer.templates.map(function (t) {
JNTHN/cro
…/app.js :57318:
template: this.props.stubReducer.current,
JNTHN/cro
…/app.js :57369:
templates: [],
JNTHN/cro
…/app.js :57411:
var templates = action.templates;
JNTHN/cro
…/app.js :57412:
templates.sort(function (a, b) {
JNTHN/cro
…/app.js :57415:
return _extends({}, state, { templates: templates,
JNTHN/cro
…/app.js :57416:
current: action.templates[0] });
JNTHN/cro
…/app.js :57427:
return _extends({}, state, { current: state.templates[action.index], notify: '' });
JNTHN/cro
…/app.js :74958:
var _class, _temp;
JNTHN/cro
…/app.js :74972:
(0, _invariant2.default)(isCompositeComponent || !methods.length, '[uncontrollable] stateless function components cannot pass through methods ' +…
JNTHN/cro
…/app.js :74982:
var component = (_temp = _class = function (_React$Component) {
JNTHN/cro
…/app.js :75068:
}(_react2.default.Component), _class.displayName = 'Uncontrolled(' + displayName + ')', _class.propTypes = propTypes, _temp);
JNTHN/cro
…/app.js :78125:
var _temp, _this, _ret;
JNTHN/cro
…/app.js :78133:
return _ret = (_temp = (_this = _possibleConstructorReturn(this, _React$Component.call.apply(_React$Component, [this].concat(args))), _this), _initialiseProps.call(_this), _temp), _possibleConstructorReturn(_this, _ret);
JNTHN/cro
…/app.js :78950:
var BLACKLIST = ['template', 'script', 'style'];
JNTHN/cro
…/tools-runner.t :9:
my $temp-dir = "$*TMPDIR/cro-test-{(0..9).roll(40).join}";
JNTHN/cro
…/tools-runner.t :10:
mkdir $temp-dir;
JNTHN/cro
…/tools-runner.t :11:
cp 't/tools-services-test-dir', $temp-dir, :r;
JNTHN/cro
…/tools-runner.t :12:
LEAVE rm_rf $temp-dir;
JNTHN/cro
…/tools-runner.t :13:
test-case($temp-dir);
JNTHN/cro
…/tools-runner.t :28:
diag "Check service up attempt {$i+1}: $_";
JNTHN/cro
…/tools-services.t :6:
my $temp-dir = "$*TMPDIR/cro-test-{(0..9).roll(40).join}";
JNTHN/cro
…/tools-services.t :7:
mkdir $temp-dir;
JNTHN/cro
…/tools-services.t :8:
cp 't/tools-services-test-dir', $temp-dir, :r;
JNTHN/cro
…/tools-services.t :9:
LEAVE rm_rf $temp-dir;
JNTHN/cro
…/tools-services.t :10:
test-case($temp-dir);
JNTHN/cro
…/package-lock.json :165:
"babel-template": "6.26.0",
JNTHN/cro
…/package-lock.json :239:
"babel-template": "6.26.0",
JNTHN/cro
…/package-lock.json :294:
"babel-template": "6.26.0",
JNTHN/cro
…/package-lock.json :306:
"babel-template": "6.26.0"
JNTHN/cro
…/package-lock.json :381:
"babel-template": "6.26.0",
JNTHN/cro
…/package-lock.json :399:
"babel-template": "6.26.0",
JNTHN/cro
…/package-lock.json :411:
"babel-template": "6.26.0"
JNTHN/cro
…/package-lock.json :470:
"babel-template": "6.26.0"
JNTHN/cro
…/package-lock.json :481:
"babel-template": "6.26.0",
JNTHN/cro
…/package-lock.json :493:
"babel-template": "6.26.0"
JNTHN/cro
…/package-lock.json :504:
"babel-template": "6.26.0"
JNTHN/cro
…/package-lock.json :526:
"babel-template": "6.26.0",
JNTHN/cro
…/package-lock.json :561:
"babel-plugin-transform-es2015-template-literals": {
JNTHN/cro
…/package-lock.json :563:
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz",
JNTHN/cro
…/package-lock.json :695:
"babel-plugin-transform-es2015-template-literals": "6.22.0",
JNTHN/cro
…/package-lock.json :748:
"babel-template": {
JNTHN/cro
…/package-lock.json :750:
"resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz",
JNTHN/cro
…/components.js :12:
{props.template !== null &&<div>
JNTHN/cro
…/components.js :13:
<h3>{props.template.name} <small>{props.template.id}</small></h3>
JNTHN/cro
…/components.js :14:
{props.template.options.map((opt, index) => (
JNTHN/cro
…/components.js :44:
props.template.id,
JNTHN/cro
…/components.js :45:
props.template.options.map(e => ( [e[0], e[3]] )),
JNTHN/cro
…/components.js :77:
<label className="control-label" htmlFor="templateSelectInput">Service Template</label>
JNTHN/cro
…/components.js :78:
<select id="templateSelectInput" defaultValue={this.props.stubReducer.current && this.props.stubReducer.current.id || ''} className="form-control" onChange={(e) => this.props.onStubSelect(e.target.selectedIndex)}>
JNTHN/cro
…/components.js :79:
{this.props.stubReducer.templates.map(t => (
JNTHN/cro
…/components.js :88:
template={this.props.stubReducer.current}
JNTHN/cro
…/reducer.js :5:
templates: [],
JNTHN/cro
…/reducer.js :45:
var templates = action.templates;
JNTHN/cro
…/reducer.js :46:
templates.sort(function(a, b) {
JNTHN/cro
…/reducer.js :49:
return { ...state, templates,
JNTHN/cro
…/reducer.js :50:
current: action.templates[0] }
JNTHN/cro
…/reducer.js :61:
return { ...state, current: state.templates[action.index], notify: '' }
JSTOWE/AccessorFacade
…/Changes :14:
* Attempt to coerce input as well. Fix up the rest of the documentation
JSTOWE/Acme-Insult-Lala
…/lala.txt :13:
distempered dog-hearted crutch
JSTOWE/Audio-Encode-LameMP3
…/LameMP3.pm :81:
the first encode method is called. It is an error to attempt to set any encoding
JSTOWE/Audio-Hydrogen
…/make-drumkit :20:
because it doesn't make any attempt to understand the files themselves
JSTOWE/Audio-Icecast
…/Icecast.pm :354:
has URI::Template $.base-template;
JSTOWE/Audio-Icecast
…/Icecast.pm :368:
method base-template( --> URI::Template ) handles <process> {
JSTOWE/Audio-Icecast
…/Icecast.pm :369:
$!base-template //= do {
JSTOWE/Audio-Icecast
…/Icecast.pm :370:
URI::Template.new(template => self.base-url);
JSTOWE/Audio-Libshout
…/Documentation.md :78:
This will send the Buf of unsigned chars (uint8,) to the server. The buffer must contain data encoded as per that set for `format` (i…
JSTOWE/Audio-Libshout
…/Libshout.pm :112:
between each attempt to send or an exception may be thrown indicating
JSTOWE/Audio-Liquidsoap
…/Liquidsoap.pm :452:
=head3 attribute temporary
JSTOWE/Audio-Liquidsoap
…/Liquidsoap.pm :454:
A Bool indicating whether "filename" represents a temporary
JSTOWE/Audio-Liquidsoap
…/Liquidsoap.pm :516:
Attempts to start this input returning a Bool to indicate success or otherwise.
JSTOWE/Audio-Liquidsoap
…/Liquidsoap.pm :537:
Attempt to kick (disconnect) the current connected client, returning a Bool to
JSTOWE/Audio-Liquidsoap
…/Liquidsoap.pm :897:
has Bool $.temporary;
JSTOWE/Audio-Liquidsoap
…/Liquidsoap.pm :906:
multi sub meta-value('temporary', Str:D $value) {
JSTOWE/Audio-Playlist-JSPF
…/LICENCE :167:
expressly provided under this License. Any attempt otherwise to copy, modify,
JSTOWE/Audio-Playlist-JSPF
…/LICENCE :368:
provided that the use of this Package is embedded; that is, when no overt attempt
JSTOWE/Audio-Sndfile
…/Documentation.md :128:
This closes the file stream for the opened file. Attempting to write or read the object after this has been called is an error.
JSTOWE/Audio-Sndfile
…/Documentation.md :295:
This returns a Bool to indicate whether the format in the current object makes sense. Attempting to use a setting of format where this is not true will cause an exception to be thrown.
JSTOWE/Audio-Sndfile
…/Sndfile.pm :179:
This closes the file stream for the opened file. Attempting to write or
JSTOWE/Audio-Sndfile
…/Info.pm :80:
sense. Attempting to use a setting of L<format|#format> where this is not true will cause
JSTOWE/CheckSocket
…/CheckSocket.pm :34:
This attempts to connect to the socket specified by $port and $host and
JSTOWE/CheckSocket
…/CheckSocket.pm :36:
caused by the attempt and return C<False>. It makes no attempt to
JSTOWE/CheckSocket
…/CheckSocket.pm :45:
This attempts to connects to the socket specified by $port and $host
JSTOWE/Device-Velleman-K8055
…/README.md :84:
the module, it will attempt to skip most of the tests and
JSTOWE/Device-Velleman-K8055
…/K8055.pm :62:
The constructor of the class. This will attempt to open the
JSTOWE/FastCGI-NativeCall-PSGI
…/ngingx.conf :11:
client_body_temp_path /tmp/nginx/client_body;
JSTOWE/FastCGI-NativeCall-PSGI
…/ngingx.conf :12:
proxy_temp_path /tmp/nginx/proxy;
JSTOWE/FastCGI-NativeCall-PSGI
…/ngingx.conf :13:
fastcgi_temp_path /tmp/nginx/fastcgi;
JSTOWE/FastCGI-NativeCall-PSGI
…/ngingx.conf :14:
uwsgi_temp_path /tmp/nginx/uwsgi;
JSTOWE/FastCGI-NativeCall-PSGI
…/ngingx.conf :15:
scgi_temp_path /tmp/nginx/scgi;
JSTOWE/FastCGI-NativeCall
…/ngingx.conf :11:
client_body_temp_path /tmp/nginx/client_body;
JSTOWE/FastCGI-NativeCall
…/ngingx.conf :12:
proxy_temp_path /tmp/nginx/proxy;
JSTOWE/FastCGI-NativeCall
…/ngingx.conf :13:
fastcgi_temp_path /tmp/nginx/fastcgi;
JSTOWE/FastCGI-NativeCall
…/ngingx.conf :14:
uwsgi_temp_path /tmp/nginx/uwsgi;
JSTOWE/FastCGI-NativeCall
…/ngingx.conf :15:
scgi_temp_path /tmp/nginx/scgi;
JSTOWE/FastCGI-NativeCall
…/configure :1427:
# When interrupted or exit'd, cleanup temporary files, and complete
JSTOWE/FastCGI-NativeCall
…/configure :4296:
\`$as_me' instantiates files from templates according to the
JSTOWE/FastCGI-NativeCall
…/configure :4304:
-d, --debug don't remove temporary files
JSTOWE/FastCGI-NativeCall
…/configure :4437:
# Have a temporary directory for convenience. Make it in the build tree
JSTOWE/FastCGI-NativeCall
…/configure :4454:
tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
JSTOWE/FastCGI-NativeCall
…/configure :4462:
echo "$me: cannot create a temporary directory in ." >&2
JSTOWE/FastCGI-NativeCall
…/fcgiapp.c :462:
* and %f is not attempted on the fast path due to
JSTOWE/FastCGI-NativeCall
…/fcgiapp.c :1518:
* protocol error. SKIP for attempt to multiplex
JSTOWE/JSON-Infer
…/LICENCE :167:
expressly provided under this License. Any attempt otherwise to copy, modify,
JSTOWE/JSON-Infer
…/LICENCE :368:
provided that the use of this Package is embedded; that is, when no overt attempt
JSTOWE/Linux-Cpuinfo
…/cpuinfo.ppc :3:
temperature : 0 C
JSTOWE/Lumberjack-Application
…/.layout :19:
"name": "020-template.t"
JSTOWE/Lumberjack-Application
…/.layout :65:
"name": "templates",
JSTOWE/Lumberjack-Application
…/META6.json :15:
"templates/index.tt"
JSTOWE/Lumberjack-Application
…/Index.pm :27:
The text of the page itself is rendered from a template that is located
JSTOWE/Lumberjack-Application
…/Index.pm :31:
the application yourself, and just use this code and/or the template
JSTOWE/Lumberjack-Application
…/Index.pm :49:
has Template6 $!template;
JSTOWE/Lumberjack-Application
…/Index.pm :53:
$!template = Template6.new;
JSTOWE/Lumberjack-Application
…/Index.pm :55:
$provider.add-path('templates');
JSTOWE/Lumberjack-Application
…/Index.pm :56:
$!template.add-provider('resources', $provider);
JSTOWE/Lumberjack-Application
…/Index.pm :57:
$!template.add-path('templates');
JSTOWE/Lumberjack-Application
…/Index.pm :61:
my $html = $!template.process('index', ws-url => $!ws-url);
JSTOWE/Lumberjack-Application
…/Proxy.pm :41:
are provided, it will attempt to authenticate with the HTTP
JSTOWE/Lumberjack-Application
…/JSON.pm :75:
The 'class' object in the JSON when de-serialised may cause a temporary type
JSTOWE/Lumberjack-Application
…/Provider.pm :7:
Lumberjack::Template::Provider - Template6::Provider to get template from %?RESOURCES
JSTOWE/Lumberjack-Application
…/Provider.pm :13:
a template from C<%?RESOURCES>. As it is currently implemented
JSTOWE/Lumberjack-Application
…/Provider.pm :26:
my Str $template;
JSTOWE/Lumberjack-Application
…/Provider.pm :27:
if %.templates{$name}:exists {
JSTOWE/Lumberjack-Application
…/Provider.pm :28:
$template = %.templates{$name};
JSTOWE/Lumberjack-Application
…/Provider.pm :34:
$template = %?RESOURCES{$file}.slurp;
JSTOWE/Lumberjack-Application
…/Provider.pm :35:
%.templates{$name} = $template;
JSTOWE/Lumberjack-Application
…/Provider.pm :40:
return $template;
JSTOWE/Lumberjack-Application
…/020-template.t :9:
# This exercises the template provider in much the same way
JSTOWE/Lumberjack-Application
…/020-template.t :12:
my $template = Template6.new;
JSTOWE/Lumberjack-Application
…/020-template.t :19:
lives-ok { $provider.add-path('templates') }, "add-path";
JSTOWE/Lumberjack-Application
…/020-template.t :21:
lives-ok { $template.add-provider('resources', $provider) }, "add the provider";
JSTOWE/Lumberjack-Application
…/020-template.t :23:
$template.add-path('templates');
JSTOWE/Lumberjack-Application
…/020-template.t :27:
lives-ok { $str = $template.process('index', ws-url => 'http://localhost/foo') }, "process";
JSTOWE/Lumberjack-Dispatcher-Syslog
…/Documentation.md :68:
This is a Hash mapping the `Lumberjack::Level` levels of the incoming messages to the `Log::Syslog::Native::LogLevel` "priority" of the syslog. The d…
JSTOWE/Lumberjack-Dispatcher-Syslog
…/Syslog.pm :95:
logged. The default mapping attempts to avoid using any priority that
JSTOWE/META6
…/projects.json :640:
"source-url" : "git://github.com/supernovus/temporal-utils.git",
JSTOWE/META6
…/projects.json :698:
"description" : "A template engine abstraction layer for web frameworks.",
JSTOWE/META6
…/projects.json :699:
"source-url" : "git://github.com/supernovus/perl6-web-template.git",
JSTOWE/META6
…/projects.json :855:
"source-url" : "git://github.com/supernovus/template6.git",
JSTOWE/META6
…/projects.json :857:
"description" : "A template engine inspired by TT.",
JSTOWE/META6
…/projects.json :904:
"description" : "A Genshi-like template engine",
JSTOWE/META6
…/projects.json :1078:
"source-url" : "git://github.com/masak/html-template.git",
JSTOWE/META6
…/projects.json :1920:
"description" : "An attempt to simplify native compilation",
JSTOWE/META6
…/projects.json :2282:
"description" : "A templating system similar to Perl 5's Mojo::Template",
JSTOWE/META6
…/projects.json :2374:
"description" : "Create temporary files & directories",
JSTOWE/META6
…/projects.json :4136:
"description" : "Simple templates for Perl 6",
JSTOWE/META6
…/projects.json :4182:
"description" : "A logic-free, cross-language templating format",
JSTOWE/META6
…/projects.json :5318:
"source-url" : "git://github.com/tony-o/perl6-template-protone.git",
JSTOWE/META6
…/projects.json :5320:
"bugtracker" : "https://github.com/tony-o/perl6-template-protone/issues"
JSTOWE/META6
…/projects.json :5323:
"description" : "Perl6 embedded templates",
JSTOWE/META6
…/projects.json :5596:
"description" : "The anti-template templating tool.",
JSTOWE/META6
…/projects.json :6981:
"description" : "the xml/html templating system that came after hipccup",
JSTOWE/META6
…/projects.json :8297:
"description" : "Convert lists into linguistic conjunctions and fill them into a template",
JSTOWE/META6
…/projects.json :8584:
"description" : "RPi::Device::DS18B20 provides support for the DS18B20 family of temperature sensors.",
JSTOWE/META6
…/projects.json :10851:
"description" : "Render text template with embedded variables and Perl6 code",
JSTOWE/META6
…/projects.json :11221:
"templates/index.tt"
JSTOWE/MQ-Posix
…/Documentation.md :94:
This closes the queue handle that will have been opened if the queue was written to or read, after this has been called an exception will be thrown if attempting to read or write. If `Supply` was called the thread it started will finish.
JSTOWE/MQ-Posix
…/Posix.pm :138:
will be thrown if attempting to read or write. If C<Supply> was
JSTOWE/Monitor-Monit
…/README.md :35:
attempt to connect to a monit daemon on the local host with the default
JSTOWE/Monitor-Monit
…/README.md :52:
a true value, the tests will attempt to control the services, you probably don't
JSTOWE/Monitor-Monit
…/Monit.pm :324:
has URI::Template $!base-template;
JSTOWE/Monitor-Monit
…/Monit.pm :326:
method base-template( --> URI::Template ) handles <process> {
JSTOWE/Monitor-Monit
…/Monit.pm :327:
$!base-template //= URI::Template.new(template => self.base-url);
JSTOWE/Oyatul
…/README.md :28:
"template" : true
JSTOWE/Oyatul
…/README.md :43:
# for any templates if they exist.
JSTOWE/Oyatul
…/README.md :49:
# get all the instances for 'test' excluding the template
JSTOWE/Oyatul
…/Oyatul.pm :31:
"template" : true
JSTOWE/Oyatul
…/Oyatul.pm :46:
# for any templates if they exist.
JSTOWE/Oyatul
…/Oyatul.pm :52:
# get all the instances for 'test' excluding the template
JSTOWE/Oyatul
…/Oyatul.pm :123:
supplied any templates found in the layout will have File or Directory
JSTOWE/Oyatul
…/Oyatul.pm :125:
of the template.
JSTOWE/Oyatul
…/Oyatul.pm :156:
This causes all the 'real' (i.e. non-template) nodes in the layout to
JSTOWE/Oyatul
…/Oyatul.pm :193:
This will attempt to create an empty file with the name of this L<File>
JSTOWE/Oyatul
…/Oyatul.pm :203:
This will attempt to delete the physical file that this File object
JSTOWE/Oyatul
…/Oyatul.pm :211:
represents a file, it will be called by C<realise-template> with
JSTOWE/Oyatul
…/Oyatul.pm :213:
whether it is suitable match for the template. If some more
JSTOWE/Oyatul
…/Oyatul.pm :215:
specified by the C<does> key for the template.
JSTOWE/Oyatul
…/Oyatul.pm :247:
This will attempt to create the filesystem structure this directory
JSTOWE/Oyatul
…/Oyatul.pm :257:
represents a directory, it will be called by C<realise-template> with
JSTOWE/Oyatul
…/Oyatul.pm :259:
whether it is suitable match for the template. If some more
JSTOWE/Oyatul
…/Oyatul.pm :261:
specified by the C<does> key for the template.
JSTOWE/Oyatul
…/Oyatul.pm :282:
=head3 method template-for-purpose
JSTOWE/Oyatul
…/Oyatul.pm :284:
method template-for-purpose (Oyatul::Parent: Str $purpose --> Oyatul::Template)
JSTOWE/Oyatul
…/Oyatul.pm :289:
If more than one template exists for the same purpose then only the
JSTOWE/Oyatul
…/Oyatul.pm :298:
specified purpose. If the C<real> adverb is supplied only the non-template
JSTOWE/Oyatul
…/Oyatul.pm :321:
This will attempt to delete the entire tree starting at this node, by
JSTOWE/Oyatul
…/Oyatul.pm :325:
application as whilst it will only attempt to delete those nodes described
JSTOWE/Oyatul
…/Oyatul.pm :326:
by the layout, it will attempt to delete the C<root> if this is a Layout
JSTOWE/Oyatul
…/Oyatul.pm :329:
=head3 method realise-templates
JSTOWE/Oyatul
…/Oyatul.pm :331:
method realise-templates (Oyatul::Parent:)
JSTOWE/Oyatul
…/Oyatul.pm :333:
This will attempt to create 'real' L<Oyatul::Node> objects for all nodes
JSTOWE/Oyatul
…/Oyatul.pm :334:
that are found in the place of a template in the layout, that is if
JSTOWE/Oyatul
…/Oyatul.pm :335:
the template is a file and a file is found in the enclosing directory
JSTOWE/Oyatul
…/Oyatul.pm :346:
for the C<template> key, it is a placeholder for any number of
JSTOWE/Oyatul
…/Oyatul.pm :372:
This is called on the template object by C<gather-instances> with
JSTOWE/Oyatul
…/Oyatul.pm :382:
This will be called by C<realise-templates> for each template in the
JSTOWE/Oyatul
…/Oyatul.pm :383:
tree. For each filesystem node in the same location as the template
JSTOWE/Oyatul
…/Oyatul.pm :388:
=head3 method is-template
JSTOWE/Oyatul
…/Oyatul.pm :390:
method is-template ($?CLASS:)
JSTOWE/Oyatul
…/Oyatul.pm :403:
required for all objects that are not templates.
JSTOWE/Oyatul
…/Oyatul.pm :441:
=head3 method is-template
JSTOWE/Oyatul
…/Oyatul.pm :443:
method is-template (Oyatul::Node: --> Bool)
JSTOWE/Oyatul
…/Oyatul.pm :513:
=head3 template
JSTOWE/Oyatul
…/Oyatul.pm :516:
a template or not, if it is true then the role L<Oyatul::Template>
JSTOWE/Oyatul
…/Oyatul.pm :564:
method is-template() {
JSTOWE/Oyatul
…/Oyatul.pm :633:
%h<template> ?? $type but Template[$type] !! $type;
JSTOWE/Oyatul
…/Oyatul.pm :675:
method template-for-purpose(Str $purpose --> Template ) {
JSTOWE/Oyatul
…/Oyatul.pm :676:
self.nodes-for-purpose($purpose).grep(*.is-template).first;
JSTOWE/Oyatul
…/Oyatul.pm :679:
method all-templates() {
JSTOWE/Oyatul
…/Oyatul.pm :683:
method realise-templates() {
JSTOWE/Oyatul
…/Oyatul.pm :685:
for self.all-templates -> $template {
JSTOWE/Oyatul
…/Oyatul.pm :686:
@reals.append: $template.gather-instances;
JSTOWE/Oyatul
…/Oyatul.pm :714:
method is-template() {
JSTOWE/Oyatul
…/Oyatul.pm :836:
$layout.realise-templates
JSTOWE/Oyatul
…/030-detail.t :24:
my $view-template;
JSTOWE/Oyatul
…/030-detail.t :27:
lives-ok { $view-template = $layout.template-for-purpose('view') } , "template-for-purpose";
JSTOWE/Oyatul
…/030-detail.t :28:
does-ok $view-template, Oyatul::Template, "and it is a template";
JSTOWE/Oyatul
…/030-detail.t :33:
lives-ok { $real-view = $view-template.make-real('by-name') }, "make-real";
JSTOWE/Oyatul
…/030-detail.t :37:
lives-ok { $layout.create }, "create with realised template";
JSTOWE/Oyatul
…/030-detail.t :46:
ok $child.IO.e, "path got by all-children '{ $child.path }' exists (with template instances)";
JSTOWE/Oyatul
…/030-detail.t :55:
lives-ok { ok $layout.delete, "delete" }, "delete (with templates)";
JSTOWE/Oyatul
…/040-synopsis.t :21:
"template" : true
JSTOWE/Oyatul
…/040-synopsis.t :36:
# for any templates if they exist.
JSTOWE/Oyatul
…/040-synopsis.t :44:
# get all the instances for 'test' excluding the template
JSTOWE/Oyatul
…/couchapp.layout :11:
"template" : true,
JSTOWE/Printing-Jdf
…/README.md :12:
this module to list the templates, adjustments and page details from a
JSTOWE/Printing-Jdf
…/README.md :63:
<IO::Path> Template => an IO::Path object of the template file
JSTOWE/Printing-Jdf
…/imposition.pl6 :23:
templates();
JSTOWE/Printing-Jdf
…/imposition.pl6 :27:
sub templates {
JSTOWE/Printing-Jdf
…/02-multisig.t :16:
is $s[1-1]<Template>.basename, $eight, 'eight page template';
JSTOWE/Printing-Jdf
…/02-multisig.t :17:
is $s[2-1]<Template>.basename, $sixteen, 'sixteen page template';
JSTOWE/Printing-Jdf
…/02-multisig.t :18:
is $s[3-1]<Template>.basename, $sixteen, 'sixteen page template';
JSTOWE/Printing-Jdf
…/02-multisig.t :19:
is $s[4-1]<Template>.basename, $sixteen, 'sixteen page template';
JSTOWE/Printing-Jdf
…/02-multisig.t :20:
is $s[5-1]<Template>.basename, $sixteen, 'sixteen page template';
JSTOWE/Printing-Jdf
…/BlankPageTest.jdf :57:
<FileSpec MimeType="application/x-preps-imposition-template" URL="file://192.168.42.7/PrepsTemplates/Templates/tabloid/04%20tabloid.tpl"/>
JSTOWE/Printing-Jdf
…/MultiSigTest.jdf :57:
<FileSpec MimeType="application/x-preps-imposition-template" URL="file://192.168.42.7/jobfiles/PrepsTemplates/Templates/Heatset/CustomSig/08%20CustomSig%20380x275.tpl"/>
JSTOWE/Printing-Jdf
…/MultiSigTest.jdf :81:
<FileSpec MimeType="application/x-preps-imposition-template" URL="file://192.168.42.7/jobfiles/PrepsTemplates/Templates/Heatset/CustomSig/16%20CustomSig%20380x275%20on%20800s.tpl"/>
JSTOWE/Printing-Jdf
…/MultiSigTest.jdf :123:
<FileSpec MimeType="application/x-preps-imposition-template" URL="file://192.168.42.7/jobfiles/PrepsTemplates/Templates/Heatset/CustomSig/16%20CustomSig%20380x275%20on%20800s.tpl"/>
JSTOWE/Printing-Jdf
…/MultiSigTest.jdf :165:
<FileSpec MimeType="application/x-preps-imposition-template" URL="file://192.168.42.7/jobfiles/PrepsTemplates/Templates/Heatset/CustomSig/16%20CustomSig%20380x275%20on%20800s.tpl"/>
JSTOWE/Printing-Jdf
…/MultiSigTest.jdf :207:
<FileSpec MimeType="application/x-preps-imposition-template" URL="file://192.168.42.7/jobfiles/PrepsTemplates/Templates/Heatset/CustomSig/16%20CustomSig%20380x275%20on%20800s.tpl"/>
JSTOWE/Printing-Jdf
…/TestJobFile.jdf :57:
<FileSpec MimeType="application/x-preps-imposition-template" URL="file://192.168.42.7/jobfiles/PrepsTemplates/Templates/tabloid/28%20tabloid,%2013+14%20on%20400s.tpl"/>
JSTOWE/Sys-Utmp
…/README.md :12:
if it is available but will attempt to provide its own if the OS doesn't
JSTOWE/Sys-Utmp
…/Utmp.pm :38:
if it is available but will attempt to provide its own if the OS doesn't
JSTOWE/Sys-Utmp
…/Utmp.pm :133:
An object of L<Sys::Utmp::Utemp> can be smart matched to this values to
JSTOWE/Test-Util-ServerPort
…/README.md :27:
checks by attempting to ```listen``` on a random port on the range
JSTOWE/Test-Util-ServerPort
…/ServerPort.pm :28:
checks by attempting to C<listen> on a random port on the range
JSTOWE/Tinky
…/Documentation.md :466:
This will be thrown when attempting to set the state of the object by assignment when there is no transition that goes from the object's current state to the supplied state.
JSTOWE/Tinky
…/Tinky.pm :697:
This will be thrown when attempting to set the state of
JSTOWE/Tinky
…/Tinky.pm :1040:
# I'm half tempted to have this throw if there is more than one
JSTOWE/URI-FetchFile
…/FetchFile.pm :53:
This will attempt to get the resource identified by URI and save the
JSTOWE/URI-FetchFile
…/070-fetch-uri.t :15:
}, "attempt a non-existent file";
JSTOWE/URI-FetchFile
…/070-fetch-uri.t :21:
}, "attempt an existing file";
JSTOWE/URI-Template
…/.layout :43:
"name": "uritemplate-test",
JSTOWE/URI-Template
…/README.md :11:
my $template = URI::Template.new(template => 'http://foo.com{/foo,bar}');
JSTOWE/URI-Template
…/README.md :13:
say $template.process(foo => 'baz', bar => 'quux'); # http://foo.com/baz/quux
JSTOWE/URI-Template
…/README.md :42:
and provide a failing example with the required variables, template and the
JSTOWE/URI-Template
…/README.md :52:
The testing uses the test data from https://github.com/uri-templates/uritemplate-test
JSTOWE/URI-Template
…/README.md :53:
please see the README.md in the t/data/uritemplate-test for the license for that project.
JSTOWE/URI-Template
…/rfc6570.txt :163:
expansion: The string result obtained from a template expression
JSTOWE/URI-Template
…/rfc6570.txt :175:
template processor: A program or library that, given a URI Template
JSTOWE/URI-Template
…/rfc6570.txt :176:
and a set of variables with values, transforms the template string
JSTOWE/URI-Template
…/rfc6570.txt :177:
into a URI reference by parsing the template for expressions and
JSTOWE/URI-Template
…/rfc6570.txt :236:
above, or in relative form. A template is expanded before the
JSTOWE/URI-Template
…/rfc6570.txt :239:
Although the URI syntax is used for the result, the template string
JSTOWE/URI-Template
…/rfc6570.txt :242:
Therefore, a URI Template is also an IRI template, and the result of
JSTOWE/URI-Template
…/rfc6570.txt :243:
template processing can be transformed to an IRI by following the
JSTOWE/URI-Template
…/rfc6570.txt :255:
Since most template processors implemented prior to this
JSTOWE/URI-Template
…/rfc6570.txt :257:
refer to these as Level 1 templates.
JSTOWE/URI-Template
…/rfc6570.txt :274:
Level 2 templates add the plus ("+") operator, for expansion of
JSTOWE/URI-Template
…/rfc6570.txt :310:
Level 3 templates allow multiple variables per expression, each
JSTOWE/URI-Template
…/rfc6570.txt :387:
Finally, Level 4 templates add value modifiers as an optional suffix
JSTOWE/URI-Template
…/rfc6570.txt :519:
template scenarios. Implementations are able to parse the template
JSTOWE/URI-Template
…/rfc6570.txt :537:
template expressions. If we were only concerned with URI generation,
JSTOWE/URI-Template
…/rfc6570.txt :538:
then the template syntax could be limited to just simple variable
JSTOWE/URI-Template
…/rfc6570.txt :542:
values. Therefore, the template syntax includes operators that
JSTOWE/URI-Template
…/rfc6570.txt :554:
the template will be provided with an appropriate set of values for
JSTOWE/URI-Template
…/rfc6570.txt :569:
be used in places where a URI would be expected unless the template
JSTOWE/URI-Template
…/rfc6570.txt :570:
expressions will be expanded by a template processor prior to use.
JSTOWE/URI-Template
…/rfc6570.txt :576:
matching: comparing the template to a fully formed URI in order to
JSTOWE/URI-Template
…/rfc6570.txt :578:
variables. Variable matching only works well if the template
JSTOWE/URI-Template
…/rfc6570.txt :635:
In spite of the syntax and template expansion process being defined
JSTOWE/URI-Template
…/rfc6570.txt :637:
templates occur in practice as a sequence of characters in whatever
JSTOWE/URI-Template
…/rfc6570.txt :647:
the process of template expansion that a string of characters in a
JSTOWE/URI-Template
…/rfc6570.txt :656:
implementations, including template processors, should use the same
JSTOWE/URI-Template
…/rfc6570.txt :664:
template processor.
JSTOWE/URI-Template
…/rfc6570.txt :667:
pct-encoded for use in a URI reference, a template processor MUST
JSTOWE/URI-Template
…/rfc6570.txt :687:
Although templates (and template processor implementations) are
JSTOWE/URI-Template
…/rfc6570.txt :689:
Template syntax in terms of the ABNF for Level 4. A template
JSTOWE/URI-Template
…/rfc6570.txt :690:
processor limited to lower-level templates MAY exclude the ABNF rules
JSTOWE/URI-Template
…/rfc6570.txt :770:
are expected, identifiers for associating values within a template
JSTOWE/URI-Template
…/rfc6570.txt :800:
template processor or whose value is set to a special "undefined"
JSTOWE/URI-Template
…/rfc6570.txt :807:
In Level 4 templates, a variable may have a composite value in the
JSTOWE/URI-Template
…/rfc6570.txt :809:
pairs. Such value types are not directly indicated by the template
JSTOWE/URI-Template
…/rfc6570.txt :821:
Each of the variables in a Level 4 template expression can have a
JSTOWE/URI-Template
…/rfc6570.txt :890:
arrays. Likewise, the context in which the template is used (script,
JSTOWE/URI-Template
…/rfc6570.txt :907:
code). Such a resource could be described as a template with each
JSTOWE/URI-Template
…/rfc6570.txt :909:
simple template that makes use of an explode modifier, as in
JSTOWE/URI-Template
…/rfc6570.txt :929:
are present in the expansion. This can be useful for templates that
JSTOWE/URI-Template
…/rfc6570.txt :961:
The process of URI Template expansion is to scan the template string
JSTOWE/URI-Template
…/rfc6570.txt :965:
value MUST be formed prior to template expansion.
JSTOWE/URI-Template
…/rfc6570.txt :971:
If a template processor encounters a character sequence outside an
JSTOWE/URI-Template
…/rfc6570.txt :973:
processing of the template SHOULD cease, the URI reference result
JSTOWE/URI-Template
…/rfc6570.txt :974:
SHOULD contain the expanded part of the template followed by the
JSTOWE/URI-Template
…/rfc6570.txt :979:
value modifier that the template processor does not recognize or does
JSTOWE/URI-Template
…/rfc6570.txt :983:
remainder of the template SHOULD continue, and the location and type
JSTOWE/URI-Template
…/rfc6570.txt :987:
reference; it will be an incompletely expanded template string that
JSTOWE/URI-Template
…/rfc6570.txt :1017:
varspec in the expression. Level 1 templates are limited to the
JSTOWE/URI-Template
…/rfc6570.txt :1019:
variable per expression. Level 2 templates are limited to a single
JSTOWE/URI-Template
…/rfc6570.txt :1062:
encoded in the resulting URI reference. One way for a template
JSTOWE/URI-Template
…/rfc6570.txt :1205:
2 and above templates, is identical to simple string expansion except
JSTOWE/URI-Template
…/rfc6570.txt :1265:
Level 2 and above templates, is identical to reserved expansion
JSTOWE/URI-Template
…/rfc6570.txt :1298:
and above templates, is useful for describing URI spaces with varying
JSTOWE/URI-Template
…/rfc6570.txt :1329:
Level 3 and above templates, is useful for describing URI path
JSTOWE/URI-Template
…/rfc6570.txt :1371:
operator in Level 3 and above templates, is useful for describing URI
JSTOWE/URI-Template
…/rfc6570.txt :1426:
operator in Level 3 and above templates, is useful for describing an
JSTOWE/URI-Template
…/rfc6570.txt :1466:
operator in Level 3 and above templates, is useful for describing
JSTOWE/URI-Template
…/rfc6570.txt :1467:
optional &name=value pairs in a template that already contains a
JSTOWE/URI-Template
…/rfc6570.txt :1501:
attacker is given control over the template or over the variable
JSTOWE/URI-Template
…/rfc6570.txt :1504:
determined by who provides the template, who provides the values to
JSTOWE/URI-Template
…/rfc6570.txt :1505:
use for variables within the template, in what execution context the
JSTOWE/URI-Template
…/rfc6570.txt :1524:
Within frameworks, templates usually act as guides for where data
JSTOWE/URI-Template
…/rfc6570.txt :1526:
Hence, the security concerns are not in the templates themselves, but
JSTOWE/URI-Template
…/rfc6570.txt :1536:
template and the values are provided by a trusted source.
JSTOWE/URI-Template
…/rfc6570.txt :1642:
Scan the template and copy literals to the result string (as in
JSTOWE/URI-Template
…/rfc6570.txt :1645:
or the template ends. When it ends, return the result string and its
JSTOWE/URI-Template
…/rfc6570.txt :1648:
o If an expression is found, scan the template to the next "}" and
JSTOWE/URI-Template
…/rfc6570.txt :1651:
o If the template ends before a "}", then append the "{" and
JSTOWE/URI-Template
…/rfc6570.txt :1663:
the template.
JSTOWE/URI-Template
…/rfc6570.txt :1711:
back to scan the remainder of the template.
JSTOWE/URI-Template
…/rfc6570.txt :1726:
template.
JSTOWE/URI-Template
…/rfc6570.txt :1832:
scan the remainder of the template.
JSTOWE/URI-Template
…/Template.pm :15:
my $template = URI::Template.new(template => 'http://foo.com{/foo,bar}');
JSTOWE/URI-Template
…/Template.pm :17:
say $template.process(foo => 'baz', bar => 'quux'); # http://foo.com/baz/quux
JSTOWE/URI-Template
…/Template.pm :26:
specification for full details of the template expansion.
JSTOWE/URI-Template
…/Template.pm :28:
=head2 Overview of templates
JSTOWE/URI-Template
…/Template.pm :30:
A URI template comprises a string representing a full or partial URI
JSTOWE/URI-Template
…/Template.pm :31:
containing on or more template expressions. A template expression
JSTOWE/URI-Template
…/Template.pm :71:
method new(Str :$template) returns URI::Template
JSTOWE/URI-Template
…/Template.pm :73:
The constructor of the class. The C<$template> must be a valid URI template if
JSTOWE/URI-Template
…/Template.pm :81:
Expand the template with the values of the template variables specified as named
JSTOWE/URI-Template
…/Template.pm :82:
arguments. If no C<template> has been provided then a C<X::NoTemplate> exception
JSTOWE/URI-Template
…/Template.pm :83:
will be thrown. If the provided template is unable to be parsed then a
JSTOWE/URI-Template
…/Template.pm :86:
=head2 method template
JSTOWE/URI-Template
…/Template.pm :88:
method template() returns Str is rw
JSTOWE/URI-Template
…/Template.pm :90:
A read/write public accessor for the template. If this parameter is not set by
JSTOWE/URI-Template
…/Template.pm :91:
the accessor it must be set using C<template> before C<process> is called.
JSTOWE/URI-Template
…/Template.pm :93:
Because of the way the template is parsed it will only be done once for any
JSTOWE/URI-Template
…/Template.pm :95:
for the first time will have no effect. If you need a different template it is
JSTOWE/URI-Template
…/Template.pm :103:
has Str $.template is rw;
JSTOWE/URI-Template
…/Template.pm :534:
#| thrown when no template
JSTOWE/URI-Template
…/Template.pm :539:
#| thrown when template can't be parsed
JSTOWE/URI-Template
…/Template.pm :541:
has $.message = "Invalid or un-parseable template";
JSTOWE/URI-Template
…/Template.pm :544:
#| accessor for the parsed parts of the template
JSTOWE/URI-Template
…/Template.pm :549:
if $!template.defined {
JSTOWE/URI-Template
…/Template.pm :554:
my $match = URI::Template::Grammar.parse($!template, :$actions);
JSTOWE/URI-Template
…/Template.pm :582:
die "Unexpected object of type { $part.WHAT.name } found in parsed template";
JSTOWE/URI-Template
…/020-grammar.t :11:
my @templates = <
JSTOWE/URI-Template
…/020-grammar.t :20:
for @templates -> $template {
JSTOWE/URI-Template
…/020-grammar.t :22:
ok my $res = URI::Template::Grammar.parse($template, :$actions), "matched '$template'";
JSTOWE/URI-Template
…/020-grammar.t :55:
my $template = $test<expression>;
JSTOWE/URI-Template
…/020-grammar.t :56:
ok my $res = URI::Template::Grammar.parse($template, :$actions), "matched '$template'";
JSTOWE/URI-Template
…/020-grammar.t :70:
my $template = '{+path}/here';
JSTOWE/URI-Template
…/020-grammar.t :71:
ok my $res = URI::Template::Grammar.parse($template, :$actions), "matched '$template'";
JSTOWE/URI-Template
…/030-spec-examples.t :14:
my IO::Path $spec-examples = $data-dir.add('uritemplate-test/spec-examples.json');
JSTOWE/URI-Template
…/030-spec-examples.t :27:
my $ut = URI::Template.new(template => $test[0]);
JSTOWE/URI-Template
…/040-spec-examples-by-section.t :14:
my IO::Path $spec-examples = $data-dir.add('uritemplate-test/spec-examples-by-section.json');
JSTOWE/URI-Template
…/040-spec-examples-by-section.t :27:
my $ut = URI::Template.new(template => $test[0]);
JSTOWE/URI-Template
…/050-extended-tests.t :13:
my IO::Path $spec-examples = $data-dir.add('uritemplate-test/extended-tests.json');
JSTOWE/URI-Template
…/050-extended-tests.t :26:
my $ut = URI::Template.new(template => $test[0]);
JSTOWE/URI-Template
…/060-synopsis.t :9:
my $template = URI::Template.new(template => 'http://foo.com{/foo,bar}');
JSTOWE/URI-Template
…/060-synopsis.t :11:
is $template.process(foo => 'baz', bar => 'quux'), 'http://foo.com/baz/quux', "check the synopsis code is actually correct";
JSTOWE/URI-Template
…/070-exceptions.t :13:
throws-like { $t.process(foo => 1, bar => 2) }, X::NoTemplate, "throws 'X::NoTemplate' without a defined template";
JSTOWE/URI-Template
…/070-exceptions.t :15:
$t = URI::Template.new(template => '{?foo/boo');
JSTOWE/URI-Template
…/070-exceptions.t :17:
throws-like { $t.process(foo => 1, bar => 2) }, X::InvalidTemplate, "throws 'X::InvalidTemplate' with a broken template";
JSTOWE/URI-Template
…/README.md :3:
The sub-directory ```uritemplate-test``` contains the test data from
JSTOWE/URI-Template
…/README.md :4:
https://github.com/uri-templates/uritemplate-test and includes its
JSTOWE/URI-Template
…/README.md :10:
If your project uses Git for version control, you can make uritemplate-tests into a submodule.
JSTOWE/URI-Template
…/README.md :28:
first being the template, the second being the result of expanding the
JSTOWE/URI-Template
…/README.md :29:
template with the provided variables.
JSTOWE/URI-Template
…/README.md :36:
is expected to match one of them; this allows for templates that can
JSTOWE/URI-Template
…/README.md :39:
fail (i.e., the template was invalid).
JSTOWE/URI-Template
…/README.md :64:
* spec-examples.json - The complete set of example templates from the RFC
JSTOWE/URI-Template
…/README.md :67:
* negative-tests.json - invalid templates
JSTOWE/URI-Template
…/negative-tests.json :18:
"searchTerms" : "uri templates",
JSTOWE/WebService-Soundcloud
…/Soundcloud.pm :630:
has $!query-template = URI::Template.new(template => '{?query*}');
JSTOWE/WebService-Soundcloud
…/Soundcloud.pm :662:
$abs-url = $url-noq ~ $!query-template.process(query => %params);
KAIEPI/Digest-BubbleBabble
…/BubbleBabble.pm6 :121:
# Don't attempt to decode; these bytes don't contain any
KAJI/App-Platform
…/conf.py :38:
# Add any paths that contain templates here, relative to this directory.
KAJI/App-Platform
…/conf.py :39:
templates_path = ['_templates']
KAJI/App-Platform
…/conf.py :102:
# Custom sidebar templates, must be a dictionary that maps document names
KAJI/App-Platform
…/conf.py :103:
# to template names.
KAJI/App-Platform
…/getting_started.rst :107:
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc in libero dui. Curabitur eget iaculis ex. Nam pellentesque euismod augue, quis porttitor massa facilisis sit amet. Nulla a diam tempus augue pharetra congue.</p>
KAJI/App-Platform
…/index.html :6:
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc in libero dui. Curabitur eget iaculis ex. Nam pellentesque euismod augue, quis porttitor massa facilisis sit amet. Nulla a diam tempus augue pharetra congue.</p>
KAJI/App-Platform
…/project.yml :28:
/template-variables.txt: |
KAJI/App-Platform
…/index.html :5:
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc in libero dui. Curabitur eget iaculis ex. Nam pellentesque euismod augue, quis porttitor massa facilisis sit amet. Nulla a diam tempus augue pharetra congue.</p>
KAJI/App-Platform
…/Container.pm6 :15:
has %.template;
KAJI/App-Platform
…/Container.pm6 :43:
self.template = hostname => self.hostname, domain => self.domain;
KAJI/App-Platform
…/Container.pm6 :141:
spurt "$path/{self.name}/{$local_target}", Template::Mustache.render($content, self.template);
KAJI/App-Platform
…/Container.pm6 :149:
temp $path = $path.IO.dirname;
KAJI/App-Platform
…/Container.pm6 :156:
spurt $file_tpl, Template::Mustache.render($content, self.template);
KAJI/App-Platform
…/Container.pm6 :177:
Template::Mustache.render($_, self.template)
KAJI/App-Platform
…/Template.pm :16:
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc in libero dui. Curabitur eget iaculis ex. Nam pellentesque euismod augue, quis porttitor massa facilisis sit amet. Nulla a diam tempus augue pharetra congue.</p>
KUERBIS/Term-Choose-Util
…/README.md :268:
( 'attempts', "- Attempts" , ( '1', '2', '3' ) )
KUERBIS/Term-Choose-Util
…/README.md :274:
'attempts' => 2
KUERBIS/Term-Choose-Util
…/Util.pm6 :961:
( 'attempts', "- Attempts" , ( '1', '2', '3' ) )
KUERBIS/Term-Choose-Util
…/Util.pm6 :967:
'attempts' => 2
KUERBIS/Term-Choose
…/README.md :159:
default: "ltemptygt"
KUERBIS/Term-Choose
…/Choose.pm6 :971:
my Int @temp_idx;
KUERBIS/Term-Choose
…/Choose.pm6 :976:
@temp_idx.push( @rearranged_idx[$col][$row] );
KUERBIS/Term-Choose
…/Choose.pm6 :978:
$!rc2idx.push( @temp_idx );
KUERBIS/Term-Choose
…/20-arguments.t :140:
my @temp = 7 .. 11;
KUERBIS/Term-Choose
…/20-arguments.t :141:
my @val_list = ( 1, 2, 3 ), [ 4, 5, 6 ], @temp;
KUERBIS/Term-Form
…/Form.pm6 :1043:
%!i<beep> = 1; # set "auto-up" temporary to 2 so a second ENTER moves the cursor to {back/0}
LEONT/App-Prove6
…/README.md :95:
The `--trap` option will attempt to trap SIGINT (Ctrl-C) during a test run and display the test summary even if the run is interrupted
LEONT/App-Prove6
…/Prove6.pm6 :183:
The C<--trap> option will attempt to trap SIGINT (Ctrl-C) during a test
LEONT/Path-Finder
…/PFTest.pm6 :6:
my $td = tempdir;
LEONT/TAP
…/README.md :81:
Attempt to print summary information if run is interrupted by SIGINT (Ctrl-C).
MARTIMM/BSON
…/Document.pm6 :305:
#note 'return temporary container';
MARTIMM/BSON
…/Document.pm6 :620:
# skip all temporay containers
MARTIMM/BSON
…/Document.pod6 :209:
like 'Cannot modify an immutable Any' when an attempt is made like in the
MARTIMM/GTK-Glade
…/ex.glade~ :5:
<template class="ExampleAppWindow" parent="GtkApplicationWindow">
MARTIMM/GTK-Glade
…/ex.glade~ :31:
</template>
MARTIMM/GTK-V3
…/NativeLib.pm6 :21:
# Each load-* function just attempts to call a non-existing symbol in the
MARTIMM/MongoDB
…/Build.pm6 :242:
for private, or customized services or temporary purposes and for automatic
MARTIMM/MongoDB
…/CHANGES.md :230:
* Attempts to tackle the hangups and broken tests seen on Travis. One step was to shorten the loop time while monitoring. At least this g…
MARTIMM/MongoDB
…/version-cross-ref.md :3:
This is an attempt to make some sort of a cross reference of mongodb functions
MARTIMM/MongoDB
…/Client.pod6 :149:
connectTimeoutMS The time in milliseconds to attempt a
MARTIMM/MongoDB
…/Client.pod6 :152:
socketTimeoutMS The time in milliseconds to attempt a
MARTIMM/MongoDB
…/Client.pod6 :154:
attempt times out.
MARTIMM/MongoDB
…/400-run-command.t :148:
# Second attempt using iteratable role
MARTIMM/MongoDB
…/bench-client-server-socket.pl6 :45:
# (20170722) Forget about cleanup... 10 temporary threads + 1 monitoring threads
MARTIMM/MongoDB
…/server-selection.sxml :106:
between attempts, as required by the Server Discovery and Monitoring spec).
MARTIMM/MongoDB
…/test-summary.sxml :7:
$*|a href=http://www.softwaretestinghelp.com/test-summary-report-template-download-sample/ [
MATIASL/Pygments
…/perl.py :245:
'take', 'temp', 'tighter', 'token', 'trusts', 'try', 'unary',
MATIASL/Pygments
…/perl.py :555:
(r'(?<=:)(?:my|our|state|constant|temp|let).*?;', using(this)),
MBP/DB-Migration-Simple
…/.gitignore :14:
# temporary
MELEZHIK/Sparky
…/README.md :54:
At the moment sparky can't daemonize itself, as temporary workaround use linux `nohup` command:
MELEZHIK/Sparky
…/sparky-web.pl6 :27:
template 'builds.tt', css(), @rows;
MELEZHIK/Sparky
…/sparky-web.pl6 :34:
template 'report.tt', css(), $project, $build_id, "$reports-dir/$project/build-$build_id.txt";
MELEZHIK/Sparky
…/sparky-web.pl6 :53:
template 'project.tt', css(), $project, $project-conf, "$root/$project/sparrowfile", $err;
MELEZHIK/Sparky
…/sparky-web.pl6 :63:
template 'about.tt', css(), $md.to_html;
MELEZHIK/Sparky
…/bootstrap.min.css :11:
*//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-siz…
MELEZHIK/Sparky
…/bootstrap.min.js :6:
if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].spl…
MELEZHIK/Sparrowdo-Azure-Web-Cert
…/README.md :60:
This mode is applied by default. ARM templates are generated, validated and executed.
MELEZHIK/Sparrowdo-Azure-Web-Cert
…/README.md :66:
In this mode ARM templates are generated, but not executed.
MELEZHIK/Sparrowdo-Azure-Web-Cert
…/README.md :78:
In this mode ARM templates are generated, validated but not executed.
MELEZHIK/Sparrowdo-Azure-Web-Cert
…/Cert.pm6 :26:
template-create "$base-dir/arm/update-cert.json", %(
MELEZHIK/Sparrowdo-Azure-Web-Cert
…/Cert.pm6 :37:
template-create "$base-dir/arm/create-cert.json", %(
MELEZHIK/Sparrowdo-Azure-Web-Cert
…/Cert.pm6 :62:
az group deployment validate -g $az-res-group --template-file $base-dir/arm/create-cert.json
MELEZHIK/Sparrowdo-Azure-Web-Cert
…/Cert.pm6 :68:
az group deployment validate -g $az-res-group --template-file $base-dir/arm/update-cert.json
MELEZHIK/Sparrowdo-Azure-Web-Cert
…/Cert.pm6 :77:
az group deployment create -g $az-res-group --template-file $base-dir/arm/create-cert.json
MELEZHIK/Sparrowdo-Azure-Web-Cert
…/Cert.pm6 :83:
az group deployment create -g $az-res-group --template-file $base-dir/arm/update-cert.json
MELEZHIK/Sparrowdo-Cordova-OSx-Build
…/Build.pm6 :55:
template-create "manual-signing.json", %(
MELEZHIK/Sparrowdo-Cordova-OSx-Fortify
…/Fortify.pm6 :41:
template "platforms/ios/excludes.txt", %( source => ( slurp %?RESOURCES<excludes.txt> ) );
MELEZHIK/Sparrowdo-VSTS-YAML-Angular-Build
…/Build.pm6 :21:
template-create "$build-dir/.cache/build.yaml.sample", %(
MELEZHIK/Sparrowdo-VSTS-YAML-Artifact
…/Artifact.pm6 :17:
template-create "$build-dir/.cache/build.yaml.sample", %(
MELEZHIK/Sparrowdo-VSTS-YAML-Build-Assembly-Patch
…/Patch.pm6 :21:
template-create "$build-dir/.cache/build.yaml.sample", %(
MELEZHIK/Sparrowdo-VSTS-YAML-Build
…/set-pause.pl6 :5:
template-create "/home/{%*ENV<USER>}/.pause", %(
MELEZHIK/Sparrowdo-VSTS-YAML-Build
…/Build.pm6 :27:
template-create "$build-dir/build.yaml", %(
MELEZHIK/Sparrowdo-VSTS-YAML-Cordova
…/Cordova.pm6 :36:
template-create "$build-dir/files/build.cmd.tmpl", %(
MELEZHIK/Sparrowdo-VSTS-YAML-Cordova
…/Cordova.pm6 :46:
template-create "$build-dir/.cache/build.yaml.sample", %(
MELEZHIK/Sparrowdo-VSTS-YAML-DotNet
…/DotNet.pm6 :17:
template-create "$build-dir/.cache/build.yaml.sample", %(
MELEZHIK/Sparrowdo-VSTS-YAML-MsBuild
…/MsBuild.pm6 :17:
template-create "$build-dir/.cache/build.yaml.sample", %(
MELEZHIK/Sparrowdo-VSTS-YAML-Nuget-Build
…/Build.pm6 :16:
template-create "$build-dir/.cache/build.yaml.sample", %(
MELEZHIK/Sparrowdo-VSTS-YAML-Nuget
…/Nuget.pm6 :16:
template-create "$build-dir/.cache/build.yaml.sample", %(
MELEZHIK/Sparrowdo-VSTS-YAML-Solution
…/Solution.pm6 :20:
template-create "$build-dir/.cache/build.yaml.sample", %(
MELEZHIK/Sparrowdo-VSTS-YAML-Update-Azure-SSL
…/SSL.pm6 :23:
template-create "$build-dir/files/{%args<cert-name>}/create-cert.json", %(
MELEZHIK/Sparrowdo-VSTS-YAML-Update-Azure-SSL
…/SSL.pm6 :32:
template-create "$build-dir/files/{%args<cert-name>}/update-cert.json", %(
MELEZHIK/Sparrowdo-VSTS-YAML-Update-Azure-SSL
…/SSL.pm6 :40:
template-create "$build-dir/.cache/build.yaml.sample", %(
MELEZHIK/Sparrowdo-VSTS-YAML-Update-Azure-SSL
…/build.yaml :9:
displayName: 'Inject thumbprint into ARM templates for [% cert_name %] cert'
MELEZHIK/Sparrowdo-VSTS-YAML-Update-Azure-SSL
…/build.yaml :16:
inlineScript: 'az group deployment create -g [% resource_group %] --template-file [% base_dir %]/[% cert_name %]/create-cert.json -o table'
MELEZHIK/Sparrowdo-VSTS-YAML-Update-Azure-SSL
…/build.yaml :23:
inlineScript: 'az group deployment create -g [% resource_group %] --template-file [% base_dir %]/[% cert_name %]/update-cert.json -o table'
MELEZHIK/Sparrowdo
…/set-pause.pl6 :5:
template-create "/home/{%*ENV<USER>}/.pause", %(
MELEZHIK/Sparrowdo
…/Changes.md :87:
Core-dsl doc: `on_change` parameter for `template` function
MELEZHIK/Sparrowdo
…/README.md :31:
from templates or starting services.
MELEZHIK/Sparrowdo
…/README.md :341:
Remove temporary/cache files left by sparrow run. Set this parameter to `True`
MELEZHIK/Sparrowdo
…/sparrowdo :348:
$ssh_cmd ~= ' ssh -o ConnectionAttempts=1 -o ConnectTimeout=5';
MELEZHIK/Sparrowdo
…/sparrowdo :350:
$ssh_cmd = 'sshpass -e ssh -o ConnectionAttempts=1 -o ConnectTimeout=5';
MELEZHIK/Sparrowdo
…/sparrowdo :352:
$ssh_cmd = 'ssh -o ConnectionAttempts=1 -o ConnectTimeout=5';
MELEZHIK/Sparrowdo
…/sparrowdo :447:
$scp_command ~= 'scp -o ConnectionAttempts=1 -o ConnectTimeout=5 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ' ~ $scp_params;
MELEZHIK/Sparrowdo
…/sparrowdo :450:
$scp_command ~= ' scp -o ConnectionAttempts=1 -o ConnectTimeout=5 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ' ~ $scp_params;
MELEZHIK/Sparrowdo
…/sparrowdo :452:
$scp_command = 'scp -o ConnectionAttempts=1 -o ConnectTimeout=5 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ' ~ $scp_params;
MELEZHIK/Sparrowdo
…/core-dsl.md :16:
* Templates
MELEZHIK/Sparrowdo
…/core-dsl.md :281:
Templates are files gets populated from templates sources in Template-Toolkit format.
MELEZHIK/Sparrowdo
…/core-dsl.md :285:
| template-create | create template | `template-create($path,%args)`| templater |
MELEZHIK/Sparrowdo
…/core-dsl.md :286:
| template | alias for template-create | * | * |
MELEZHIK/Sparrowdo
…/core-dsl.md :290:
# build /var/data/animals.txt from template
MELEZHIK/Sparrowdo
…/core-dsl.md :292:
$ cat examples/templates/animals.tmpl
MELEZHIK/Sparrowdo
…/core-dsl.md :297:
template-create '/var/data/animals.txt', %(
MELEZHIK/Sparrowdo
…/core-dsl.md :298:
source => ( slurp 'examples/templates/animals.tmpl' ),
MELEZHIK/Sparrowdo
…/core-dsl.md :311:
template-create '/var/data/animals.txt', %(
MELEZHIK/Sparrowdo
…/core-dsl.md :312:
source => ( slurp 'examples/templates/animals.tmpl' ),
MELEZHIK/Sparrowdo
…/sparrowfile :6:
template '/var/data/animals.txt', %(
MELEZHIK/Sparrowdo
…/sparrowfile :7:
source => slurp 'examples/templates/empty.tmpl'
MELEZHIK/Sparrowdo
…/sparrowfile :10:
template-create '/var/data/animals.txt', %(
MELEZHIK/Sparrowdo
…/sparrowfile :11:
source => slurp 'examples/templates/empty.tmpl'
MELEZHIK/Sparrowdo
…/sparrowfile :15:
template-create '/var/data/animals.txt', %(
MELEZHIK/Sparrowdo
…/sparrowfile :16:
source => ( slurp 'examples/templates/animals.tmpl' ),
MELEZHIK/Sparrowdo
…/sparrowfile :26:
template-create '/var/data/animals.txt', %(
MELEZHIK/Sparrowdo
…/sparrowfile :27:
source => ( slurp 'examples/templates/animals.tmpl' ),
MELEZHIK/Sparrowdo
…/Ssh.pm6 :28:
my $ssh-run-cmd = 'ssh -o ConnectionAttempts=1 -o ConnectTimeout=10';
MELEZHIK/Sparrowdo
…/Ssh.pm6 :69:
my $scp-run-cmd = 'scp -o ConnectionAttempts=1 -o ConnectTimeout=10';
MELEZHIK/Sparrowdo
…/Systemd.pm6 :13:
my $templ = "
MELEZHIK/Sparrowdo
…/Systemd.pm6 :30:
template-create "/etc/systemd/system/$name.service", %(
MELEZHIK/Sparrowdo
…/Systemd.pm6 :31:
source => $templ,
MELEZHIK/Sparrowdo
…/Template.pm6 :7:
sub template-create ( $target, %opts? ) is export {
MELEZHIK/Sparrowdo
…/Template.pm6 :16:
task => "create template $target",
MELEZHIK/Sparrowdo
…/Template.pm6 :17:
plugin => 'templater',
MELEZHIK/Sparrowdo
…/Template.pm6 :23:
sub template ( $target , %opts = %() ) is export { template-create $target, %opts }
MELEZHIK/Sparrowdo
…/suite.yaml :11:
- templates
MELEZHIK/Sparrowdo
…/suite.yaml :29:
- templates
MELEZHIK/Sparrowdo
…/suite.yaml :47:
- templates
MLDEVINE/KHPH
…/README.md :33:
Hopefully the system you're working on is network-isolated to some reasonable degree. Hopefully the system you're working on registers users on an as…
MORITZ/Grammar-ErrorReporting
…/.gitignore :14:
# temporary
MORITZ/Grammar-ErrorReporting
…/COPYING :413:
provided under this License. Any attempt otherwise to propagate or
MOZNION/HTML-Escape
…/Escape.pm6 :16:
# For javascript templates (e.g. AngularJS and such javascript frameworks)
MOZNION/Log-Minimal
…/README.md :191:
temp $log.autodump = True;
MOZNION/Log-Minimal
…/Minimal.pm6 :46:
temp $.default-log-level = DEBUG;
MOZNION/Log-Minimal
…/Minimal.pm6 :70:
temp $.default-log-level = DEBUG;
MOZNION/Log-Minimal
…/Minimal.pm6 :349:
temp $log.autodump = True;
MOZNION/Log-Minimal
…/010_f.t :76:
temp %*ENV<LM_DEBUG> = 1;
MOZNION/Log-Minimal
…/020_ff.t :48:
temp %*ENV<LM_DEBUG> = 1;
MOZNION/Log-Minimal
…/050_color.t :49:
temp %*ENV<LM_DEBUG> = 1;
MOZNION/Log-Minimal
…/070_env-debug.t :8:
temp %*ENV<LM_DEBUG> = 0;
MOZNION/Log-Minimal
…/070_env-debug.t :19:
temp %*ENV<LOG_MINIMAL_DEBUG> = 0;
MOZNION/Log-Minimal
…/070_env-debug.t :27:
temp %*ENV<LOG_MINIMAL_DEBUG> = 1;
MOZNION/Log-Minimal
…/090_autodump.t :20:
temp $log.autodump = True;
MOZNION/Router-Boost
…/Boost.pm6 :130:
temp @!_LEAVES = [];
MOZNION/Router-Boost
…/Boost.pm6 :131:
temp @!_PARENS = [];
MOZNION/Router-Boost
…/Boost.pm6 :132:
temp $!_PAREN-CNT = 0;
MOZNION/Router-Boost
…/Boost.pm6 :141:
temp @!_PARENS = @!_PARENS;
MOZNION/Stream-Buffered
…/README.md :22:
Stream::Buffered is a buffer class to store arbitrary length of byte strings and then get a seekable IO::Handle once everything is buffered. It uses Blob and temporary file to save the buffer depending on the length of the size.
MOZNION/Stream-Buffered
…/README.md :34:
When you specify negative value as `$maxMemoryBufferSize`, Stream::Buffered always uses Blob as buffer. Or when you specify 0 as `$maxMemoryBufferSize`, Stream::Buffered always uses temporary file as buffer.
MOZNION/Stream-Buffered
…/README.md :36:
If you pass 0 to the first argument, Stream::Buffered decides what kind of buffer type (Blob or temp file) to use automatically.
MOZNION/Stream-Buffered
…/Buffered.pm6 :6:
# $maxMemoryBufferSize = 0 -> Always temp file
MOZNION/Stream-Buffered
…/Buffered.pm6 :55:
It uses Blob and temporary file to save the buffer depending on the length of the size.
MOZNION/Stream-Buffered
…/Buffered.pm6 :66:
Or when you specify 0 as C<$maxMemoryBufferSize>, Stream::Buffered always uses temporary file as buffer.
MOZNION/Stream-Buffered
…/Buffered.pm6 :68:
If you pass 0 to the first argument, Stream::Buffered decides what kind of buffer type (Blob or temp file)
MOZNION/Stream-Buffered
…/File.pm6 :14:
my ($filename, $fh) = tempfile;
MSTEMLE/Fcntl
…/README.md :14:
small `C` program which appends Perl 6 code to a template, and then that's
MZIESCHA/Bailador-Plugin-NamedQueries
…/README.md :15:
template 'index.html', _html_render_fix {
MZIESCHA/Bailador-Plugin-NamedQueries
…/NamedQueries.pm :79:
template 'index.html', _html_render_fix {
NINE/Distribution-Builder-MakeFromJSON
…/README.md :16:
Distribution::Builder::MakeFromJSON uses information from your META6.json and the running system to fill variabls in a Makefile.in template and build your distribution.
NINE/Distribution-Builder-MakeFromJSON
…/MakeFromJSON.pm6 :31:
process-makefile-template($meta, $src-dir, $dest-dir) if $src-dir.child('Makefile.in').e;
NINE/Distribution-Builder-MakeFromJSON
…/MakeFromJSON.pm6 :35:
temp $*CWD = $src-dir;
NINE/Distribution-Builder-MakeFromJSON
…/MakeFromJSON.pm6 :47:
temp $*CWD = $src-dir;
NINE/Distribution-Builder-MakeFromJSON
…/MakeFromJSON.pm6 :51:
sub process-makefile-template($meta, $src-dir, $dest-dir) {
NINE/Distribution-Builder-MakeFromJSON
…/MakeFromJSON.pm6 :154:
the running system to fill variabls in a Makefile.in template and build your
NINE/Inline-Perl5
…/dancr.pl :9:
set 'template' => 'template_toolkit';
NINE/Inline-Perl5
…/dancr.pl :46:
#hook before_template_render => sub (%tokens) {
NINE/Inline-Perl5
…/dancr.pl :62:
hook before_template_render => hash-filler({ ${
NINE/Inline-Perl5
…/dancr.pl :73:
template 'show_entries.tt', ${
NINE/Inline-Perl5
…/dancr.pl :114:
template 'login.tt', ${
NINE/Inline-Perl5
…/file_handles.t :23:
my ($filename, $filehandle) = tempfile;
PATRICKZ/RPi-Device-ST7036
…/ST7036.pm6 :60:
# Instruction templates.
PMQS/Archive-SimpleZip
…/002-basic.t :26:
my $base_dir_name = tempdir(:unlink($wipe));
PMQS/Archive-SimpleZip
…/002-basic.t :27:
ok $base_dir_name.IO.d, "tempdir { $base_dir_name } created";
PMQS/Archive-SimpleZip
…/ZipTest.pm6 :10:
my $base_dir = tempdir(:unlink(True));
PMQS/Archive-SimpleZip
…/ZipTest.pm6 :13:
my ($filename,$filehandle) = tempfile(:tempdir($base_dir));
PMQS/Archive-SimpleZip
…/ZipTest.pm6 :37:
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut tempus odio id
PMQS/Archive-SimpleZip
…/ZipTest.pm6 :137:
my $dir = tempdir(:unlink(True));
PSIXSTEVE/Math-Polygons
…/LICENSE :69:
layouts and accessors, or small macros, inline functions and templates
ROBERTLE/Cache-Async
…/Async.pm6 :255:
# ignore, this is just a refresh attempt
ROBERTLE/CucumisSextus
…/README.md :30:
basic scenarios are supported, no tables or templates. An example:
ROBERTLE/CucumisSextus
…/StepDefs.pm6 :53:
# XXX temporary until we can replace them
SACOMO/Uzu
…/README.md :11:
- Project folder structure (Template6)
SACOMO/Uzu
…/README.md :14:
- i18n YAML and Templating
SACOMO/Uzu
…/README.md :17:
- Template Features
SACOMO/Uzu
…/README.md :18:
* Template6
SACOMO/Uzu
…/README.md :19:
+ Examples
SACOMO/Uzu
…/README.md :26:
* Template variables
SACOMO/Uzu
…/README.md :45:
* **Templating**: Supports Template6 and Mustache template engines.
SACOMO/Uzu
…/README.md :50:
* **YAML variables**: Create page-specific and partial-specific variables as a YAML block at the top of any page or partial template.
SACOMO/Uzu
…/README.md :65:
Enter your site name, default language, and template engine when prompted.
SACOMO/Uzu
…/README.md :74:
uzu build - Render all templates to build
SACOMO/Uzu
…/README.md :77:
build on template modification
SACOMO/Uzu
…/README.md :137:
template_engine: mustache
SACOMO/Uzu
…/README.md :151:
exclude_pages: # List of page template names to ignore for this theme
SACOMO/Uzu
…/README.md :163:
# List of page template names to ignore for all themes
SACOMO/Uzu
…/README.md :187:
* `language`: List of languages to render for site. First item is default language. When rendering, the `language` variable is set to the current ren…
SACOMO/Uzu
…/README.md :204:
* `exclude_pages`: List page templates that should not be rendered for the associated theme.
SACOMO/Uzu
…/README.md :227:
### Accessing config variables in templates
SACOMO/Uzu
…/README.md :229:
Config variables can be accessed from inside templates directly (e.g. `port`, `theme`, etc.)
SACOMO/Uzu
…/README.md :231:
### Accessing non-core variables in templates
SACOMO/Uzu
…/README.md :233:
Non-core variables are any additional variables found in config.yml and can be accessed in templates using `site.variablename` (e.g. `site.url`, `site.author`).
SACOMO/Uzu
…/README.md :369:
### Accessing i18n variables in templates
SACOMO/Uzu
…/README.md :371:
Variables defined in i18n files can be accessed in templates using the `i18n.variablename` format (e.g. `i18n.site_name`, `i18n.founders`).
SACOMO/Uzu
…/README.md :399:
For example, if the default language is `en` and secondary language is `ja`, the `index` page template would be rendered to the following files:
SACOMO/Uzu
…/README.md :420:
Uzu supports the Template Toolkit templating format for template files. This is the default template engine.
SACOMO/Uzu
…/README.md :487:
Uzu also supports the Mustache templating format for template files.
SACOMO/Uzu
…/README.md :491:
`template_engine: mustache`
SACOMO/Uzu
…/README.md :501:
template_engine: mustache
SACOMO/Uzu
…/README.md :524:
Mustache is a 'logic-less' templating system, but you can test for the existence of a variable, and if it exists then anything inside the test block with be processed. Otherwise it is ignored.
SACOMO/Uzu
…/README.md :534:
Theme layout templates are located at the `themes/THEME_NAME/layout.tt` or `themes/THEME_NAME/layout.mustache`. Use the `content` partial to include rendered page content in a layout.
SACOMO/Uzu
…/README.md :590:
Some variables are generated dynamically and exposed to templates for use:
SACOMO/Uzu
…/README.md :619:
* **theme_**: The current theme is exposed to the templates as `theme_NAME_OF_THEM`. For example, the variable `theme_default` will be available if the `default` theme is being used:
SACOMO/Uzu
…/README.md :709:
When `uzu` starts it will attempt to load the local module and inject the `Hash` returned by `context()` into the global render context Hash. The keys defined in the injected Hash will be available from within templates.
SACOMO/Uzu
…/README.md :736:
To access these variables inside of a template you do not need to use the `i18n.` scope prefix.
SACOMO/Uzu
…/README.md :762:
You can define variables in the layout template and access them using the `layout.` prefix in templates;
SACOMO/Uzu
…/README.md :778:
Will be accessible in templates like this:
SACOMO/Uzu
…/README.md :794:
Uzu will append any yaml dict ending with `_pages` with additional page-related variables if the variables are defined in the associated page template.
SACOMO/Uzu
…/README.md :828:
The above produces the following HTML. Note that the `author` and `title` values are pulled from the related page's template yaml variables:
SACOMO/Uzu
…/README.md :844:
### Disable layout rendering for page template
SACOMO/Uzu
…/README.md :861:
* The page template has been modified
SACOMO/Uzu
…/README.md :863:
* The page includes a related / linked pages `_pages` yaml dict and one of the linked pages templates has been modified
SACOMO/Uzu
…/README.md :882:
* Additional templating support (markdown)
SACOMO/Uzu
…/README.md :924:
If installing from source, remove the `lib/.precomp` folder inside the `uzu` root folder and attempt the install again.
SACOMO/Uzu
…/README.md :945:
* Template6
SACOMO/Uzu
…/CLI.pm6 :14:
uzu build - Render all templates to build
SACOMO/Uzu
…/CLI.pm6 :17:
build on template modification
SACOMO/Uzu
…/CLI.pm6 :116:
my Str $template_engine = 'mustache';
SACOMO/Uzu
…/CLI.pm6 :120:
&& $template_engine ~~ 'mustache'|'tt'
SACOMO/Uzu
…/CLI.pm6 :127:
if $template_engine && $template_engine !~~ 'mustache'|'tt' {
SACOMO/Uzu
…/CLI.pm6 :137:
$template_engine = prompt("Please enter template engine (mustache / tt): ");
SACOMO/Uzu
…/CLI.pm6 :143:
Templage engine: {$template_engine}
SACOMO/Uzu
…/CLI.pm6 :155:
template_engine => $template_engine||'mustache' {
SACOMO/Uzu
…/Config.pm6 :6:
@template_dirs
SACOMO/Uzu
…/Config.pm6 :9:
@template_dirs.grep({ !$_.IO.e }).&{
SACOMO/Uzu
…/Config.pm6 :54:
'template_engine',
SACOMO/Uzu
…/Config.pm6 :247:
template_extensions => %{ tt => ['tt'], mustache => ['ms', 'mustache'] },
SACOMO/Uzu
…/Config.pm6 :263:
%config<template_dirs> = [
SACOMO/Uzu
…/Config.pm6 :268:
%config<template_engine> = ( %_config<template_engine> ∈ %config<template_extensions>.keys ?? %_config<template_engine> !! 'tt' );
SACOMO/Uzu
…/Config.pm6 :269:
%config<extensions> = [ |%config<template_extensions>{%config<template_engine>}, 'html', 'yml'];
SACOMO/Uzu
…/Config.pm6 :287:
# Confirm all template directories exist
SACOMO/Uzu
…/Config.pm6 :289:
valid-project-folder-structure(%config<template_dirs>);
SACOMO/Uzu
…/Config.pm6 :302:
Str :$template_engine = 'mustache',
SACOMO/Uzu
…/Config.pm6 :311:
template_engine => $template_engine;
SACOMO/Uzu
…/Config.pm6 :314:
my List $template_dirs = (
SACOMO/Uzu
…/Config.pm6 :322:
# Copy template files
SACOMO/Uzu
…/Config.pm6 :323:
my %templates =
SACOMO/Uzu
…/Config.pm6 :329:
$template_dirs.map( -> $dir { mkdir $dir });
SACOMO/Uzu
…/Config.pm6 :331:
%templates.kv.map: -> $root, @files {
SACOMO/Uzu
…/Config.pm6 :333:
my $target_filename = "{$file}.{$template_engine}";
SACOMO/Uzu
…/Config.pm6 :340:
?? "{$template_engine}/{$root}/default/{$file}.{$template_engine}"
SACOMO/Uzu
…/Config.pm6 :341:
!! "{$template_engine}/{$root}/{$file}.{$template_engine}";
SACOMO/Uzu
…/Render.pm6 :10:
sub templates(
SACOMO/Uzu
…/Render.pm6 :103:
#| Parse page templates for references to other pages. Build a Hash containing
SACOMO/Uzu
…/Render.pm6 :104:
#| all a linked pages index for each template. See `Related / linked pages` in
SACOMO/Uzu
…/Render.pm6 :108:
multi sub inject-linked-pages($p, :$template_engine, :&expand-linked-pages) {$p}
SACOMO/Uzu
…/Render.pm6 :112:
:$template_engine,
SACOMO/Uzu
…/Render.pm6 :116:
inject-linked-pages($_, :$template_engine, :&expand-linked-pages);
SACOMO/Uzu
…/Render.pm6 :124:
$template_engine ~~ 'mustache'
SACOMO/Uzu
…/Render.pm6 :135:
:$template_engine,
SACOMO/Uzu
…/Render.pm6 :143:
$k => inject-linked-pages($v, :$template_engine, :&expand-linked-pages);
SACOMO/Uzu
…/Render.pm6 :166:
logger "Broken link in template [$base_page]: page [$key] referenced in [$block_key] not found" when $key !~~ /'://'/ && !%site_index{$key};
SACOMO/Uzu
…/Render.pm6 :242:
sub parse-template(
SACOMO/Uzu
…/Render.pm6 :249:
my ($template_yaml, $template_html) = ~<< ( slurp($path, :r) ~~ / ( ^^ '---' .* '---' | ^^ ) [\v]? (.*) / );
SACOMO/Uzu
…/Render.pm6 :250:
my %yaml = $template_yaml ?? load-yaml $template_yaml.subst(/'---'$/, '') !! %();
SACOMO/Uzu
…/Render.pm6 :251:
return $template_html, %yaml;
SACOMO/Uzu
…/Render.pm6 :255:
logger "Invalid template yaml [$path]";
SACOMO/Uzu
…/Render.pm6 :257:
return $template_html, %{};
SACOMO/Uzu
…/Render.pm6 :268:
templates(:$exts, dir => $source).map: -> $path {
SACOMO/Uzu
…/Render.pm6 :273:
my ($partial_html, %partial_vars) = parse-template :$path;
SACOMO/Uzu
…/Render.pm6 :285:
#| Extract partial names from template
SACOMO/Uzu
…/Render.pm6 :288:
Str $template
SACOMO/Uzu
…/Render.pm6 :291:
~<< ( $template ~~ m:g/ '{{>' \h* <( \N*? )> \h* '}}' / );
SACOMO/Uzu
…/Render.pm6 :295:
Str $template
SACOMO/Uzu
…/Render.pm6 :298:
~<< ( $template ~~ m:g/ '[% INCLUDE' \h* '"' <( \N*? )> '"' \h* '%]' / );
SACOMO/Uzu
…/Render.pm6 :332:
#| Prerender embedded partials and cache in template
SACOMO/Uzu
…/Render.pm6 :333:
#| cache using [parent template name]_[embedded partial name]
SACOMO/Uzu
…/Render.pm6 :336:
Str :$template_engine,
SACOMO/Uzu
…/Render.pm6 :348:
my @partial_keys = partial-names($template_engine, %partial<html>);
SACOMO/Uzu
…/Render.pm6 :355:
:$template_engine,
SACOMO/Uzu
…/Render.pm6 :366:
given $template_engine {
SACOMO/Uzu
…/Render.pm6 :369:
render-template
SACOMO/Uzu
…/Render.pm6 :370:
$template_engine,
SACOMO/Uzu
…/Render.pm6 :373:
engine => $template_engine,
SACOMO/Uzu
…/Render.pm6 :380:
render-template
SACOMO/Uzu
…/Render.pm6 :381:
$template_engine,
SACOMO/Uzu
…/Render.pm6 :383:
template_name => "{$partial_name}_{$embedded_partial_name}",
SACOMO/Uzu
…/Render.pm6 :385:
engine => $template_engine,
SACOMO/Uzu
…/Render.pm6 :399:
multi sub render-template(
SACOMO/Uzu
…/Render.pm6 :409:
multi sub render-template(
SACOMO/Uzu
…/Render.pm6 :412:
Str :$template_name,
SACOMO/Uzu
…/Render.pm6 :421:
logger "Error rendering template [{S/'_'$// given $template_name}]";
SACOMO/Uzu
…/Render.pm6 :428:
$t6.add-template: "{$template_name}_", $content;
SACOMO/Uzu
…/Render.pm6 :429:
$t6.add-template: $template_name, $t6.process("{$template_name}_", |%context);
SACOMO/Uzu
…/Render.pm6 :431:
# Store template
SACOMO/Uzu
…/Render.pm6 :432:
$t6.add-template: $template_name, $content;
SACOMO/Uzu
…/Render.pm6 :434:
# Render a stored template
SACOMO/Uzu
…/Render.pm6 :435:
$t6.add-template: $template_name, $t6.process($template_name, |%context);
SACOMO/Uzu
…/Render.pm6 :445:
Str :$template_engine,
SACOMO/Uzu
…/Render.pm6 :447:
Str :$layout_template,
SACOMO/Uzu
…/Render.pm6 :476:
my @layout_partials = partial-names $template_engine, $layout_template;
SACOMO/Uzu
…/Render.pm6 :486:
my @page_partials = partial-names $template_engine, %page<html>;
SACOMO/Uzu
…/Render.pm6 :487:
my Bool $nolayout = %page<vars><nolayout>.defined || $layout_template ~~ '';
SACOMO/Uzu
…/Render.pm6 :501:
# Capture i18n, template, layout, and partial modified timestamps
SACOMO/Uzu
…/Render.pm6 :515:
%page<vars>, :$template_engine, expand-linked-pages => ->
SACOMO/Uzu
…/Render.pm6 :534:
my Template6 $t6 .= new when $template_engine ~~ 'tt';
SACOMO/Uzu
…/Render.pm6 :535:
my %partials = %() when $template_engine ~~ 'mustache';
SACOMO/Uzu
…/Render.pm6 :542:
template_engine => $template_engine,
SACOMO/Uzu
…/Render.pm6 :561:
given $template_engine {
SACOMO/Uzu
…/Render.pm6 :564:
render-template
SACOMO/Uzu
…/Render.pm6 :565:
$template_engine,
SACOMO/Uzu
…/Render.pm6 :568:
engine => $template_engine,
SACOMO/Uzu
…/Render.pm6 :575:
render-template
SACOMO/Uzu
…/Render.pm6 :576:
$template_engine,
SACOMO/Uzu
…/Render.pm6 :578:
template_name => "{$page_name}_{$partial_name}",
SACOMO/Uzu
…/Render.pm6 :580:
engine => $template_engine,
SACOMO/Uzu
…/Render.pm6 :590:
# Skip rendering if layout, page, or partial templates
SACOMO/Uzu
…/Render.pm6 :600:
my Str $page_contents = do given $template_engine {
SACOMO/Uzu
…/Render.pm6 :602:
render-template
SACOMO/Uzu
…/Render.pm6 :603:
$template_engine,
SACOMO/Uzu
…/Render.pm6 :606:
engine => $template_engine,
SACOMO/Uzu
…/Render.pm6 :613:
# Cache template
SACOMO/Uzu
…/Render.pm6 :614:
render-template
SACOMO/Uzu
…/Render.pm6 :615:
$template_engine,
SACOMO/Uzu
…/Render.pm6 :616:
template_name => "{$page_name}_",
SACOMO/Uzu
…/Render.pm6 :618:
engine => $template_engine,
SACOMO/Uzu
…/Render.pm6 :623:
render-template
SACOMO/Uzu
…/Render.pm6 :624:
$template_engine,
SACOMO/Uzu
…/Render.pm6 :625:
template_name => "{$page_name}_",
SACOMO/Uzu
…/Render.pm6 :639:
!! do given $template_engine {
SACOMO/Uzu
…/Render.pm6 :641:
render-template
SACOMO/Uzu
…/Render.pm6 :642:
$template_engine,
SACOMO/Uzu
…/Render.pm6 :645:
engine => $template_engine,
SACOMO/Uzu
…/Render.pm6 :647:
content => $layout_template
SACOMO/Uzu
…/Render.pm6 :652:
# Cache layout template
SACOMO/Uzu
…/Render.pm6 :653:
render-template
SACOMO/Uzu
…/Render.pm6 :654:
$template_engine,
SACOMO/Uzu
…/Render.pm6 :655:
template_name => 'layout',
SACOMO/Uzu
…/Render.pm6 :657:
engine => $template_engine,
SACOMO/Uzu
…/Render.pm6 :659:
content => $layout_template
SACOMO/Uzu
…/Render.pm6 :662:
# Cache page template
SACOMO/Uzu
…/Render.pm6 :663:
render-template
SACOMO/Uzu
…/Render.pm6 :664:
$template_engine,
SACOMO/Uzu
…/Render.pm6 :665:
template_name => 'content',
SACOMO/Uzu
…/Render.pm6 :669:
render-template
SACOMO/Uzu
…/Render.pm6 :670:
$template_engine,
SACOMO/Uzu
…/Render.pm6 :672:
template_name => 'layout',
SACOMO/Uzu
…/Render.pm6 :717:
my List $exts = %config<template_extensions>{%config<template_engine>};
SACOMO/Uzu
…/Render.pm6 :725:
my @pages = templates(:$exts, dir => %config<pages_dir>).map: -> $path {
SACOMO/Uzu
…/Render.pm6 :731:
my ($page_html, %page_vars) = parse-template :$path;
SACOMO/Uzu
…/Render.pm6 :775:
my @template_dirs = |%config<template_dirs>, |find(dir => %config<pages_dir>, type => 'dir');
SACOMO/Uzu
…/Render.pm6 :779:
my IO::Path $layout_path = grep(/ 'layout.' @$exts $ /, templates(:$exts, dir => $theme_dir)).head;
SACOMO/Uzu
…/Render.pm6 :782:
my ($layout_template, $layout_vars) =
SACOMO/Uzu
…/Render.pm6 :784:
?? parse-template(path => $layout_path)
SACOMO/Uzu
…/Render.pm6 :787:
logger "Theme [{$theme_name}] does not contain a layout template" unless $layout_path.defined;
SACOMO/Uzu
…/Render.pm6 :799:
logger "Compile templates [$language]";
SACOMO/Uzu
…/Render.pm6 :808:
:$layout_template,
SACOMO/Uzu
…/Render.pm6 :817:
template_engine => %config<template_engine>,
SACOMO/Uzu
…/Watch.pm6 :82:
|%config<template_dirs>,
SACOMO/Uzu
…/config.yml :12:
template_engine: mustache
SACOMO/Uzu
…/jumbotron.mustache :5:
<p>This is a template for a simple marketing or informational website. It includes a large callout called a jumbotron and three supporting pieces of content. Use it as a starting point to create something more unique.</p>
SACOMO/Uzu
…/jumbotron.tt :5:
<p>This is a template for a simple marketing or informational website. It includes a large callout called a jumbotron and three supporting pieces of content. Use it as a starting point to create something more unique.</p>
SACOMO/Uzu
…/index-ja.html :47:
<p>This is a template for a simple marketing or informational website. It includes a large callout called a jumbotron and three supporting pieces of content. Use it as a starting point to create something more unique.</p>
SACOMO/Uzu
…/index.html :47:
<p>This is a template for a simple marketing or informational website. It includes a large callout called a jumbotron and three supporting pieces of content. Use it as a starting point to create something more unique.</p>
SACOMO/Uzu
…/index-ja.html :48:
<p>This is a template for a simple marketing or informational website. It includes a large callout called a jumbotron and three supporting pieces of content. Use it as a starting point to create something more unique.</p>
SACOMO/Uzu
…/index.html :48:
<p>This is a template for a simple marketing or informational website. It includes a large callout called a jumbotron and three supporting pieces of content. Use it as a starting point to create something more unique.</p>
SACOMO/Uzu
…/02-build-tt.t :16:
my $tmp_root = tempdir;
SACOMO/Uzu
…/02-build-tt.t :30:
# Generate HTML from templates
SACOMO/Uzu
…/02-build-tt.t :137:
my $tmp_root = tempdir;
SACOMO/Uzu
…/02-build-tt.t :151:
# Generate HTML from templates
SACOMO/Uzu
…/03-build-mustache.t :16:
my $tmp_root = tempdir;
SACOMO/Uzu
…/03-build-mustache.t :30:
# Generate HTML from templates
SACOMO/Uzu
…/03-build-mustache.t :132:
my $tmp_root = tempdir;
SACOMO/Uzu
…/03-build-mustache.t :146:
# Generate HTML from templates
SACOMO/Uzu
…/04-build-warnings.t :17:
my $tmp_root = tempdir;
SACOMO/Uzu
…/04-build-warnings.t :40:
# Do not die when theme layout template is missing
SACOMO/Uzu
…/04-build-warnings.t :52:
like $build_out, / 'Rendered page [empty] is empty' /, 'empty page template warning to stdout';
SACOMO/Uzu
…/04-build-warnings.t :54:
like $build_out, / 'Theme [default] does not contain a layout template' /, 'theme layout template is missing warning to stdout';
SAMGWISE/PowerNap
…/README.md :18:
The core of PowerNap is the PowerNap::Controller. This role provides a number of default methods and a verb dispatcher. Given a `PowerNap::Verb` `Enu…
SAMGWISE/PowerNap
…/PowerNap.pm6 :20:
Given a `PowerNap::Verb` `Enum` and a `Map` the dispatcher routes to the relevant method and attempts to call the method with the given `Map`.
SAMGWISE/Result
…/README.md :45:
Result is inspired by Rust's Result enum. It provides an error management framework similar to Perl6's Failures, but with stricter semantics. This is by no means a one to one port, but it does attempt to provide the core essentials of this pattern.
SAMGWISE/Result
…/Result.pm6 :45:
This is by no means a one to one port, but it does attempt to provide the core essentials of this pattern.
SAMGWISE/ScaleVec
…/README.md :32:
Encapsulating the power of linear algebra in an easy to use music library, ScaleVec provides a way to represent musical structures such as chords, rhythms, scales and tempos with a common format.
SAMGWISE/ScaleVec
…/ScaleVec.pm6 :37:
Encapsulating the power of linear algebra in an easy to use music library, ScaleVec provides a way to represent musical structures such as chords, rhythms, scales and tempos with a common format.
SAMGWISE/ScaleVec
…/Intervalic.pm6 :95:
temp $_ = self;
SCIMON/Game-Sudoku
…/README.md :28:
Game::Sudoku is a simple library to store, test and attempt to solve sudoku puzzles.
SCIMON/Game-Sudoku
…/README.md :72:
Getter / Setter for individual cells. The setter returns the updated game allowing for method chaining. Note that attempting to set a value defined in the constructor will not work, returning the unchanged game object.
SCIMON/Game-Sudoku
…/Game-Sudoku-Solver.md :4:
Game::Sudoku::Solver - Attempt to solve Sudoku puzzles
SCIMON/Game-Sudoku
…/Game-Sudoku-Solver.md :19:
Takes a Game::Sudoku object and attempts to solve it by a series of simple tests looking for unique values.
SCIMON/Game-Sudoku
…/Sudoku.pm6 :177:
Game::Sudoku is a simple library to store, test and attempt to solve sudoku puzzles.
SCIMON/Game-Sudoku
…/Sudoku.pm6 :215:
Note that attempting to set a value defined in the constructor will not work, returning the unchanged
SCIMON/Game-Sudoku
…/Solver.pm6 :96:
Game::Sudoku::Solver - Attempt to solve Sudoku puzzles
SCIMON/Game-Sudoku
…/Solver.pm6 :109:
Takes a Game::Sudoku object and attempts to solve it by a series of simple tests looking for unique values.
SCIMON/Proc-InvokeEditor
…/README.md :27:
Create a new Proc::InvokeEditor object, takes an optional list of paths to editors to attempt to use. Note: currently all paths given must be complete paths, the system doesn't attempt an checking of the path environment for files.
SCIMON/Proc-InvokeEditor
…/README.md :76:
The original Perl5 module includes methods to turn off auto cleanup of temp files and to reuse the same file. This functionality is not planned for this version of the module, if required please raise a ticket.
SCIMON/Proc-InvokeEditor
…/InvokeEditor.pm6 :85:
my ( $file, $handle ) = tempfile;
SCIMON/Proc-InvokeEditor
…/InvokeEditor.pm6 :117:
Create a new Proc::InvokeEditor object, takes an optional list of paths to editors to attempt to use.
SCIMON/Proc-InvokeEditor
…/InvokeEditor.pm6 :118:
Note: currently all paths given must be complete paths, the system doesn't attempt an checking of the path environment for files.
SCIMON/Proc-InvokeEditor
…/InvokeEditor.pm6 :161:
The original Perl5 module includes methods to turn off auto cleanup of temp files and to reuse the same file. This functionality is not planned for this version of the module,
SCIMON/Test-HTTP-Server
…/03-empty-folder.t :7:
my $empty-folder = tempdir();
SCIMON/Test-HTTP-Server
…/04-simple-files.t :38:
my $folder = tempdir();
SCIMON/Trait-Env
…/02-env-only.t :18:
temp %*ENV = { "ATTRIBUTE" => "Here" };
SCIMON/Trait-Env
…/02-env-only.t :28:
temp %*ENV = {};
SCIMON/Trait-Env
…/02-env-only.t :37:
temp %*ENV = { "DASH_TO_UNDERSCORE" => "Worked" };
SCIMON/Trait-Env
…/02-env-only.t :47:
temp %*ENV = { INT => "5", BOOL => "", STR => "String" };
SCIMON/Trait-Env
…/02-env-only.t :58:
temp %*ENV = {};
SCIMON/Trait-Env
…/02-env-only.t :69:
temp %*ENV = { :VALUE<value> }
SCIMON/Trait-Env
…/03-default.t :12:
temp %*ENV = {
SCIMON/Trait-Env
…/03-default.t :27:
temp %*ENV = {};
SCIMON/Trait-Env
…/04-required.t :10:
temp %*ENV = { "ATTRIBUTE" => "Here" };
SCIMON/Trait-Env
…/04-required.t :19:
temp %*ENV = {};
SCIMON/Trait-Env
…/05-bool-interpolation.t :16:
temp %*ENV = { BOOL_SIMPLE_TRUE => "1", BOOL_SIMPLE_FALSE => "" };
SCIMON/Trait-Env
…/05-bool-interpolation.t :26:
temp %*ENV = { BOOL_STRING_TRUE => $t };
SCIMON/Trait-Env
…/05-bool-interpolation.t :34:
temp %*ENV = { BOOL_STRING_FALSE => $f };
SCIMON/Trait-Env
…/06-arrays.t :10:
temp %*ENV = (
SCIMON/Trait-Env
…/06-arrays.t :24:
temp %*ENV = (
SCIMON/Trait-Env
…/06-arrays.t :39:
temp %*ENV = (
SCIMON/Trait-Env
…/06-arrays.t :52:
temp %*ENV = ();
SCIMON/Trait-Env
…/06-arrays.t :61:
temp %*ENV = ( SIMPLE_ARRAY => $value );
SCIMON/Trait-Env
…/06-arrays.t :72:
temp %*ENV = ();
SCIMON/Trait-Env
…/06-arrays.t :85:
temp %*ENV = ();
SCIMON/Trait-Env
…/06-arrays.t :95:
temp %*ENV = ( :INTA<1>, :INTB<2>, :INTC<3> );
SCIMON/Trait-Env
…/06-arrays.t :103:
temp %*ENV = ( :BOOL_A<True>, :BOOL_B<False>, :BOOL_C<1>, :BOOL_D('') );
SCIMON/Trait-Env
…/06-arrays.t :115:
temp %*ENV = ( :LIST<1:2:3:4:5> );
SCIMON/Trait-Env
…/06-arrays.t :122:
temp %*ENV = ();
SCIMON/Trait-Env
…/07-hashes.t :10:
temp %*ENV = ( :SEP_HASH<a;b:b;c:d;e> );
SCIMON/Trait-Env
…/07-hashes.t :18:
temp %*ENV = ();
SCIMON/Trait-Env
…/07-hashes.t :30:
temp %*ENV = ();
SCIMON/Trait-Env
…/07-hashes.t :43:
temp %*ENV = ( :TEST_POST<test>, :HOME_POST<home>,
SCIMON/Trait-Env
…/07-hashes.t :63:
temp %*ENV = (
SCIMON/Trait-Env
…/07-hashes.t :78:
temp %*ENV = ();
SCIMON/Trait-Env
…/08-attr-single-load.t :11:
temp %*ENV = { "ATTRIBUTE" => "Here" };
SKAJI/App-Mi6
…/Mi6.pm6 :41:
chdir($main-dir); # XXX temp $*CWD
SKAJI/App-Mi6
…/Mi6.pm6 :45:
my %content = App::Mi6::Template::template(
SKAJI/App-Mi6
…/Mi6.pm6 :98:
temp %*ENV;
SKAJI/App-Mi6
…/Template.pm6 :3:
our sub template(:$module, :$module-file, :$dist, :$author, :$cpanid, :$email, :$year) {
SKAJI/App-Mi6
…/Template.pm6 :4:
my %template =
SKAJI/App-Mi6
…/Template.pm6 :296:
%template;
SKAJI/HTTP-Tinyish
…/Curl.pm6 :19:
my ($out-file, $out-fh) = $factory.tempfile;
SKAJI/HTTP-Tinyish
…/Curl.pm6 :20:
my ($err-file, $err-fh) = $factory.tempfile;
SKAJI/HTTP-Tinyish
…/Curl.pm6 :21:
my ($header-file, $header-fh) = $factory.tempfile;
SKAJI/HTTP-Tinyish
…/Curl.pm6 :61:
my ($out-file, $out-fh) = $factory.tempfile;
SKAJI/HTTP-Tinyish
…/Curl.pm6 :62:
my ($err-file, $err-fh) = $factory.tempfile;
SKAJI/HTTP-Tinyish
…/Curl.pm6 :63:
my ($header-file, $header-fh) = $factory.tempfile;
SKAJI/HTTP-Tinyish
…/Curl.pm6 :121:
my ($data-file, $data-fh) = $factory.tempfile;
SKAJI/HTTP-Tinyish
…/FileTempFactory.pm6 :5:
has @.tempfile;
SKAJI/HTTP-Tinyish
…/FileTempFactory.pm6 :7:
method tempfile(Bool :$unlink = True) {
SKAJI/HTTP-Tinyish
…/FileTempFactory.pm6 :8:
my ($file, $fh) = tempfile(:!unlink);
SKAJI/HTTP-Tinyish
…/FileTempFactory.pm6 :9:
@!tempfile.push( ($file, $fh) ) if $unlink;
SKAJI/HTTP-Tinyish
…/FileTempFactory.pm6 :14:
for @!tempfile -> ($file, $fh) {
SKAJI/HTTP-Tinyish
…/FileTempFactory.pm6 :18:
@!tempfile = Empty;
SKAJI/HTTP-Tinyish
…/FileTempFactory.pm6 :22:
self.cleanup if @!tempfile;
TBROWDER/Date-Names
…/CHANGELOG.md :17:
- Added a resources template file. xx.pm6, for contributors
TBROWDER/Date-Names
…/CHANGELOG.md :28:
language and created a template file, xx.pm6, in the new
TBROWDER/Date-Names
…/CONTRIBUTING.md :15:
+ Copy the template file ./resources/xx.pm6 and rename it to
TBROWDER/Date-Names
…/make-tests.p6 :41:
read-test-template %parts;
TBROWDER/Date-Names
…/make-tests.p6 :116:
sub read-test-template(%parts) {
TBROWDER/Date-Names
…/make-tests.p6 :232:
# (see the language test template file for the current number)
TBROWDER/Geo-Ellipsoid
…/LICENSE :167:
expressly provided under this License. Any attempt otherwise to copy, modify,
TBROWDER/Geo-Ellipsoid
…/LICENSE :368:
provided that the use of this Package is embedded; that is, when no overt attempt
TBROWDER/Proc-More
…/030-process-time.t :34:
my ($prog-file, $fh) = tempfile;
TBROWDER/Proc-More
…/040-run-command.t :36:
my ($prog-file, $fh) = tempfile;
TBROWDER/Proc-More
…/050-time-command.t :33:
my ($prog-file, $fh) = tempfile;
TITSUKI/Algorithm-LibSVM
…/README.md :152:
As a temporary expedient for RT130187, I applied the patch programs (e.g. src/3.22/svm.cpp.patch) for the sake of disabling random access of the problematic array.
TITSUKI/Algorithm-LibSVM
…/LibSVM.pm6 :261:
As a temporary expedient for L<RT130187|https://rt.perl.org/Public/Bug/Display.html?id=130187\>, I applied the patch programs (e.g. L<src/3.22/svm.cpp.patch>) for the sake of disabling random access of the problematic array.
TITSUKI/Algorithm-LibSVM
…/svm.cpp :15:
template <class T> static inline T min(T x,T y) { return (x<y)?x:y; }
TITSUKI/Algorithm-LibSVM
…/svm.cpp :18:
template <class T> static inline T max(T x,T y) { return (x>y)?x:y; }
TITSUKI/Algorithm-LibSVM
…/svm.cpp :20:
template <class T> static inline void swap(T& x, T& y) { T t=x; x=y; y=t; }
TITSUKI/Algorithm-LibSVM
…/svm.cpp :21:
template <class S, class T> static inline void clone(T*& dst, S* src, int n)
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :38:
die "cannot create temporary file";
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :65:
debug 'closing temp file';
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :71:
debug 'destroy tempfile';
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :197:
$!input //= self!create-temp-buffer($!content-length);
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :213:
$!input //= self!create-temp-buffer(Nil);
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :230:
debug 'writing temp file';
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :399:
method !create-temp-buffer($len) {
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :404:
debug('tempfile') if DEBUGGING;
TYIL/App-Assixt
…/.travis.yml :15:
- cd $(mktemp -d)
TYIL/App-Assixt
…/CHANGELOG.md :18:
- The `upload` command now tries multiple attempts to upload a distribution.
TYIL/App-Assixt
…/CHANGELOG.md :44:
and `unit` templates.
TYIL/App-Assixt
…/CHANGELOG.md :48:
- `touch meta` has been added to create meta file templates, including a `readme`,
TYIL/App-Assixt
…/LICENSE :410:
provided under this License. Any attempt otherwise to propagate or
TYIL/App-Assixt
…/README.pod6 :28:
cd "$(mktemp -d)"
TYIL/App-Assixt
…/New.pm6 :78:
template("readme.pod6", $dir.add("README.pod6"), clobber => $config<force>, context => %(
TYIL/App-Assixt
…/New.pm6 :86:
template("editorconfig", $dir.add(".editorconfig"), context => $config<style>, clobber => $config<force>);
TYIL/App-Assixt
…/New.pm6 :87:
template("gitignore", $dir.add(".gitignore"), clobber => $config<force>) if $config<external><git> && !$config<runtime><no-git>;
TYIL/App-Assixt
…/New.pm6 :88:
template("travis.yml", $dir.add(".travis.yml"), clobber => $config<force>) if $config<external><travis> && !$config<runtime><no-travis>;
TYIL/App-Assixt
…/New.pm6 :89:
template("changelog.md", $dir.add("CHANGELOG.md"), clobber => $config<force>) if !$config<runtime><no-changelog>;
TYIL/App-Assixt
…/New.pm6 :97:
template("gitlab-ci.yml", $dir.add(".gitlab-ci.yml"), :%context, clobber => $config<force>);
TYIL/App-Assixt
…/Bin.pm6 :27:
template("module/bin", $path, context => %(
TYIL/App-Assixt
…/Bin.pm6 :29:
vim => template("vim-line/$config<style><indent>", context => $config<style>).trim-trailing,
TYIL/App-Assixt
…/Class.pm6 :28:
template("module/class", $class, clobber => $config<force>, context => %(
TYIL/App-Assixt
…/Class.pm6 :30:
vim => template("vim-line/$config<style><indent>", context => $config<style>).trim-trailing,
TYIL/App-Assixt
…/Lib.pm6 :58:
my $template = "module/";
TYIL/App-Assixt
…/Lib.pm6 :61:
vim => template("vim-line/$config<style><indent>", context => $config<style>).trim-trailing,
TYIL/App-Assixt
…/Lib.pm6 :68:
when "class" { $template ~= "class" }
TYIL/App-Assixt
…/Lib.pm6 :69:
when "unit" { $template ~= "unit" }
TYIL/App-Assixt
…/Lib.pm6 :70:
default { $template ~= "lib" }
TYIL/App-Assixt
…/Lib.pm6 :73:
template($template, $path, :%context);
TYIL/App-Assixt
…/Meta.pm6 :13:
#| default templates that were either removed, or added in C<App::Assixt> after
TYIL/App-Assixt
…/Meta.pm6 :32:
my Str $template = %files{$type};
TYIL/App-Assixt
…/Meta.pm6 :34:
if (!$template) {
TYIL/App-Assixt
…/Meta.pm6 :40:
my IO::Path $output = $config<cwd>.add(self.template-location($template));
TYIL/App-Assixt
…/Meta.pm6 :50:
template($template, $output, clobber => $config<force>, context => %(
TYIL/App-Assixt
…/Meta.pm6 :61:
out("touch", type => "meta template", file => $output.basename, module => %meta<name>);
TYIL/App-Assixt
…/Meta.pm6 :66:
method template-location (
TYIL/App-Assixt
…/Meta.pm6 :67:
Str:D $template,
TYIL/App-Assixt
…/Meta.pm6 :70:
given $template {
TYIL/App-Assixt
…/Meta.pm6 :72:
when "editorconfig" { return ".$template" }
TYIL/App-Assixt
…/Meta.pm6 :73:
when "gitignore" { return ".$template" }
TYIL/App-Assixt
…/Meta.pm6 :74:
when "gitlab-ci.yml" { return ".$template" }
TYIL/App-Assixt
…/Meta.pm6 :76:
default { return $template }
TYIL/App-Assixt
…/Module.pm6 :28:
template("module/module", $lib, clobber => $config<force>, context => %(
TYIL/App-Assixt
…/Module.pm6 :30:
vim => template("vim-line/$config<style><indent>", context => $config<style>).trim-trailing,
TYIL/App-Assixt
…/Test.pm6 :27:
vim => template("vim-line/$config<style><indent>", context => $config<style>).trim-trailing,
TYIL/App-Assixt
…/Test.pm6 :30:
template("module/test", $path, :%context);
TYIL/App-Assixt
…/Upload.pm6 :39:
say "Attempt #$tries...";
TYIL/App-Assixt
…/en.yml :65:
directory at this path or use `--force` to ignore this error and attempt
TYIL/App-Assixt
…/en.yml :75:
Unrecognized template type "$(type)". Read the documentation on $(docs) to
TYIL/App-Assixt
…/02-command-bootstrap-config.t :17:
my IO::Path $module = create-test-module("Local::Test::Bootstrap::Config", tempdir.IO);
TYIL/App-Assixt
…/02-command-bootstrap-config.t :20:
config-file => (tempfile)[0] ~ ".toml",
TYIL/App-Assixt
…/02-command-bump.t :20:
my IO::Path $module = create-test-module("Local::Test::Bump", tempdir.IO);
TYIL/App-Assixt
…/02-command-bump.t :101:
$config<cwd> = create-test-module("Local::Test::Bump::Patch", tempdir.IO);
TYIL/App-Assixt
…/02-command-bump.t :115:
$config<cwd> = create-test-module("Local::Test::Bump::Minor", tempdir.IO);
TYIL/App-Assixt
…/02-command-bump.t :129:
$config<cwd> = create-test-module("Local::Test::Bump::Major", tempdir.IO);
TYIL/App-Assixt
…/02-command-clean.t :18:
my IO::Path $module = create-test-module("Local::Test::Clean", tempdir.IO);
TYIL/App-Assixt
…/02-command-depend.t :18:
my IO::Path $module = create-test-module("Local::Test::Depend", tempdir.IO);
TYIL/App-Assixt
…/02-command-dist.t :22:
my IO::Path $module = create-test-module("Local::Test::Dist", tempdir.IO);
TYIL/App-Assixt
…/02-command-dist.t :23:
my IO::Path $storage = tempdir.IO;
TYIL/App-Assixt
…/02-command-dist.t :45:
my IO::Path $output-dir = tempdir.IO;
TYIL/App-Assixt
…/02-command-dist.t :64:
my IO::Path $output-dir = tempdir.IO.add("o u t p u t");
TYIL/App-Assixt
…/02-command-dist.t :83:
my IO::Path $module = create-test-module("Local::Test::Dist::Readme", tempdir.IO);
TYIL/App-Assixt
…/02-command-dist.t :94:
my IO::Path $module = create-test-module("Local::Test::Dist::Readme::Pod6", tempdir.IO);
TYIL/App-Assixt
…/02-command-dist.t :115:
my IO::Path $module = create-test-module("Local::Test::Dist::SourceUrl", tempdir.IO, %(
TYIL/App-Assixt
…/02-command-meta.t :16:
my IO::Path $module = create-test-module("Test::Meta::SourceUrl", tempdir.IO, %(
TYIL/App-Assixt
…/02-command-new.t :19:
cwd => tempdir.IO,
TYIL/App-Assixt
…/02-command-new.t :124:
cwd => tempdir.IO,
TYIL/App-Assixt
…/02-command-new.t :151:
cwd => tempdir.IO,
TYIL/App-Assixt
…/02-command-new.t :178:
cwd => tempdir.IO,
TYIL/App-Assixt
…/02-command-new.t :205:
cwd => tempdir.IO,
TYIL/App-Assixt
…/02-command-touch-bin.t :18:
my IO::Path $module = create-test-module("Local::Test::Touch::Bin", tempdir.IO);
TYIL/App-Assixt
…/02-command-touch-class.t :18:
my IO::Path $module = create-test-module("Local::Test::Touch::Lib::Class", tempdir.IO);
TYIL/App-Assixt
…/02-command-touch-meta.t :18:
my IO::Path $module = create-test-module("Local::Test::Touch::Meta", tempdir.IO);
TYIL/App-Assixt
…/02-command-touch-module.t :18:
my IO::Path $module = create-test-module("Local::Test::Touch::Lib::Unit", tempdir.IO);
TYIL/App-Assixt
…/02-command-touch-resource.t :18:
my IO::Path $module = create-test-module("Local::Test::Touch::Resource", tempdir.IO);
TYIL/App-Assixt
…/02-command-touch-test.t :17:
my IO::Path $module = create-test-module("Local::Test::Touch::Test", tempdir.IO);
TYIL/App-Assixt
…/02-command-undepend.t :28:
my IO::Path $module = create-test-module("Local::Test::Undepend::Single", tempdir.IO);
TYIL/App-Assixt
…/02-command-undepend.t :56:
my IO::Path $module = create-test-module("Local::Test::Undepend::Multiple", tempdir.IO);
TYIL/App-MPD-AutoQueue
…/LICENSE :410:
provided under this License. Any attempt otherwise to propagate or
TYIL/Config-Parser-toml
…/02-write.t :26:
my ($filename, $fh) = tempfile;
TYIL/Config
…/Config.pm6 :137:
#| attempt to deduce the parser to use.
TYIL/Config
…/Parser.pm6 :9:
#| Attempt to read the file at a given $path, and returns its
TYIL/Config
…/Parser.pm6 :18:
#| Attempt to write the $config Hash at a given $path. Returns
TYIL/Config
…/02-getting.t :33:
is $config.get(Nil, "test"), "test", "Attempt .get with Nil key with default";
TYIL/Config
…/02-getting.t :34:
ok $config.get(Nil) === Nil, "Attempt to .get with Nil key";
TYIL/Config
…/05-null-parser.t :20:
ok $config.read("t/files/config", "Config::Parser::NULL"), "Attempt to read a file with Config::Parser::NULL";
TYIL/Config
…/05-null-parser.t :29:
ok $config.write("t/t/t"), "Attempt to write a file with Config::Parser::NULL";
TYIL/Dist-Helper
…/.travis.yml :20:
- cd $(mktemp -d)
TYIL/Dist-Helper
…/LICENSE :410:
provided under this License. Any attempt otherwise to propagate or
TYIL/Dist-Helper
…/META6.json :28:
"templates/editorconfig",
TYIL/Dist-Helper
…/META6.json :29:
"templates/gitignore",
TYIL/Dist-Helper
…/META6.json :30:
"templates/module/bin",
TYIL/Dist-Helper
…/META6.json :31:
"templates/module/class",
TYIL/Dist-Helper
…/META6.json :32:
"templates/module/lib",
TYIL/Dist-Helper
…/META6.json :33:
"templates/module/test",
TYIL/Dist-Helper
…/META6.json :34:
"templates/module/unit",
TYIL/Dist-Helper
…/META6.json :35:
"templates/travis.yml",
TYIL/Dist-Helper
…/META6.json :36:
"templates/vim-line/space",
TYIL/Dist-Helper
…/META6.json :37:
"templates/vim-line/tab"
TYIL/Dist-Helper
…/Template.pm6 :9:
multi sub template (
TYIL/Dist-Helper
…/Template.pm6 :10:
Str:D $template,
TYIL/Dist-Helper
…/Template.pm6 :14:
my Str $absolute = "templates/$template";
TYIL/Dist-Helper
…/Template.pm6 :22:
multi sub template (
TYIL/Dist-Helper
…/Template.pm6 :23:
Str:D $template,
TYIL/Dist-Helper
…/Template.pm6 :31:
spurt($destination, template($template, :%context));
TYIL/Dist-Helper
…/Template.pm6 :34:
multi sub template (
TYIL/Dist-Helper
…/Template.pm6 :35:
Str:D $template,
TYIL/Dist-Helper
…/Template.pm6 :40:
template($template, $destination.IO, :%context, :$clobber);
TYIL/IO-Path-Dirstack
…/01-pop-push.t :12:
my @dirs = tempdir() xx 4;
TYIL/IRC-Client-Plugin-Ignore
…/LICENSE :410:
provided under this License. Any attempt otherwise to propagate or
TYIL/Ops-SI
…/LICENSE.txt :398:
provided under this License. Any attempt otherwise to propagate or
UFOBAT/Bailador
…/.gitattributes :1:
*.template linguist-language=HTML
UFOBAT/Bailador
…/Changes :10:
- Ticket #280 - Serve templates on Windows
UFOBAT/Bailador
…/Changes :29:
- Log if template or layouts were not found and avoid "internal server errors".
UFOBAT/Bailador
…/ISSUE_TEMPLATE.md :22:
Oh, and feel free to remove this template text from your issue :)
UFOBAT/Bailador
…/META6.json :89:
"error.template",
UFOBAT/Bailador
…/README.md :20:
- `renderer(Bailador::Template $renderer)`
UFOBAT/Bailador
…/README.md :32:
- `template(Str $template-name, *@params)`
UFOBAT/Bailador
…/README.md :44:
- Templates
UFOBAT/Bailador
…/README.md :45:
- Error Templates
UFOBAT/Bailador
…/README.md :205:
Sets the Renderer that's being used to render your templates. See the Templates section for more details.
UFOBAT/Bailador
…/README.md :273:
#### `template(Str $template-name, :$layout, *@params)`
UFOBAT/Bailador
…/README.md :275:
Calls the template which is a file in the views folder. You can specify a $:layout if you want to override the settings in Bailador::Configuration.
UFOBAT/Bailador
…/README.md :349:
It is possible to user other template engines as well.
UFOBAT/Bailador
…/README.md :352:
The template files should be placed by default in a folder named "views" which is located in the same directory as your application.pl file. If you want to override this, you just have to change the `views` settings, and choose you own directory :
UFOBAT/Bailador
…/README.md :354:
views: "templates"
UFOBAT/Bailador
…/README.md :360:
template 'template.tt', $name, $something;
UFOBAT/Bailador
…/README.md :363:
the template (or in other words the file views/template.tt) gets invoked "as a subroutine" and the |@params get passed. This is a example of a template file with Template::Mojo:
UFOBAT/Bailador
…/README.md :374:
In order to use layouts you can pass a layout option to the `template()` call.
UFOBAT/Bailador
…/README.md :377:
template 'template.tt', layout => 'main', $name, $something;
UFOBAT/Bailador
…/README.md :380:
First Bailador renders your template with its parameters, and then scans the 'layout' sub directory for another layout template. …
UFOBAT/Bailador
…/README.md :384:
In order to customize the error pages drop a template file with the filename of the HTTP status code and the suffix `.xx` in your views directory. Currently there only two different error codes: `404` and `500`.
UFOBAT/Bailador
…/README.md :484:
'terminal:stdout' => { template-filter => 'http-requests' },
UFOBAT/Bailador
…/README.md :488:
'file:access.log' => { template-filter => 'http-requests' },
UFOBAT/Bailador
…/README.md :512:
| template-format | predefined format strings | 'combined' (Apache combined format) |
UFOBAT/Bailador
…/README.md :513:
| template-filter | predefined filters | 'http-requests' HTTP request access |
UFOBAT/Bailador
…/README.md :514:
| category | filter on the log category | 'templates' logs related to templating |
UFOBAT/Bailador
…/README.md :521:
##### template-format
UFOBAT/Bailador
…/README.md :530:
##### template-filter
UFOBAT/Bailador
…/README.md :536:
- templates
UFOBAT/Bailador
…/app.pl6 :24:
<li><a href="/template/abc">Use a template</a></li>
UFOBAT/Bailador
…/app.pl6 :73:
# templates!
UFOBAT/Bailador
…/app.pl6 :74:
get / ^ '/template/' (.+) $ / => sub ($x) {
UFOBAT/Bailador
…/app.pl6 :75:
template 'tmpl.tt', { name => $x }
UFOBAT/Bailador
…/class_app.pl6 :25:
self.template('tmpl.tt', { name => $x });
UFOBAT/Bailador
…/bar.html :1:
Bar from template
UFOBAT/Bailador
…/foo.html :1:
Foo from template
UFOBAT/Bailador
…/index.html :1:
<h1>Main page - from template.</h1>
UFOBAT/Bailador
…/index.html :3:
<li><a href="/foo">foo</a> has template - has route = served from route</li>
UFOBAT/Bailador
…/index.html :4:
<li><a href="/bar">bar</a> has template - no route = served from template</li>
UFOBAT/Bailador
…/index.html :5:
<li><a href="/qux">qux</a> no template - has route = served from route</li>
UFOBAT/Bailador
…/index.html :6:
<li><a href="/xyz">xyz</a> no template - no route = 404</li>
UFOBAT/Bailador
…/index.html :7:
<li><a href="/cakes/carrot">cakes/carrot</a> template from subirectory </li>
UFOBAT/Bailador
…/app.pl6 :5:
template 'main.tt', { title => 'Hello Layout' };
UFOBAT/Bailador
…/app.pl6 :9:
template 'main.tt', :layout('other.tt'), { title => 'Using Other Layout' };
UFOBAT/Bailador
…/pastebin.pl6 :12:
template 'index.tt'
UFOBAT/Bailador
…/app.pl :11:
template 'index.tt', {
UFOBAT/Bailador
…/app.pl6 :11:
template 'index.html';
UFOBAT/Bailador
…/app.pl6 :15:
template 'page.html';
UFOBAT/Bailador
…/app.pl6 :19:
template 'sub/page.html';
UFOBAT/Bailador
…/app.pl6 :23:
template 'sub/index.html';
UFOBAT/Bailador
…/index.html :1:
<h2>Welcome to Bailador templates example!</h2>
UFOBAT/Bailador
…/Bailador.pm :109:
sub template(Str $tmpl, *@params, *%params) is export {
UFOBAT/Bailador
…/Bailador.pm :110:
app.template($tmpl, @params, |%params);
UFOBAT/Bailador
…/App.pm :50:
method !templatefile-extentions(Str:D $file) {
UFOBAT/Bailador
…/App.pm :51:
for ('', '.tt', '.mustache', '.html', '.template') -> $ext {
UFOBAT/Bailador
…/App.pm :55:
Log::Any.error("template file not found: $file");
UFOBAT/Bailador
…/App.pm :59:
method template(Str $tmpl, Str :$layout, *@params, *%params) {
UFOBAT/Bailador
…/App.pm :61:
my $content-template = self!templatefile-extentions($.location.IO.child(self.config.views).child($tmpl).Str);
UFOBAT/Bailador
…/App.pm :62:
$content = $!renderer.render($content-template, |@params, |%params) if $content-template;
UFOBAT/Bailador
…/App.pm :66:
my $layout-template = self!templatefile-extentions($.location.IO.child('layout').child($use-this-layout).Str);
UFOBAT/Bailador
…/App.pm :67:
if $layout-template {
UFOBAT/Bailador
…/App.pm :69:
$content = $!renderer.render($layout-template, $content);;
UFOBAT/Bailador
…/App.pm :368:
self.render(:status(404), :type<text/html;charset=UTF-8>, content => self.template("404.xx", []));
UFOBAT/Bailador
…/App.pm :382:
state $error-template = Template::Mojo.new(%?RESOURCES<error.template>.IO.slurp);
UFOBAT/Bailador
…/App.pm :383:
$err-page = $error-template.render($_, self.request());
UFOBAT/Bailador
…/App.pm :388:
self.render(:status(500), :type<text/html;charset=UTF-8>, content => self.template("500.xx", []));
UFOBAT/Bailador
…/CLI.pm :71:
say "Attempting to boot up the app";
UFOBAT/Bailador
…/Configuration.pm :58:
# Available template-format: 'common', 'combined' and 'simple' wich are defaults in Apache ;
UFOBAT/Bailador
…/Configuration.pm :63:
# 'file:logs/access.log' => { 'template-filter' => 'http-requests', 'template-format' => 'combined' },
UFOBAT/Bailador
…/Configuration.pm :65:
# 'file:logs/error.log' => { 'category' => 'request-error', 'severity' => 'error', 'template-format' => 'simple' },
UFOBAT/Bailador
…/Gradual.pm :82:
return template($file)
UFOBAT/Bailador
…/Log.pm :75:
with $log-config{'template-filter'} {
UFOBAT/Bailador
…/Log.pm :79:
when 'templates' {
UFOBAT/Bailador
…/Log.pm :80:
@filters.push( 'category' => 'templates' );
UFOBAT/Bailador
…/Log.pm :100:
template-format => $log-config<template-format> // Nil,
UFOBAT/Bailador
…/Formatter.pm :10:
has $.template-format = Nil;
UFOBAT/Bailador
…/Formatter.pm :18:
if $!template-format && $!format {
UFOBAT/Bailador
…/Formatter.pm :19:
die 'Only one of "template-format" or "format" should be specified.'
UFOBAT/Bailador
…/Formatter.pm :22:
with $!template-format {
UFOBAT/Bailador
…/Formatter.pm :41:
die "Unknown value for 'template-format' ($!template-format)"
UFOBAT/Bailador
…/Formatter.pm :78:
with $!template-format {
UFOBAT/Bailador
…/Template.pm :4:
method render(Str $template-name, @params) { ... }
UFOBAT/Bailador
…/Mojo.pm :8:
has %.template-cache;
UFOBAT/Bailador
…/Mojo.pm :11:
method render(Str $template-name, *@params) {
UFOBAT/Bailador
…/Mojo.pm :12:
my $engine = self!get-engine($template-name);
UFOBAT/Bailador
…/Mojo.pm :16:
method render-string(Str $template-content, *@params) {
UFOBAT/Bailador
…/Mojo.pm :17:
my $engine = Template::Mojo.new($template-content);
UFOBAT/Bailador
…/Mojo.pm :21:
method !get-engine(Str $template-name) {
UFOBAT/Bailador
…/Mojo.pm :22:
unless %.template-cache{$template-name}:exists {
UFOBAT/Bailador
…/Mojo.pm :23:
%.template-cache{$template-name} = Template::Mojo.new($template-name.IO.slurp);
UFOBAT/Bailador
…/Mojo.pm :25:
return %.template-cache{$template-name};
UFOBAT/Bailador
…/Mustache.pm :10:
method render(Str $template-name, *@params) {
UFOBAT/Bailador
…/Mustache.pm :11:
$!engine.render($template-name.IO.slurp, |@params);
UFOBAT/Bailador
…/app.pl6 :7:
template 'index.html', { version => $version }
UFOBAT/Bailador
…/04-OO-templates-mustache.t :16:
self.add_route: make-route('GET', '/' => sub { self.template: 'simple.mustache', { 'foo' => 'bar' } });
UFOBAT/Bailador
…/04-OO-templates.t :14:
self.add_route: make-route('GET', '/' => sub { self.template: 'simple.tt', 'bar' });
UFOBAT/Bailador
…/04-templates-mustache.t :11:
get '/a' => sub { template 'simple.mustache', { 'foo' => 'bar' } }
UFOBAT/Bailador
…/04-templates-mustache.t :12:
get '/b' => sub { template 'simple.mustache', { 'foo' => 'bar' } }
UFOBAT/Bailador
…/04-templates.t :9:
get '/' => sub { template 'index.tt'; }
UFOBAT/Bailador
…/04-templates.t :10:
get '/a' => sub { template 'simple.tt', 'bar' }
UFOBAT/Bailador
…/04-templates.t :11:
get '/c' => sub { template 'with-include.tt', 'bar' }
UFOBAT/Bailador
…/11-error-templates.t :10:
my $not-found-template will leave { .unlink } = $?FILE.IO.parent.child('views').child('404.xx');
UFOBAT/Bailador
…/11-error-templates.t :11:
my $error-template will leave { .unlink } = $?FILE.IO.parent.child('views').child('500.xx');
UFOBAT/Bailador
…/11-error-templates.t :20:
ok not $not-found-template.e , 'there is no 404 template';
UFOBAT/Bailador
…/11-error-templates.t :26:
is-deeply %resp<response>, [404, ["Content-Type" => "text/plain;charset=UTF-8"], 'Not found' ], '404 - without error template';
UFOBAT/Bailador
…/11-error-templates.t :30:
$not-found-template.spurt: '<h1>nada</h1>';
UFOBAT/Bailador
…/11-error-templates.t :31:
ok $not-found-template.e , 'there is a 404 template';
UFOBAT/Bailador
…/11-error-templates.t :42:
is-deeply %resp<response>, [404, ["Content-Type" => "text/html;charset=UTF-8"], '<h1>nada</h1>' ], '404 - with error template';
UFOBAT/Bailador
…/11-error-templates.t :49:
ok not $error-template.e, 'there is no 500 template';
UFOBAT/Bailador
…/11-error-templates.t :56:
is-deeply %resp<response>, [500, ["Content-Type" => "text/plain;charset=UTF-8"], 'Internal Server Error' ], '500 - without error template';
UFOBAT/Bailador
…/11-error-templates.t :60:
$error-template.spurt: 'muerte';
UFOBAT/Bailador
…/11-error-templates.t :61:
ok $error-template.e, 'there is a 500 template';
UFOBAT/Bailador
…/11-error-templates.t :72:
is-deeply %resp<response>, [500, ["Content-Type" => "text/html;charset=UTF-8"], 'muerte' ], '500 - with error template';
UFOBAT/Bailador
…/13-configuration.t :83:
temp %*ENV<BAILADOR> = 'port:9090';
UFOBAT/Bailador
…/13-configuration.t :103:
temp %*ENV<BAILADOR_CONFIGDIR> = 'config';
UFOBAT/Bailador
…/13-configuration.t :118:
temp %*ENV<BAILADOR_CONFIGDIR> = $*PROGRAM.parent.child("config").absolute;
UFOBAT/Bailador
…/13-configuration.t :133:
temp %*ENV<BAILADOR_CONFIGFILE> = 'config/config.yaml';
UFOBAT/Bailador
…/13-configuration.t :148:
temp %*ENV<BAILADOR_CONFIGFILE> = $*PROGRAM.parent.child("config").child('config.yaml').absolute;
UFOBAT/Bailador
…/13-configuration.t :163:
temp %*ENV<BAILADOR_CONFIGFILE> = 'config/config.yaml';
UFOBAT/Bailador
…/19-logging.t :48:
my $f = Bailador::Log::Formatter.new( :template-format<common> );
UFOBAT/Bailador
…/19-logging.t :60:
$f = Bailador::Log::Formatter.new( :template-format<combined> );
UFOBAT/Bailador
…/19-logging.t :71:
$f = Bailador::Log::Formatter.new( :template-format<simple> );
UFOBAT/Bailador
…/19-logging.t :85:
dies-ok { Bailador::Log::Formatter.new( :template-format<mpm> ) }, 'Template-format "mpm" not yet implemented.';
UFOBAT/Bailador
…/19-logging.t :86:
dies-ok { Bailador::Log::Formatter.new( :template-format<plop> ) }, 'Template-format "plop" unknown.';
UFOBAT/Bailador
…/19-logging.t :139:
# Todo: generate a random and temporary file (/tmp/bailador-nrsite/log.log)
UFOBAT/Bailador
…/19-logging.t :232:
# Test template-filter
UFOBAT/Bailador
…/19-logging.t :233:
# "template-filter" basically sets a set of filtters
UFOBAT/Bailador
…/19-logging.t :235:
# Test template-format
UFOBAT/Bailador
…/30-examples-app.t :148:
# my %data = run-psgi-request($app, 'GET', '/template/Camelia');
UFOBAT/Bailador
…/30-examples-app.t :149:
# is-deeply %data<response>, [200, ["Content-Type" => "text/html"], ''], 'route GET /template/Camelia';
UFOBAT/Bailador
…/30-examples-app.t :151:
#}, '/template/Camelia';
UFOBAT/Bailador
…/30-examples-gradual.t :26:
like $html, rx:s/\<h1\>Main page \- from template\.\<\/h1\>/;
UFOBAT/Bailador
…/30-examples-gradual.t :45:
is-deeply %data<response>, [200, ["Content-Type" => "text/html"], "Bar from template\n"], 'route GET /bar';
UFOBAT/Bailador
…/30-examples-pastebin.t :10:
# the templating system needs relative path
UFOBAT/Bailador
…/30-examples-templates.t :14:
chdir 'examples/templates';
UFOBAT/Bailador
…/30-examples-templates.t :27:
ok $html.index('<h2>Welcome to Bailador templates example!</h2>') == 0, 'main page';
UFOBAT/Bailador
…/with-include.tt :3:
<%= template('simple.tt', @_) %>
UFOBAT/Bailador
…/20-cli.t :12:
my $dir = tempdir();
UFOBAT/Bailador
…/20-cli.t :117:
# temp %*ENV<PERL6LIB> = join(':', "$git_dir/lib", |get-path-from-repo());
UFOBAT/I18N-LangTags
…/List.pm6 :139:
and returns the best attempt at an English name for it, or
UFOBAT/Temp-Path
…/META6.json :11:
"description" : "Make a temporary path, file, or directory",
UFOBAT/Temp-Path
…/README.md :6:
Temp::Path - Make a temporary path, file, or directory
UFOBAT/Temp-Path
…/README.md :13:
with make-temp-path {
UFOBAT/Temp-Path
…/README.md :19:
with make-temp-path :content<meows> :chmod<423> :suffix<.txt> {
UFOBAT/Temp-Path
…/README.md :25:
with make-temp-dir {
UFOBAT/Temp-Path
…/README.md :31:
temp $*TMPDIR = make-temp-dir :chmod<0o700>;
UFOBAT/Temp-Path
…/README.md :36:
say make-temp-path;
UFOBAT/Temp-Path
…/README.md :49:
make-temp-path(:content<foo> :chmod<423>) # WRONG
UFOBAT/Temp-Path
…/README.md :50:
(make-temp-path :content<foo> :chmod<423>) # RIGHT
UFOBAT/Temp-Path
…/README.md :52:
`make-temp-path`
UFOBAT/Temp-Path
…/README.md :57:
sub term:<make-temp-path> (
UFOBAT/Temp-Path
…/README.md :73:
`make-temp-dir`
UFOBAT/Temp-Path
…/README.md :78:
sub term:<make-temp-dir> (Int :$chmod, Str() :$prefix = '', Str() :$suffix = '' --> IO::Path:D)
UFOBAT/Temp-Path
…/README.md :84:
Note that currently `.mkdir` pays attention to umask and `make-temp-dir` will first the `:$chmod` to…
UFOBAT/Temp-Path
…/README.md :89:
The deletion of files created by this module will happen either when the returned `IO::Path` objects are garbage collected or when the `END` phaser gets run. Note that this means temporary files/directories may be left behind if your program crashes or gets aborted.
UFOBAT/Temp-Path
…/README.md :91:
The temporary `IO::Path` objects created by `make-temp-path` and `make-temp-dir` terms have a role `Temp::Path::AutoDel…
UFOBAT/Temp-Path
…/README.md :93:
Note that deletion will happen only if the path was created by this module. For example doing `make-temp-dir.sibling: 'foo'` will still giv…
UFOBAT/Temp-Path
…/path.p6 :4:
with make-temp-path {
UFOBAT/Temp-Path
…/path.p6 :10:
with make-temp-path :content<meows> :chmod<423> {
UFOBAT/Temp-Path
…/path.p6 :15:
with make-temp-dir {
UFOBAT/Temp-Path
…/path.p6 :21:
temp $*TMPDIR = make-temp-dir :chmod<700>;
UFOBAT/Temp-Path
…/path.p6 :25:
say make-temp-path;
UFOBAT/Temp-Path
…/Path.pm6 :48:
sub term:<make-temp-path> (
UFOBAT/Temp-Path
…/Path.pm6 :61:
sub term:<make-temp-dir> (
UFOBAT/Temp-Path
…/Path.pm6 :76:
Temp::Path - Make a temporary path, file, or directory
UFOBAT/Temp-Path
…/Path.pm6 :83:
with make-temp-path {
UFOBAT/Temp-Path
…/Path.pm6 :89:
with make-temp-path :content<meows> :chmod<423> :suffix<.txt> {
UFOBAT/Temp-Path
…/Path.pm6 :95:
with make-temp-dir {
UFOBAT/Temp-Path
…/Path.pm6 :101:
temp $*TMPDIR = make-temp-dir :chmod<0o700>;
UFOBAT/Temp-Path
…/Path.pm6 :106:
say make-temp-path;
UFOBAT/Temp-Path
…/Path.pm6 :122:
make-temp-path(:content<foo> :chmod<423>) # WRONG
UFOBAT/Temp-Path
…/Path.pm6 :123:
(make-temp-path :content<foo> :chmod<423>) # RIGHT
UFOBAT/Temp-Path
…/Path.pm6 :125:
=head2 C<make-temp-path>
UFOBAT/Temp-Path
…/Path.pm6 :129:
sub term:<make-temp-path> (
UFOBAT/Temp-Path
…/Path.pm6 :163:
=head2 C<make-temp-dir>
UFOBAT/Temp-Path
…/Path.pm6 :167:
sub term:<make-temp-dir> (Int :$chmod, Str() :$prefix = '', Str() :$suffix = '' --> IO::Path:D)
UFOBAT/Temp-Path
…/Path.pm6 :180:
L<umask|https://en.wikipedia.org/wiki/Umask\> and C<make-temp-dir> will first
UFOBAT/Temp-Path
…/Path.pm6 :189:
gets run. Note that this means temporary files/directories may be left behind
UFOBAT/Temp-Path
…/Path.pm6 :192:
The temporary C<IO::Path> objects created by C<make-temp-path> and C<make-temp-dir>
UFOBAT/Temp-Path
…/Path.pm6 :199:
path was created by this module. For example doing C<make-temp-dir.sibling: 'foo'> will
UFOBAT/Temp-Path
…/01-make-temp-path.t :6:
is make-temp-path, IO::Path;
UFOBAT/Temp-Path
…/01-make-temp-path.t :7:
is make-temp-path :chmod<0o666>, IO::Path;
UFOBAT/Temp-Path
…/01-make-temp-path.t :8:
is make-temp-path :chmod<0o666> :content<foos>, IO::Path;
UFOBAT/Temp-Path
…/01-make-temp-path.t :10:
with make-temp-path { is $_, IO::Path, 'no gobbling of blocks' }
UFOBAT/Temp-Path
…/01-make-temp-path.t :14:
with make-temp-path :content<bars> {
UFOBAT/Temp-Path
…/01-make-temp-path.t :22:
is ($file and $file.IO.e), *.not, "temp file got deleted ($file)";
UFOBAT/Temp-Path
…/01-make-temp-path.t :26:
is make-temp-path :content($_) .slurp,
UFOBAT/Temp-Path
…/01-make-temp-path.t :30:
is make-temp-path :content($_) :chmod<0o666> .slurp,
UFOBAT/Temp-Path
…/01-make-temp-path.t :34:
is make-temp-path :chmod<0o666> .slurp, '',
UFOBAT/Temp-Path
…/01-make-temp-path.t :38:
is make-temp-path :chmod($m) .mode, $m, ":chmod(0o{$m.fmt("%o")}) works";
UFOBAT/Temp-Path
…/01-make-temp-path.t :39:
with make-temp-path :content("foos$m") :chmod($m) {
UFOBAT/Temp-Path
…/02-make-temp-dir.t :6:
is make-temp-dir, IO::Path;
UFOBAT/Temp-Path
…/02-make-temp-dir.t :7:
is make-temp-dir :chmod<0o666>, IO::Path;
UFOBAT/Temp-Path
…/02-make-temp-dir.t :9:
with make-temp-dir { is $_, IO::Path, 'no gobbling of blocks' }
UFOBAT/Temp-Path
…/02-make-temp-dir.t :13:
with make-temp-dir { .e or die; print .absolute }
UFOBAT/Temp-Path
…/02-make-temp-dir.t :18:
is ($dir and $dir.IO.e), *.not, "temp dir got deleted ($dir)";
UFOBAT/Temp-Path
…/02-make-temp-dir.t :23:
is make-temp-dir :chmod($m) .mode, $m, ":chmod(0o{$m.fmt("%o")}) works";
UFOBAT/Temp-Path
…/03-DESTROY.t :7:
my $file = make-temp-path :content<foo>;
UFOBAT/Temp-Path
…/03-DESTROY.t :15:
temp $*TMPDIR = make-temp-dir;
UFOBAT/Temp-Path
…/03-DESTROY.t :16:
my $file = make-temp-path;
UFOBAT/Temp-Path
…/03-DESTROY.t :25:
my $dir = make-temp-dir;
UFOBAT/Temp-Path
…/03-DESTROY.t :33:
temp $*TMPDIR = make-temp-dir;
UFOBAT/Temp-Path
…/03-DESTROY.t :34:
my $dir = make-temp-dir;
UFOBAT/Temp-Path
…/04-to-IO-Path.t :6:
is make-temp-path.WHAT === IO::Path, *.not, 'made path is not === IO::Path';
UFOBAT/Temp-Path
…/04-to-IO-Path.t :7:
is make-temp-dir.WHAT === IO::Path, *.not, 'made dir is not === IO::Path';
UFOBAT/Temp-Path
…/04-to-IO-Path.t :8:
is make-temp-path.to-IO-Path.WHAT === IO::Path,
UFOBAT/Temp-Path
…/04-to-IO-Path.t :10:
is make-temp-dir.to-IO-Path.WHAT === IO::Path,
UGEXE/Acme-Polyglot-Levenshtein-Damerau
…/Damerau.pm :60:
my @tempRow = @transpositionRow;
UGEXE/Acme-Polyglot-Levenshtein-Damerau
…/Damerau.pm :63:
@currentRow = @tempRow;
UGEXE/zef
…/README.pod :151:
Upgrade specified identities. If no identities are provided, zef attempts to upgrade all installed distributions.
UGEXE/zef
…/README.pod :370:
This config is loaded, but it is not yet the chosen config! We check that temporary config's C<%configE<lt>RootDirE<gt>> for valid json in …
UGEXE/zef
…/README.pod :446:
You can enable it by setting I<"enabled" : 1> in the config under the Repository::Ecosystems plugin, or temporarily
UGEXE/zef
…/MetaCPAN.pm6 :47:
temp %fields<distribution> = $spec.name.subst('::', '-', :g)
UGEXE/zef
…/MetaCPAN.pm6 :49:
temp %fields<version> = $spec.version-matcher.subst(/^v?/, '?')
UGEXE/zef
…/MetaCPAN.pm6 :54:
temp %fields<status> = 'latest'
UGEXE/zef
…/MetaCPAN.pm6 :61:
# temp %fields<author> = $wants-spec.auth-matcher.match(/^.*? ':' (.*)$/)[0].Str
UGEXE/zef
…/MetaCPAN.pm6 :84:
# temporary. Some download_urls are absolute, and others are not
UGEXE/zef
…/Build.pm6 :61:
$stderr.emit("`build-depends` is missing entries. Attemping to workaround via source mangling...") if $DEBUG;
UGEXE/zef
…/TAP.pm6 :28:
temp $*OUT = $stdout;
UGEXE/zef
…/TAP.pm6 :37:
temp $*ERR = $stderr;
UGEXE/zef
…/utils-filesystem.t :12:
temp $save-to = $save-to.child(++$dir-id);
UGEXE/zef
…/utils-filesystem.t :15:
# 1. Folder: /{temp folder}
UGEXE/zef
…/utils-filesystem.t :16:
# 2. File: /{temp folder}/base-delete.me
UGEXE/zef
…/utils-filesystem.t :17:
# 3. Folder: /{temp folder}/deleteme-subfolder
UGEXE/zef
…/utils-filesystem.t :18:
# 4. File: /{temp folder}/deleteme-subfolder/base-delete.me
UGEXE/zef
…/utils-filesystem.t :48:
temp $save-to = $save-to.child(++$dir-id);
UGEXE/zef
…/utils-filesystem.t :52:
# 1. Folder: /{temp folder}
UGEXE/zef
…/utils-filesystem.t :53:
# 2. File: /{temp folder}/base-delete.me
UGEXE/zef
…/utils-filesystem.t :54:
# 3. Folder: /{temp folder}/deleteme-subfolder
UGEXE/zef
…/utils-filesystem.t :55:
# 4. File: /{temp folder}/deleteme-subfolder/base-delete.me
UGEXE/zef
…/utils-filesystem.t :86:
temp $save-to = $save-to.child(++$dir-id);
UGEXE/zef
…/utils-filesystem.t :90:
# 1. Folder: /{temp folder}
UGEXE/zef
…/utils-filesystem.t :91:
# 2. File: /{temp folder}/base-delete.me
UGEXE/zef
…/utils-filesystem.t :92:
# 3. Folder: /{temp folder}/deleteme-subfolder
UGEXE/zef
…/utils-filesystem.t :93:
# 4. File: /{temp folder}/deleteme-subfolder/base-delete.me
UGEXE/zef
…/utils-filesystem.t :94:
# 5. Folder /{temp folder}/empty-subfolder
UGEXE/zef
…/utils-filesystem.t :126:
temp $save-to = $save-to.child(++$dir-id);
UGEXE/zef
…/utils-filesystem.t :130:
# 1. Folder: /{temp folder}
UGEXE/zef
…/utils-filesystem.t :131:
# 2. File: /{temp folder}/base-delete.me
UGEXE/zef
…/utils-filesystem.t :132:
# 3. Folder: /{temp folder}/deleteme-subfolder
UGEXE/zef
…/utils-filesystem.t :133:
# 4. File: /{temp folder}/deleteme-subfolder/base-delete.me
UGEXE/zef
…/utils-filesystem.t :134:
# 5. Folder /{temp folder}/empty-subfolder
UGEXE/zef
…/install.t :36:
temp $*OUT = class :: { method print(|) {}; method flush(|) {}; };
UGEXE/zef
…/install.t :78:
temp $client.force = True;
VRURG/AttrX-Mooish
…/README.md :359:
Internally `Proxy` is used as attribute container. It was told that the class has a number of unpleasant side effects including multiplication of FETCH operation. Though generally this bug is harmles it could be workarounded by assigning an attribute value to a temporary variable.
VRURG/AttrX-Mooish
…/Mooish.pm6 :442:
an attribute value to a temporary variable.
VRURG/IP-Addr
…/v6.pm6 :188:
:temp $*MAX-HEXTETS = 6;
VRURG/OO-Plugin
…/Manual.pod6 :297:
The I<before> stage handlers are not allowed to set the return value. If they attempt to then a warning would be issued
VRURG/OO-Plugin
…/Manual.pod6 :624:
the former case it will raise an error for any attempt to override an unpluggable class or attach a handler to an
VRURG/OO-Plugin
…/Manager.html :100:
<p>A faster variant of the method because it doesn&#39;t attempt to normalize the name and performs fast lookup by FQN.</p>
VRURG/OO-Plugin
…/Manual.html :226:
<p>The <em>before</em> stage handlers are not allowed to set the return value. If they attempt to then a warning would be issued by the manager.</p>
VRURG/OO-Plugin
…/Manual.html :420:
<p>The outcome of applying the trait differs depending on wether the plugin manager is in <em>strict</em> or <em>loose</em> mode. In the former case …
VRURG/OO-Plugin
…/Registry.html :93:
<p>These variants return registered plugin meta. Note that the first one attempts to convert short name to FQN whlie two other don&#39;t and thus they&#39;re a little bit faster.</p>
VRURG/OO-Plugin
…/Manager.md :100:
A faster variant of the method because it doesn't attempt to normalize the name and performs fast lookup by FQN.
VRURG/OO-Plugin
…/Manual.md :241:
The *before* stage handlers are not allowed to set the return value. If they attempt to then a warning would be issued by the manager.
VRURG/OO-Plugin
…/Manual.md :508:
The outcome of applying the trait differs depending on wether the plugin manager is in *strict* or *loose* mode. In the former case it will raise an …
VRURG/OO-Plugin
…/Registry.md :68:
These variants return registered plugin meta. Note that the first one attempts to convert short name to FQN whlie two other don't and thus they're a little bit faster.
VRURG/OO-Plugin
…/Manager.pm6 :196:
A faster variant of the method because it doesn't attempt to normalize the name and performs fast lookup by FQN.
VRURG/OO-Plugin
…/Registry.pm6 :132:
These variants return registered plugin meta. Note that the first one attempts to convert short name to FQN whlie two
WARRINGD/Font-FreeType
…/FreeType.pm :11:
has Bool $!cleanup = False; # temporarily disabled
WARRINGD/HTML-Canvas-To-PDF
…/PDF.pm6 :44:
# a very simple fallback. Doesn't attempt to find the most appropriate font.
WARRINGD/HTML-Canvas
…/Canvas.pm :496:
temp $renderer.canvas = $canvas;
WARRINGD/PDF-Class
…/pdf-burst.p6 :13:
#| generated sprintf format from input/output filename template
WARRINGD/PDF-Class
…/pdf-burst.p6 :25:
Str :$save-as is copy, #| output template filename
WARRINGD/PDF-Class
…/pdf-burst.p6 :68:
temp $p.Kids = @pages;
WARRINGD/PDF-Class
…/pdf-burst.p6 :69:
temp $p.Count = +@pages;
WARRINGD/PDF-Class
…/pdf-burst.p6 :98:
The save-as argument, if present, will be used as a 'sprintf' template for generation of the individual output files.
WARRINGD/PDF-Class
…/pdf-info.p6 :90:
## temp $pdf.reader.crypt.is-owner = False
WARRINGD/PDF-Class
…/Catalog.pm :117:
has PDF::NameTree $.Templates is entry; # (Optional; PDF 1.3) A name tree mapping name strings to invisible (template) pages for use in interactive forms.
WARRINGD/PDF-Class
…/helloworld.t :30:
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt
WARRINGD/PDF-Font-Loader
…/pdf-text-align.t :23:
do eiusmod tempor incididunt ut labore et dolore magna aliqua.
WARRINGD/PDF-ISO_32000
…/META6.json :79:
"ISO_32000::FDF_template": "gen/lib/ISO_32000/FDF_template.pm6",
WARRINGD/PDF-ISO_32000
…/META6.json :379:
"ISO_32000/FDF_template_entries.json",
WARRINGD/PDF-ISO_32000
…/README.md :152:
Table 249 – Entries in an FDF template dictionary|FDF_template|/TRef /Fields /Rename
WARRINGD/PDF-ISO_32000
…/README.md :575:
/Fields|FDF_dictionary FDF_template [FieldMDP_trans…
WARRINGD/PDF-ISO_32000
…/README.md :837:
/Rename|FDF_template
WARRINGD/PDF-ISO_32000
…/README.md :924:
/TRef|FDF_template
WARRINGD/PDF-ISO_32000
…/Catalog_Name_tree.pm6 :35:
- (Optional; PDF 1.3) A name tree mapping name strings to invisible (template) pages for use in interactive forms (see 12.7.6, "Named Pages").
WARRINGD/PDF-ISO_32000
…/DocMDP_transform.pm6 :21:
2 Permitted changes is filling in forms, instantiating page templates, and signing; other changes shall invalidate the signature.
WARRINGD/PDF-ISO_32000
…/FDF_page.pm6 :15:
- (Required) An array of FDF template dictionaries (see Table 249) that shall describe the named pages that serve as templates on the page.
WARRINGD/PDF-ISO_32000
…/FDF_template.pm6 :2:
# generated by: ../../etc/make-modules.p6 --role-name=ISO_32000::FDF_template ../../resources/ISO_32000/FDF_template_entries.json
WARRINGD/PDF-ISO_32000
…/FDF_template.pm6 :4:
#| PDF 32000-1:2008 Table 249 – Entries in an FDF template dictionary
WARRINGD/PDF-ISO_32000
…/FDF_template.pm6 :5:
role ISO_32000::FDF_template {
WARRINGD/PDF-ISO_32000
…/FDF_template.pm6 :16:
- (Required) A named page reference dictionary (see Table 250) that shall specify the location of the template.
WARRINGD/PDF-ISO_32000
…/FDF_template.pm6 :22:
- (Optional) A flag that shall specify whether fields imported from the template is renamed in the event of name conflicts with existing fields; see the Note in this sub-clause for further discussion. Default value: true.
WARRINGD/PDF-ISO_32000
…/Media_offset_time.pm6 :14:
- (Required) A timespan dictionary (see Table 289) that shall specify a temporal offset into a media object. Negative timespans are not allowed in this context. The media offset time dictionary is non-viable if its timespan dictionary is non-viable.
WARRINGD/PDF-ISO_32000
…/Media_permissions.pm6 :18:
- (Optional) An ASCII string indicating the circumstances under which it is acceptable to write a temporary file in order to play a media clip. Valid values are:
WARRINGD/PDF-ISO_32000
…/Rectilinear_measure_additional.pm6 :51:
- (Optional; meaningful only when Y is present) A factor that is used to convert the largest units along the y axis to the largest units along the x …
WARRINGD/PDF-ISO_32000
…/Shading_common.pm6 :38:
- (Optional) An array of four numbers giving the left, bottom, right, and top coordinates, respectively, of the shading’s bounding box. The coordinat…
WARRINGD/PDF-ISO_32000
…/Type_2_Pattern.pm6 :36:
- (Optional) A graphics state parameter dictionary (see 8.4.5, "Graphics State Parameter Dictionaries") containing graphics state parameters to be pu…
WARRINGD/PDF-ISO_32000
…/UR_transform.pm6 :51:
SpawnTemplate Permits new pages to be instantiated from named page templates.
WARRINGD/PDF-ISO_32000
…/Catalog_Name_tree_entries.html :140:
1.3) A name tree mapping name strings to invisible (template) pages for use in interactive forms (see
WARRINGD/PDF-ISO_32000
…/DocMDP_transform_entries.html :67:
2 Permitted changes shall be filling in forms, instantiating page templates, and signing; other changes shall invalidate the signature.
WARRINGD/PDF-ISO_32000
…/FDF_page_entries.html :44:
(Required) An array of FDF template dictionaries (see
WARRINGD/PDF-ISO_32000
…/FDF_page_entries.html :50:
shall describe the named pages that serve as templates on the page.
WARRINGD/PDF-ISO_32000
…/FDF_template_entries.html :7:
– Entries in an FDF template dictionary
WARRINGD/PDF-ISO_32000
…/FDF_template_entries.html :50:
specify the location of the template.
WARRINGD/PDF-ISO_32000
…/FDF_template_entries.html :90:
(Optional) A flag that shall specify whether fields imported from the template shall be renamed in the event of name conflicts with existing fields; see the Note in this sub-clause for further discussion. Default value: true.
WARRINGD/PDF-ISO_32000
…/Makefile :28:
Icon_fit_entries.html FDF_page_entries.html FDF_template_entries.html FDF_named_page_reference_entries.html FDF_annotation_additional_entri…
WARRINGD/PDF-ISO_32000
…/Makefile :1030:
FDF_template_entries.html :
WARRINGD/PDF-ISO_32000
…/Media_offset_time_entries.html :50:
temporal offset into a media object. Negative timespans are not allowed in this context. The media offset time dictionary is non-viable if its timespan dictionary is non-viable.
WARRINGD/PDF-ISO_32000
…/Media_permissions_entries.html :61:
(Optional) An ASCII string indicating the circumstances under which it is acceptable to write a temporary file in order to play a media clip. Valid values are:
WARRINGD/PDF-ISO_32000
…/Rectilinear_measure_additional_entries.html :205:
(Optional; meaningful only when Y is present) A factor that shall be used to convert the largest units along the y axis to the largest un…
WARRINGD/PDF-ISO_32000
…/Shading_common_entries.html :140:
(Optional) An array of four numbers giving the left, bottom, right, and top coordinates, respectively, of the shading’s bounding box. The…
WARRINGD/PDF-ISO_32000
…/Type_2_Pattern_entries.html :144:
be put into effect temporarily while the shading pattern is painted. Any parameters that are so specified shall be inherited from the graphics state that was in effect at the beginning of the content stream in which the pattern is defined as a resource.
WARRINGD/PDF-ISO_32000
…/UR_transform_entries.html :176:
SpawnTemplate Permits new pages to be instantiated from named page templates.
WARRINGD/PDF-ISO_32000
…/ISO_32000-index.json :257:
"FDF_template_entries",
WARRINGD/PDF-ISO_32000
…/Catalog_Name_tree_entries.json :33:
"(Optional; PDF 1.3) A name tree mapping name strings to invisible (template) pages for use in interactive forms (see 12.7.6, \"Named Pages\")."
WARRINGD/PDF-ISO_32000
…/DocMDP_transform_entries.json :18:
"(Optional) The access permissions granted for this document. Valid values is:\n1 No changes to the document is permitted; any change to the …
WARRINGD/PDF-ISO_32000
…/FDF_page_entries.json :13:
"(Required) An array of FDF template dictionaries (see Table 249) that shall describe the named pages that serve as templates on the page."
WARRINGD/PDF-ISO_32000
…/FDF_template_entries.json :3:
"caption": "Table 249 – Entries in an FDF template dictionary",
WARRINGD/PDF-ISO_32000
…/FDF_template_entries.json :13:
"(Required) A named page reference dictionary (see Table 250) that shall specify the location of the template."
WARRINGD/PDF-ISO_32000
…/FDF_template_entries.json :23:
"(Optional) A flag that shall specify whether fields imported from the template is renamed in the event of name conflicts with existing fields; see the Note in this sub-clause for further discussion. Default value: true."
WARRINGD/PDF-ISO_32000
…/Media_offset_time_entries.json :13:
"(Required) A timespan dictionary (see Table 289) that shall specify a temporal offset into a media object. Negative timespans are not allowed in this context. The media offset time dictionary is non-viable if its timespan dictionary is non-viable."
WARRINGD/PDF-ISO_32000
…/Media_permissions_entries.json :18:
"(Optional) An ASCII string indicating the circumstances under which it is acceptable to write a temporary file in order to play a …
WARRINGD/PDF-ISO_32000
…/Rectilinear_measure_additional_entries.json :53:
"(Optional; meaningful only when Y is present) A factor that is used to convert the largest units along the y axis to the largest units along…
WARRINGD/PDF-ISO_32000
…/Shading_common_entries.json :28:
"(Optional) An array of four numbers giving the left, bottom, right, and top coordinates, respectively, of the shading’s bounding box. The co…
WARRINGD/PDF-ISO_32000
…/Type_2_Pattern_entries.json :33:
"(Optional) A graphics state parameter dictionary (see 8.4.5, \"Graphics State Parameter Dictionaries\") containing graphics state parameters…
WARRINGD/PDF-ISO_32000
…/UR_transform_entries.json :38:
"(Optional) An array of names specifying additional form-field-related usage rights for the document. Valid names (PDF 1.5) are:\nAddPermits …
YNOTO/DB-Xoos
…/README.md :110:
# if the arg is omitted then it attempts to auto load ::Row::Customer
YNOTO/DB-Xoos
…/README.md :47:
describes a row of the table. anything in your `Row/` can contain methods to act upon one data, ie 'Row::Invoice` might contain a method `mark-paid`…
YNOTO/DB-Xoos
…/README.md :57:
This method is templated in `DB::Xoos` and implemented in the respective `DB::Xoos::<Driver>`, see those files for more in depth in what is happening in the one you're interested in.
YNOTO/DB-Xoos
…/README.md :59:
When connect is called, models and rows loading is attempted with any problems `warn`ed to stdout.
YNOTO/DB-Xoos
…/README.md :65:
This is the prefix to use when attempting to load Models. ie `:prefix<X>` attempts to load models and rows from `X/Model|Row/\*`
YNOTO/DB-Xoos
…/README.md :81:
Xoos ships with `MySQL|Oracle|Pg|SQLite` and they all use `DBIish`, if you need to use `DB::Pg` then please consider contributing either to the ecosystem or this repo and use `DB::Xoos::Pg\(::\*\)` as a template
YNOTO/DB-Xoos
…/README.md :88:
models should inherit from `DB::Xoos::Model[Str:D $table-name, Str:D $row-class?]` where `$table-name` is mandatory and `$row-class` will attempt to auto load the `Row` class based on the model's name
YNOTO/DB-Xoos
…/Xoos.pm6 :69:
warn 'Cannot find YAML::Parser::LibYAML when attempting to load yaml models'
7ojo/perl6-powerline-prompt
…/Path.pm :26:
my @temp;
7ojo/perl6-powerline-prompt
…/Path.pm :27:
@temp.append: @names.splice(0, 2);
7ojo/perl6-powerline-prompt
…/Path.pm :28:
@temp.append: '…';
7ojo/perl6-powerline-prompt
…/Path.pm :29:
@temp.append: @names.splice(@names.elems - ($max_depth-2));
7ojo/perl6-powerline-prompt
…/Path.pm :30:
@names = @temp;
7ojo/perl6-powerline-prompt
…/10-segments.t :52:
my Str $temp = $seg.draw(Powerline::Prompt::Segment::Readonly.new(cwd => '/usr/local'));
7ojo/perl6-powerline-prompt
…/10-segments.t :53:
is $temp.substr(33, 20), 'usr \[\e[38;5;244m\]', 'foreground color'
AlexDaniel/foo-dependencies-a-on-b
…/LICENSE :410:
provided under this License. Any attempt otherwise to propagate or
AlexDaniel/foo-dependencies-b-on-a
…/LICENSE :410:
provided under this License. Any attempt otherwise to propagate or
AlexDaniel/foo-dependencies-self
…/LICENSE :410:
provided under this License. Any attempt otherwise to propagate or
AlexDaniel/foo-regressed-very
…/LICENSE :410:
provided under this License. Any attempt otherwise to propagate or
AlexDaniel/foo-regressed
…/LICENSE :410:
provided under this License. Any attempt otherwise to propagate or
AlexDaniel/orgsleep
…/LICENSE :410:
provided under this License. Any attempt otherwise to propagate or
Altai-man/ASN-BER
…/Parser.pm6 :213:
my @temp;
Altai-man/ASN-BER
…/Parser.pm6 :214:
self!parse-sequence($input, $type, @temp, :$debug, :$mode);
Altai-man/ASN-BER
…/Parser.pm6 :215:
@positional.new(@temp);
Altai-man/Slang-Kazu
…/COPYING :413:
provided under this License. Any attempt otherwise to propagate or
Altai-man/perl6-Compress-Bzip2
…/Bzip2.pm6 :84:
my buf8 $temp .= new;
Altai-man/perl6-Compress-Bzip2
…/Bzip2.pm6 :85:
$temp[1023] = 0; # We will read in chunks of 1024 bytes.
Altai-man/perl6-Compress-Bzip2
…/Bzip2.pm6 :87:
my $len = BZ2_bzRead($bzerror, $bz, $temp, 1024);
Altai-man/perl6-Compress-Bzip2
…/Bzip2.pm6 :88:
@info[1].write($temp);
Altai-man/perl6-Compress-Bzip2
…/Bzip2.pm6 :100:
my buf8 $temp .= new;
Altai-man/perl6-Compress-Bzip2
…/Bzip2.pm6 :105:
my Int $temp-len = $len;
Altai-man/perl6-Compress-Bzip2
…/Bzip2.pm6 :107:
$temp[$temp-len] = 0;
Altai-man/perl6-Compress-Bzip2
…/Bzip2.pm6 :110:
$ret-code = BZ2_bzBuffToBuffCompress($temp, $len, $data, $data.elems, 6, 0, 0);
Altai-man/perl6-Compress-Bzip2
…/Bzip2.pm6 :112:
$ret-code = BZ2_bzBuffToBuffDecompress($temp, $len, $data, $data.elems, 0, 0);
Altai-man/perl6-Compress-Bzip2
…/Bzip2.pm6 :116:
return $temp.subbuf(0, $len);
Altai-man/perl6-Compress-Bzip2
…/10-basic.t :14:
dies-ok { decompress($filename-global) }, "Attempt to read non-.bz file threw an exception.";
Altai-man/perl6-Compress-Bzip2
…/10-basic.t :15:
dies-ok { decompress($filename-rel) }, "Attempt to read non-.bz file threw an exception.";
Bailador/Bailador
…/.gitattributes :1:
*.template linguist-language=HTML
Bailador/Bailador
…/Changes :18:
- Ticket #280 - Serve templates on Windows
Bailador/Bailador
…/Changes :37:
- Log if template or layouts were not found and avoid "internal server errors".
Bailador/Bailador
…/ISSUE_TEMPLATE.md :22:
Oh, and feel free to remove this template text from your issue :)
Bailador/Bailador
…/META6.json :89:
"error.template",
Bailador/Bailador
…/README.md :20:
- `renderer(Bailador::Template $renderer)`
Bailador/Bailador
…/README.md :32:
- `template(Str $template-name, *@params)`
Bailador/Bailador
…/README.md :44:
- Templates
Bailador/Bailador
…/README.md :45:
- Error Templates
Bailador/Bailador
…/README.md :205:
Sets the Renderer that's being used to render your templates. See the Templates section for more details.
Bailador/Bailador
…/README.md :273:
#### `template(Str $template-name, :$layout, *@params)`
Bailador/Bailador
…/README.md :275:
Calls the template which is a file in the views folder. You can specify a $:layout if you want to override the settings in Bailador::Configuration.
Bailador/Bailador
…/README.md :349:
It is possible to user other template engines as well.
Bailador/Bailador
…/README.md :352:
The template files should be placed by default in a folder named "views" which is located in the same directory as your application.pl file. If you want to override this, you just have to change the `views` settings, and choose you own directory :
Bailador/Bailador
…/README.md :354:
views: "templates"
Bailador/Bailador
…/README.md :360:
template 'template.tt', $name, $something;
Bailador/Bailador
…/README.md :363:
the template (or in other words the file views/template.tt) gets invoked "as a subroutine" and the |@params get passed. This is a example of a template file with Template::Mojo:
Bailador/Bailador
…/README.md :374:
In order to use layouts you can pass a layout option to the `template()` call.
Bailador/Bailador
…/README.md :377:
template 'template.tt', layout => 'main', $name, $something;
Bailador/Bailador
…/README.md :380:
First Bailador renders your template with its parameters, and then scans the 'layout' sub directory for another layout template. …
Bailador/Bailador
…/README.md :384:
In order to customize the error pages drop a template file with the filename of the HTTP status code and the suffix `.xx` in your views directory. Currently there only two different error codes: `404` and `500`.
Bailador/Bailador
…/README.md :484:
'terminal:stdout' => { template-filter => 'http-requests' },
Bailador/Bailador
…/README.md :488:
'file:access.log' => { template-filter => 'http-requests' },
Bailador/Bailador
…/README.md :512:
| template-format | predefined format strings | 'combined' (Apache combined format) |
Bailador/Bailador
…/README.md :513:
| template-filter | predefined filters | 'http-requests' HTTP request access |
Bailador/Bailador
…/README.md :514:
| category | filter on the log category | 'templates' logs related to templating |
Bailador/Bailador
…/README.md :521:
##### template-format
Bailador/Bailador
…/README.md :530:
##### template-filter
Bailador/Bailador
…/README.md :536:
- templates
Bailador/Bailador
…/app.pl6 :24:
<li><a href="/template/abc">Use a template</a></li>
Bailador/Bailador
…/app.pl6 :73:
# templates!
Bailador/Bailador
…/app.pl6 :74:
get / ^ '/template/' (.+) $ / => sub ($x) {
Bailador/Bailador
…/app.pl6 :75:
template 'tmpl.tt', { name => $x }
Bailador/Bailador
…/class_app.pl6 :25:
self.template('tmpl.tt', { name => $x });
Bailador/Bailador
…/bar.html :1:
Bar from template
Bailador/Bailador
…/foo.html :1:
Foo from template
Bailador/Bailador
…/index.html :1:
<h1>Main page - from template.</h1>
Bailador/Bailador
…/index.html :3:
<li><a href="/foo">foo</a> has template - has route = served from route</li>
Bailador/Bailador
…/index.html :4:
<li><a href="/bar">bar</a> has template - no route = served from template</li>
Bailador/Bailador
…/index.html :5:
<li><a href="/qux">qux</a> no template - has route = served from route</li>
Bailador/Bailador
…/index.html :6:
<li><a href="/xyz">xyz</a> no template - no route = 404</li>
Bailador/Bailador
…/index.html :7:
<li><a href="/cakes/carrot">cakes/carrot</a> template from subirectory </li>
Bailador/Bailador
…/app.pl6 :5:
template 'main.tt', { title => 'Hello Layout' };
Bailador/Bailador
…/app.pl6 :9:
template 'main.tt', :layout('other.tt'), { title => 'Using Other Layout' };
Bailador/Bailador
…/pastebin.pl6 :12:
template 'index.tt'
Bailador/Bailador
…/app.pl :11:
template 'index.tt', {
Bailador/Bailador
…/app.pl6 :11:
template 'index.html';
Bailador/Bailador
…/app.pl6 :15:
template 'page.html';
Bailador/Bailador
…/app.pl6 :19:
template 'sub/page.html';
Bailador/Bailador
…/app.pl6 :23:
template 'sub/index.html';
Bailador/Bailador
…/index.html :1:
<h2>Welcome to Bailador templates example!</h2>
Bailador/Bailador
…/Bailador.pm :109:
sub template(Str $tmpl, *@params, *%params) is export {
Bailador/Bailador
…/Bailador.pm :110:
app.template($tmpl, @params, |%params);
Bailador/Bailador
…/App.pm :50:
method !templatefile-extentions(Str:D $file) {
Bailador/Bailador
…/App.pm :51:
for ('', '.tt', '.mustache', '.html', '.template') -> $ext {
Bailador/Bailador
…/App.pm :55:
Log::Any.error("template file not found: $file");
Bailador/Bailador
…/App.pm :59:
method template(Str $tmpl, Str :$layout, *@params, *%params) {
Bailador/Bailador
…/App.pm :61:
my $content-template = self!templatefile-extentions($.location.IO.child(self.config.views).child($tmpl).Str);
Bailador/Bailador
…/App.pm :62:
$content = $!renderer.render($content-template, |@params, |%params) if $content-template;
Bailador/Bailador
…/App.pm :66:
my $layout-template = self!templatefile-extentions($.location.IO.child('layout').child($use-this-layout).Str);
Bailador/Bailador
…/App.pm :67:
if $layout-template {
Bailador/Bailador
…/App.pm :69:
$content = $!renderer.render($layout-template, $content, |@params, |%params);
Bailador/Bailador
…/App.pm :368:
self.render(:status(404), :type<text/html;charset=UTF-8>, content => self.template("404.xx", []));
Bailador/Bailador
…/App.pm :382:
state $error-template = Template::Mojo.new(%?RESOURCES<error.template>.IO.slurp);
Bailador/Bailador
…/App.pm :383:
$err-page = $error-template.render($_, self.request());
Bailador/Bailador
…/App.pm :388:
self.render(:status(500), :type<text/html;charset=UTF-8>, content => self.template("500.xx", []));
Bailador/Bailador
…/CLI.pm :71:
say "Attempting to boot up the app";
Bailador/Bailador
…/Configuration.pm :58:
# Available template-format: 'common', 'combined' and 'simple' wich are defaults in Apache ;
Bailador/Bailador
…/Configuration.pm :63:
# 'file:logs/access.log' => { 'template-filter' => 'http-requests', 'template-format' => 'combined' },
Bailador/Bailador
…/Configuration.pm :65:
# 'file:logs/error.log' => { 'category' => 'request-error', 'severity' => 'error', 'template-format' => 'simple' },
Bailador/Bailador
…/Gradual.pm :82:
return template($file)
Bailador/Bailador
…/Log.pm :75:
with $log-config{'template-filter'} {
Bailador/Bailador
…/Log.pm :79:
when 'templates' {
Bailador/Bailador
…/Log.pm :80:
@filters.push( 'category' => 'templates' );
Bailador/Bailador
…/Log.pm :100:
template-format => $log-config<template-format> // Nil,
Bailador/Bailador
…/Formatter.pm :10:
has $.template-format = Nil;
Bailador/Bailador
…/Formatter.pm :18:
if $!template-format && $!format {
Bailador/Bailador
…/Formatter.pm :19:
die 'Only one of "template-format" or "format" should be specified.'
Bailador/Bailador
…/Formatter.pm :22:
with $!template-format {
Bailador/Bailador
…/Formatter.pm :41:
die "Unknown value for 'template-format' ($!template-format)"
Bailador/Bailador
…/Formatter.pm :78:
with $!template-format {
Bailador/Bailador
…/Template.pm :4:
method render(Str $template-name, @params) { ... }
Bailador/Bailador
…/Mojo.pm :8:
has %.template-cache;
Bailador/Bailador
…/Mojo.pm :11:
method render(Str $template-name, *@params) {
Bailador/Bailador
…/Mojo.pm :12:
my $engine = self!get-engine($template-name);
Bailador/Bailador
…/Mojo.pm :16:
method render-string(Str $template-content, *@params) {
Bailador/Bailador
…/Mojo.pm :17:
my $engine = Template::Mojo.new($template-content);
Bailador/Bailador
…/Mojo.pm :21:
method !get-engine(Str $template-name) {
Bailador/Bailador
…/Mojo.pm :22:
unless %.template-cache{$template-name}:exists {
Bailador/Bailador
…/Mojo.pm :23:
%.template-cache{$template-name} = Template::Mojo.new($template-name.IO.slurp);
Bailador/Bailador
…/Mojo.pm :25:
return %.template-cache{$template-name};
Bailador/Bailador
…/Mustache.pm :10:
method render(Str $template-name, *@params) {
Bailador/Bailador
…/Mustache.pm :11:
$!engine.render($template-name.IO.slurp, |@params);
Bailador/Bailador
…/app.pl6 :7:
template 'index.html', { version => $version }
Bailador/Bailador
…/04-OO-templates-mustache.t :16:
self.add_route: make-route('GET', '/' => sub { self.template: 'simple.mustache', { 'foo' => 'bar' } });
Bailador/Bailador
…/04-OO-templates.t :14:
self.add_route: make-route('GET', '/' => sub { self.template: 'simple.tt', 'bar' });
Bailador/Bailador
…/04-templates-mustache.t :11:
get '/a' => sub { template 'simple.mustache', { 'foo' => 'bar' } }
Bailador/Bailador
…/04-templates-mustache.t :12:
get '/b' => sub { template 'simple.mustache', { 'foo' => 'bar' } }
Bailador/Bailador
…/04-templates.t :9:
get '/' => sub { template 'index.tt'; }
Bailador/Bailador
…/04-templates.t :10:
get '/a' => sub { template 'simple.tt', 'bar' }
Bailador/Bailador
…/04-templates.t :11:
get '/c' => sub { template 'with-include.tt', 'bar' }
Bailador/Bailador
…/11-error-templates.t :10:
my $not-found-template will leave { .unlink } = $?FILE.IO.parent.child('views').child('404.xx');
Bailador/Bailador
…/11-error-templates.t :11:
my $error-template will leave { .unlink } = $?FILE.IO.parent.child('views').child('500.xx');
Bailador/Bailador
…/11-error-templates.t :20:
ok not $not-found-template.e , 'there is no 404 template';
Bailador/Bailador
…/11-error-templates.t :26:
is-deeply %resp<response>, [404, ["Content-Type" => "text/plain;charset=UTF-8"], 'Not found' ], '404 - without error template';
Bailador/Bailador
…/11-error-templates.t :30:
$not-found-template.spurt: '<h1>nada</h1>';
Bailador/Bailador
…/11-error-templates.t :31:
ok $not-found-template.e , 'there is a 404 template';
Bailador/Bailador
…/11-error-templates.t :42:
is-deeply %resp<response>, [404, ["Content-Type" => "text/html;charset=UTF-8"], '<h1>nada</h1>' ], '404 - with error template';
Bailador/Bailador
…/11-error-templates.t :49:
ok not $error-template.e, 'there is no 500 template';
Bailador/Bailador
…/11-error-templates.t :56:
is-deeply %resp<response>, [500, ["Content-Type" => "text/plain;charset=UTF-8"], 'Internal Server Error' ], '500 - without error template';
Bailador/Bailador
…/11-error-templates.t :60:
$error-template.spurt: 'muerte';
Bailador/Bailador
…/11-error-templates.t :61:
ok $error-template.e, 'there is a 500 template';
Bailador/Bailador
…/11-error-templates.t :72:
is-deeply %resp<response>, [500, ["Content-Type" => "text/html;charset=UTF-8"], 'muerte' ], '500 - with error template';
Bailador/Bailador
…/13-configuration.t :83:
temp %*ENV<BAILADOR> = 'port:9090';
Bailador/Bailador
…/13-configuration.t :103:
temp %*ENV<BAILADOR_CONFIGDIR> = 'config';
Bailador/Bailador
…/13-configuration.t :118:
temp %*ENV<BAILADOR_CONFIGDIR> = $*PROGRAM.parent.child("config").absolute;
Bailador/Bailador
…/13-configuration.t :133:
temp %*ENV<BAILADOR_CONFIGFILE> = 'config/config.yaml';
Bailador/Bailador
…/13-configuration.t :148:
temp %*ENV<BAILADOR_CONFIGFILE> = $*PROGRAM.parent.child("config").child('config.yaml').absolute;
Bailador/Bailador
…/13-configuration.t :163:
temp %*ENV<BAILADOR_CONFIGFILE> = 'config/config.yaml';
Bailador/Bailador
…/19-logging.t :48:
my $f = Bailador::Log::Formatter.new( :template-format<common> );
Bailador/Bailador
…/19-logging.t :60:
$f = Bailador::Log::Formatter.new( :template-format<combined> );
Bailador/Bailador
…/19-logging.t :71:
$f = Bailador::Log::Formatter.new( :template-format<simple> );
Bailador/Bailador
…/19-logging.t :85:
dies-ok { Bailador::Log::Formatter.new( :template-format<mpm> ) }, 'Template-format "mpm" not yet implemented.';
Bailador/Bailador
…/19-logging.t :86:
dies-ok { Bailador::Log::Formatter.new( :template-format<plop> ) }, 'Template-format "plop" unknown.';
Bailador/Bailador
…/19-logging.t :139:
# Todo: generate a random and temporary file (/tmp/bailador-nrsite/log.log)
Bailador/Bailador
…/19-logging.t :232:
# Test template-filter
Bailador/Bailador
…/19-logging.t :233:
# "template-filter" basically sets a set of filtters
Bailador/Bailador
…/19-logging.t :235:
# Test template-format
Bailador/Bailador
…/30-examples-app.t :148:
# my %data = run-psgi-request($app, 'GET', '/template/Camelia');
Bailador/Bailador
…/30-examples-app.t :149:
# is-deeply %data<response>, [200, ["Content-Type" => "text/html"], ''], 'route GET /template/Camelia';
Bailador/Bailador
…/30-examples-app.t :151:
#}, '/template/Camelia';
Bailador/Bailador
…/30-examples-gradual.t :26:
like $html, rx:s/\<h1\>Main page \- from template\.\<\/h1\>/;
Bailador/Bailador
…/30-examples-gradual.t :45:
is-deeply %data<response>, [200, ["Content-Type" => "text/html"], "Bar from template\n"], 'route GET /bar';
Bailador/Bailador
…/30-examples-pastebin.t :10:
# the templating system needs relative path
Bailador/Bailador
…/30-examples-templates.t :14:
chdir 'examples/templates';
Bailador/Bailador
…/30-examples-templates.t :27:
ok $html.index('<h2>Welcome to Bailador templates example!</h2>') == 0, 'main page';
Bailador/Bailador
…/with-include.tt :3:
<%= template('simple.tt', @_) %>
Bailador/Bailador
…/20-cli.t :12:
my $dir = tempdir();
Bailador/Bailador
…/20-cli.t :117:
# temp %*ENV<PERL6LIB> = join(':', "$git_dir/lib", |get-path-from-repo());
CurtTilmes/perl6-libcurl
…/test0046.t :60:
$HOSTIP FALSE / FALSE 0 ckySession temporary
CurtTilmes/perl6-tcc
…/README.md :161:
`Inline::C` uses a slower C compiler, and goes to temp files on disk
FCO/json-stream
…/.travis.yml :13:
- cd $(mktemp -d)
FROGGS/p6-Digest-PSHA1
…/PSHA1.pm :18:
my Blob $temp;
FROGGS/p6-Digest-PSHA1
…/PSHA1.pm :23:
$temp = hmac($clientbytes, $buffer2, &sha1, 64);
FROGGS/p6-Digest-PSHA1
…/PSHA1.pm :25:
for 0..^$temp.elems -> $x {
FROGGS/p6-Digest-PSHA1
…/PSHA1.pm :27:
$pshabuffer[$i] = $temp[$x];
FROGGS/p6-Games-BubbleBreaker
…/LICENSE :167:
expressly provided under this License. Any attempt otherwise to copy, modify,
FROGGS/p6-Games-BubbleBreaker
…/LICENSE :368:
provided that the use of this Package is embedded; that is, when no overt attempt
FROGGS/p6-if
…/if.pm :31:
$RMD("Attempting to load '$name'") if $RMD;
IanTayler/MinG
…/META6.json :17:
"resources" : ["template.tex", "espa0.mg", "eng0.mg", "nihongo0.edmg"],
IanTayler/MinG
…/README.md :43:
As of now, someone who isn't interested in the inner workings of the module but wants to try out some minimalist grammars can easily create their grammar following this template:
IanTayler/MinG
…/to-readme.pod6 :42:
As of now, someone who isn't interested in the inner workings of the module but wants to try out some minimalist grammars can easily create their grammar following this template:
IanTayler/MinG
…/MinG.pm6 :89:
my $contents = slurp %?RESOURCES{"template.tex"};
IanTayler/MinG
…/MinG.pm6 :98:
my $contents = slurp %?RESOURCES{"template.tex"};
IanTayler/MinG
…/EDMG.pm6 :425:
# This is temporal. devq is not meant to be public.
IanTayler/MinG
…/S13.pm6 :346:
# This is temporal. devq is not meant to be public.
IanTayler/MinG
…/Logic.pm6 :334:
my Int $temp = self.ind_max;
IanTayler/MinG
…/Logic.pm6 :335:
return @.items[$temp] if $temp;
JJ/p6-math-constants
…/PULL_REQUEST_TEMPLATE.md :1:
# Pull request template for `Math::Constants`
JJ/p6-math-constants
…/LICENSE :410:
provided under this License. Any attempt otherwise to propagate or
JJ/p6-math-constants
…/ebyteParse-output.txt :17:
Planck-temperature 1.41683385e+32
JJ/p6-math-constants
…/ebyteParse-output.txt :290:
rms-variations-of-CMB-temperature 1.8e-7
JJ/p6-math-constants
…/ebyteParse-output.txt :337:
Photosphere-temperature 5778
JJ/p6-math-constants
…/ebyteParse-output.txt :380:
Surface-temperature,-mean 287.2
JJ/p6-math-constants
…/Constants.pm6 :28:
my constant planck-temperature is export = 1.416833e+32;
JJ/p6-wikidata-API
…/LICENSE :410:
provided under this License. Any attempt otherwise to propagate or
Juerd/p6-mqtt
…/Client.pm :183:
Attempts to connect to the MQTT broker, and returns a Promise that will be kept
Juerd/p6-mqtt
…/MyPack.pm :5:
my grammar template {
Juerd/p6-mqtt
…/MyPack.pm :16:
sub mypack ($template, *@list is copy) is export {
Juerd/p6-mqtt
…/MyPack.pm :30:
my @new_template;
Juerd/p6-mqtt
…/MyPack.pm :32:
for template.parse($template).<unit> -> $unit {
Juerd/p6-mqtt
…/MyPack.pm :35:
my $subtemplate = $p<unit>;
Juerd/p6-mqtt
…/MyPack.pm :38:
$subtemplate = ~$composed<TOP>;
Juerd/p6-mqtt
…/MyPack.pm :41:
my $packed = mypack($subtemplate, @list.splice(0, $subunits, []));
Juerd/p6-mqtt
…/MyPack.pm :54:
@new_template.push("C" x @o);
Juerd/p6-mqtt
…/MyPack.pm :58:
@new_template.push($p<length>);
Juerd/p6-mqtt
…/MyPack.pm :62:
@new_template.push("a*");
Juerd/p6-mqtt
…/MyPack.pm :70:
@new_template.push("a*");
Juerd/p6-mqtt
…/MyPack.pm :74:
@new_template.push(~$c<TOP>);
Juerd/p6-mqtt
…/MyPack.pm :78:
@new_template.push(~$unit);
Juerd/p6-mqtt
…/MyPack.pm :83:
return pack ~@new_template, @new_list;
Kaiepi/p6-Digest-BubbleBabble
…/BubbleBabble.pm6 :121:
# Don't attempt to decode; these bytes don't contain any
LLFourn/p6-AttrX-InitArg
…/README.md :46:
which this module attempts to emulate.
LLFourn/p6-CompUnit-Util
…/README.md :144:
Attempts to simulate a `use` statement. Returns a hash of all the
Leont/build-graph6
…/basic.t :16:
my $dirname = tempdir(:unlink);
MARTIMM/BSON
…/Document.pm6 :305:
#note 'return temporary container';
MARTIMM/BSON
…/Document.pm6 :620:
# skip all temporay containers
MARTIMM/BSON
…/Document.pod6 :209:
like 'Cannot modify an immutable Any' when an attempt is made like in the
MARTIMM/mongo-perl6-driver
…/CHANGES.md :213:
* Attempts to tackle the hangups and broken tests seen on Travis. One step was to shorten the loop time while monitoring. At least this g…
MARTIMM/mongo-perl6-driver
…/version-cross-ref.md :3:
This is an attempt to make some sort of a cross reference of mongodb functions
MARTIMM/mongo-perl6-driver
…/Client.pod6 :149:
connectTimeoutMS The time in milliseconds to attempt a
MARTIMM/mongo-perl6-driver
…/Client.pod6 :152:
socketTimeoutMS The time in milliseconds to attempt a
MARTIMM/mongo-perl6-driver
…/Client.pod6 :154:
attempt times out.
MARTIMM/mongo-perl6-driver
…/Monitor.pm6 :213:
.message ~~ m:s/Out of range\: attempted to read/ ||
MARTIMM/mongo-perl6-driver
…/400-run-command.t :151:
# Second attempt using iteratable role
MARTIMM/mongo-perl6-driver
…/Test-support.pm6 :65:
for private, or customized services or temporary purposes and for automatic
MARTIMM/mongo-perl6-driver
…/bench-client-server-socket.pl6 :45:
# (20170722) Forget about cleanup... 10 temporary threads + 1 monitoring threads
MARTIMM/mongo-perl6-driver
…/server-selection.sxml :106:
between attempts, as required by the Server Discovery and Monitoring spec).
MARTIMM/mongo-perl6-driver
…/test-summary.sxml :7:
$*|a href=http://www.softwaretestinghelp.com/test-summary-report-template-download-sample/ [
MARTIMM/pod-render
…/prettify.js :34:
F=[[C,"auto,case,char,const,default,double,enum,extern,float,goto,inline,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,uns…
MARTIMM/pod-render
…/run_prettify.js :51:
L=[[K,"auto,case,char,const,default,double,enum,extern,float,goto,inline,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,uns…
MattOates/BioInfo
…/README.md :10:
- I'll attempt to work on reasonable requests for anything, pull requests are welcome just maybe contact me first if you have to make some big architectural decisions to get what you want.
MattOates/Text--Emotion
…/AFINN-111.txt :486:
contempt -2
MattOates/Text--Emotion
…/AFINN-111.txt :487:
contemptuous -2
MattOates/Text--Emotion
…/AFINN-111.txt :488:
contemptuously -2
MattOates/Text--Emotion
…/ODBL1.0-LICENSE.txt :80:
"Extraction" – Means the permanent or temporary transfer of all or a
MattOates/Text--Emotion
…/ODBL1.0-LICENSE.txt :200:
d. Creation of temporary or permanent reproductions by any means and
MattOates/Text--Emotion
…/Scorer.pm :6:
has %dictionary = split /<[,;]>/, "abandon,-2;abandoned,-2;abandons,-2;abducted,-2;abduction,-2;abductions,-2;abhor,-3;abhorred,-3;abhorrent,-3;a…
Perl6-Noise-Gang/Audio-PortAudio
…/Documentation.md :346:
This starts the stream, making it available for reading or writing. Attempting to read or write without first calling start will give rise to an exception.
Perl6-Noise-Gang/Audio-PortAudio
…/Documentation.md :355:
This closes the stream, releasing the device. If any reads or writes are attempted after it has been closed then an exception will be throw…
Perl6-Noise-Gang/Audio-PortAudio
…/Documentation.md :357:
If you attempt to close any already closed stream an exception will be thrown.
Perl6-Noise-Gang/Audio-PortAudio
…/play-wav :18:
If the switch '--jack' is supplied then it will attempt to output to the
Perl6-Noise-Gang/Audio-PortAudio
…/PortAudio.pm :484:
This starts the stream, making it available for reading or writing. Attempting
Perl6-Noise-Gang/Audio-PortAudio
…/PortAudio.pm :494:
attempted after it has been closed then an exception will be thrown.
Perl6-Noise-Gang/Audio-PortAudio
…/PortAudio.pm :496:
will continue attempting to populate the underlying buffers until closed.
Perl6-Noise-Gang/Audio-PortAudio
…/PortAudio.pm :498:
If you attempt to close any already closed stream an exception will be
Perl6-Noise-Gang/Audio-PortMIDI
…/PortMIDI.pm :185:
size then an exception will be thrown at the next attempt to write to the
Perl6-Noise-Gang/Audio-PortMIDI
…/PortMIDI.pm :362:
rise to an exception if a write is attempted after this is called.
Perl6-Noise-Gang/Audio-PortMIDI
…/PortMIDI.pm :386:
For a stream opened for input this will attempt to obtain at most
Perl6-Noise-Gang/Audio-PortMIDI
…/PortMIDI.pm :569:
realtime clock that may control the tempo and playback of
Perl6-Noise-Gang/Audio-PortMIDI
…/PortMIDI.pm :571:
tempo in your application:
Perl6-Noise-Gang/Audio-PortMIDI
…/PortMIDI.pm :580:
accuracy at higher tempos without using the C<portmidi> timer.
Perl6-Noise-Gang/Audio-PortMIDI
…/PortMIDI.pm :583:
the tempo on a receiving system, for instance synchronising the
Perl6-Noise-Gang/Audio-PortMIDI
…/PortMIDI.pm :590:
clocks temporarily to affect some time based decoration (such
Perl6-Noise-Gang/Audio-PortMIDI
…/PortMIDI.pm :597:
messages indicating the tempo of playback. Playback is expected
Perl6-Noise-Gang/p6-Music-Helpers
…/a-m-note-example.pl6 :11:
my $keys = Audio::MIDI::Note.new(:tempo(120), :$stream, :value(1), :velocity(85), :channel(0));
Perl6-Noise-Gang/p6-Music-Helpers
…/clock.pl6 :3:
multi sub MAIN(:$server, :$tempo = 120) {
Perl6-Noise-Gang/p6-Music-Helpers
…/clock.pl6 :9:
my $step = 1/(($tempo/60)*4);
Perl6-Noise-Gang/perl6-Audio-MIDI-Note
…/README.md :20:
- `:tempo`
Perl6-Noise-Gang/perl6-Audio-MIDI-Note
…/README.md :62:
my Audio::MIDI::Note $note .= new: :20tempo :$stream, :value(½), :49velocity;
Perl6-Noise-Gang/perl6-Audio-MIDI-Note
…/README.md :139:
my Audio::MIDI::Note $note .= new: :31tempo :30instrument :$stream :value(⅔ * ⅛);
Perl6-Noise-Gang/perl6-Audio-MIDI-Note
…/README.md :187:
#### `:tempo`
Perl6-Noise-Gang/perl6-Audio-MIDI-Note
…/README.md :190:
Specifies the tempo of the piece in beats per minute per **WHOLE** note.
Perl6-Noise-Gang/perl6-Audio-MIDI-Note
…/README.md :220:
:20tempo
Perl6-Noise-Gang/perl6-Audio-MIDI-Note
…/canon-c-easy.p6 :7:
my Audio::MIDI::Note $note .= new: :20tempo :$stream, :value(½), :49velocity;
Perl6-Noise-Gang/perl6-Audio-MIDI-Note
…/gorgoroth.p6 :7:
my Audio::MIDI::Note $note .= new: :31tempo :30instrument :$stream :value(⅔ * ⅛);
Perl6-Noise-Gang/perl6-Audio-MIDI-Note
…/heart-will-go-on.p6 :7:
my Audio::MIDI::Note $note .= new: :25tempo :$stream;
Perl6-Noise-Gang/perl6-Audio-MIDI-Note
…/Note.pm6 :13:
has Int $.tempo is rw where { $_ > 0 } = 40;
Perl6-Noise-Gang/perl6-Audio-MIDI-Note
…/Note.pm6 :45:
sleep $value * (60 / $!tempo);
Perl6-Noise-Gang/perl6-Audio-MIDI-Note
…/Note.pm6 :60:
method rest (Numeric $value = $.value) { sleep $value * (60 / $!tempo); self; }
Perl6-Noise-Gang/perl6-Audio-MIDI-Note
…/Note.pm6 :64:
multi method tempo ($temp) { $!tempo = $temp; self; }
Perl6-Noise-Gang/perl6-Audio-MIDI-Note
…/Note.pm6 :69:
multi method tempo { return-rw $!tempo; }
PerlGameDev/SDL6
…/Functions.pm6 :180:
#~ SDL_SemTryWait -- Attempt to lock a semaphore but don't suspend the thread.
PostCocoon/P6-TagLibC
…/README.md :313:
Creates a TagLib file based on \a filename. Rather than attempting to guess the type, it will use the one specified by \a type.
PostCocoon/P6-TagLibC
…/TagLibC.pm6 :144:
#| Creates a TagLib file based on \a filename. Rather than attempting to guess
PowellDean/Locale-Codes-Country
…/README.md :4:
Locale::Codes::Country is a first attempt at creating a pure Perl 6 implementation
Skarsnik/nativecall-typediag
…/TypeDiag.pm6 :167:
my ($cfilename, $cfileh) = tempfile("********.c");
Skarsnik/nativecall-typediag
…/TypeDiag.pm6 :169:
my ($execfilename, $execfileh) = tempfile;
Skarsnik/perl6-config-simple
…/basetest.plt :13:
$conf.write('t/temp.temp');
Skarsnik/perl6-config-simple
…/basetest.plt :15:
$conf = Config::Simple.read("t/temp.temp") if $format eq '';
Skarsnik/perl6-config-simple
…/basetest.plt :16:
$conf = Config::Simple.read("t/temp.temp", :f($format)) if $format ne '';
Skarsnik/perl6-config-simple
…/basetest.plt :20:
unlink 't/temp.temp';
Skarsnik/perl6-gumbo
…/README.md :20:
Gumbo is an implementation of the HTML5 parsing algorithm implemented as a pure C99 library with no outside dependencies. It's designed to serve as a building block for other tools and libraries such as linters, validators, templating languages, and refactoring and analysis tools.
Skarsnik/perl6-gumbo
…/Gumbo.pm6 :21:
It's designed to serve as a building block for other tools and libraries such as linters, validators, templating languages, and refactoring and analysis tools.
TiMBuS/Net--IRC
…/overview.pod :39:
attempts to call the .noticed method of every module that has one, handing
TiMBuS/Net--IRC
…/overview.pod :40:
each the full Net::IRC::Event object. (I say "attempts", because it is
TiMBuS/Net--IRC
…/Default.pm :16:
has $nickattempts = 0;
TiMBuS/Net--IRC
…/Default.pm :22:
if $ev.state<altnicks> > $nickattempts {
TiMBuS/Net--IRC
…/Default.pm :26:
$ev.state<nick> = $ev.state<altnicks>[$nickattempts++];
TiMBuS/Net--IRC
…/unsmith :125:
I smile when Seth gives my dragon plushie Smaug a "swirlie". Heres what he doesnt know:Wring out,let dry 45 min, perfect-temperature pillow.
TiMBuS/Net--IRC
…/unsmith :734:
i'm glad i'll never have the temptation to use the office printer for personal use
Tux/CSV
…/csv-check :14:
$err and temp $*OUT = $*ERR;
Tux/CSV
…/csv-check-tuxic :13:
$err and temp $*OUT = $*ERR;
Tux/CSV
…/CSV.pm :1818:
!! tempfile;
Tux/CSV
…/CSV.pod6 :815:
L</getline> method associated with C<$io> (or the internal temporary IO
Uladox/Editscr-Uggedit
…/Uggedit.pm :165:
my ($codeFile, $codeHandle) = tempfile;
Uladox/Editscr-Uggedit
…/Uggedit.pm :166:
my ($varFile, $varHandle ) = tempfile;
ab5tract/Terminal-Print
…/rpg-ui.p6 :897:
has $.temp = Terminal::Print::Grid.new(self.grid.w, self.grid.h);
ab5tract/Terminal-Print
…/rpg-ui.p6 :907:
~ "TEMP\n" ~ grid-string($.temp, :framed).indent(4) ~ "\n"
ab5tract/Terminal-Print
…/rpg-ui.p6 :912:
my $fg = $!temp.grid;
ab5tract/Terminal-Print
…/rpg-ui.p6 :925:
my $temp-row = $.temp.grid[$y];
ab5tract/Terminal-Print
…/rpg-ui.p6 :927:
$temp-row[$x] = $grid-row[$x] if $grid-row[$x] ne ' ';
ab5tract/Terminal-Print
…/rpg-ui.p6 :929:
print (^$.w .map: { $temp-row[$_] ?? move($_ + $.x, $y + $.y) ~ $temp-row[$_] !! '' }).join if $print; # )
ab5tract/Terminal-Print
…/rpg-ui.p6 :935:
print &($.grid.move-cursor)($.x, $_ + $.y) ~ $.temp.grid[$_].join for ^$.h; # ))
ab5tract/Terminal-Print
…/tris.p6 :175:
#| Attempt to move to the side
ab5tract/Terminal-Print
…/tris.p6 :180:
#| Attempt to rotate, possibly resolving collisions by kicking right/left
ab5tract/Terminal-Print
…/Print.pm6 :85:
my $move-cursor = move-cursor-template($cursor-profile);
ab5tract/Terminal-Print
…/Commands.pm6 :106:
sub move-cursor-template( Terminal::Print::CursorProfile $profile = 'ansi' ) returns Code is export {
ab5tract/Terminal-Print
…/Grid.pm6 :47:
method new($w, $h, :$move-cursor = move-cursor-template) {
ab5tract/Terminal-Print
…/Text.pm6 :21:
# (no attempt is made to split single words across multiple lines)
adaptiveoptics/HTML-Tag
…/README.md :35:
in code for those who are not using html template classes or who wish
adaptiveoptics/HTML-Tag
…/Tag.pod6 :35:
in code for those who are not using html template classes or who wish
adaptiveoptics/P6-Finance-GDAX-API
…/Position.pm6 :164:
Holds details about the resting margin call. To attempt to ensure you
adaptiveoptics/P6-Finance-GDAX-API
…/020-api.t :27:
my ($fn, $fh) = tempfile;
ajs/perl6-Math-Sequences
…/generate-OEIS-tests.p6 :103:
my $test-script-temp = $test-script ~ ".tmp";
ajs/perl6-Math-Sequences
…/generate-OEIS-tests.p6 :104:
my $fh = open($test-script-temp, :w);
andydude/p6-c-parser
…/LICENSE :69:
layouts and accessors, or small macros, inline functions and templates
andydude/p6-c-parser
…/zmq.pp.c :110:
extern char *tempnam (const char *__dir, const char *__pfx) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__malloc__)) ;
araraloren/perl6-app-findsource
…/LICENSE :410:
provided under this License. Any attempt otherwise to propagate or
araraloren/perl6-app-snippet
…/LICENSE :410:
provided under this License. Any attempt otherwise to propagate or
araraloren/perl6-getopt-advance
…/fetch-picture.p6 :26:
"t|tempfile=s",
araraloren/perl6-getopt-advance
…/02-option.t :26:
$optset.push("source-template=s", "use a template", value => "base" );
araraloren/perl6-getopt-advance
…/02-option.t :28:
$optset.append("p|print-code=b;d|debug=b;t|temp=a");
araraloren/perl6-getopt-advance
…/02-option.t :75:
'--source-template', 'custom',
araraloren/perl6-getopt-advance
…/02-option.t :95:
isa-ok $optset.get('source-template', 's'), Option::String, 'the **source-template** is a String option.';
araraloren/perl6-getopt-advance
…/02-option.t :96:
is $optset.get('source-template').value, "custom", "**source-template** is set to 'custom'";
araraloren/perl6-getopt-advance
…/02-option.t :101:
ok $optset.remove('t'), 'remove the **t|temp** option.';
araraloren/perl6-terminal-table
…/Frame.pm6 :189:
my @temp = Array.new;
araraloren/perl6-terminal-table
…/Frame.pm6 :196:
@temp.push(
araraloren/perl6-terminal-table
…/Frame.pm6 :229:
for ^+@temp -> $i {
araraloren/perl6-terminal-table
…/Frame.pm6 :232:
value => @temp[$i].[0],
araraloren/perl6-terminal-table
…/Frame.pm6 :236:
@new-padding.push(@temp[$i].[1].clone());
araraloren/perl6-terminal-table
…/Frame.pm6 :302:
my @temp = @!lines;
araraloren/perl6-terminal-table
…/Frame.pm6 :304:
@temp.push(String.new(value => "").extend-to(self.max-width()));
araraloren/perl6-terminal-table
…/Frame.pm6 :306:
self.clone(lines => @temp);
arnsholt/Net-ZMQ
…/Poll.pm6 :10:
# This is a temporary function. Ideally, we'd like to allow the user to poll
atweiden/config-toml
…/example-v0.4.0.toml :88:
winpath = 'C:\Users\nodejs\templates'
atweiden/config-toml
…/04-document.t :305:
'C:\Users\nodejs\templates',
atweiden/config-toml
…/04-document.t :310:
┃ Success ┃ ~~ 'C:\Users\nodejs\templates'
atweiden/crane
…/README.md :195:
it will attempt to index the existing Associative container with the
atweiden/crane
…/add.t :396:
'Add operation fails when attempts to create a sparse Positional'
atweiden/crane
…/add.t :404:
'Add operation fails when attempts to create a sparse Positional'
atweiden/crane
…/add.t :412:
'Add operation fails when attempts to create a sparse Positional'
atweiden/crane
…/copy.t :230:
'Copy operation fails when attempts to create a sparse Positional'
atweiden/crane
…/copy.t :238:
'Copy operation fails when attempts to create a sparse Positional'
atweiden/crane
…/move.t :238:
'Move operation fails when attempts to create a sparse Positional'
atweiden/crane
…/move.t :246:
'Move operation fails when attempts to create a sparse Positional'
autarch/perl6-File-LibMagic
…/README.md :52:
If this is set to `True`, libmagic will attempt to preserve the file access time of files it reads.
autarch/perl6-File-LibMagic
…/LibMagic.pm6 :237:
If this is set to C<True>, libmagic will attempt to preserve the file access
autarch/perl6-File-LibMagic
…/flags.t :19:
my $dir = tempdir();
avuserow/perl6-audio-taglib-simple
…/README.md :42:
TagLib cannot parse it. TagLib attempts to guess the file type here.
azawawi/farabi6
…/Editor.pm6 :33:
my ($filename,$filehandle) = tempfile(:!unlink);
azawawi/farabi6
…/Editor.pm6 :36:
# Invoke perl -c $temp_file
azawawi/farabi6
…/Editor.pm6 :42:
# Remove temp file
azawawi/farabi6
…/Editor.pm6 :148:
# Create a temporary file that holds the POD string
azawawi/farabi6
…/Editor.pm6 :149:
my ($filename,$filehandle) = tempfile(:!unlink);
azawawi/farabi6
…/Editor.pm6 :155:
# Remove temp file
azawawi/farabi6
…/Editor.pm6 :199:
# Create a temporary file that holds the POD string
azawawi/farabi6
…/Editor.pm6 :200:
my ($filename,$filehandle) = tempfile(:!unlink);
azawawi/farabi6
…/Editor.pm6 :209:
# Remove temp file
azawawi/farabi6
…/Editor.pm6 :533:
my ($filename,$filehandle) = tempfile(:!unlink);
azawawi/farabi6
…/Editor.pm6 :539:
#TODO Remove temp file on END?
azawawi/farabi6
…/Editor.pm6 :542:
# Start debugging the temporary script
azawawi/farabi6
…/dialog.js :14:
function dialogDiv(cm, template, bottom) {
azawawi/farabi6
…/dialog.js :23:
if (typeof template == "string") {
azawawi/farabi6
…/dialog.js :24:
dialog.innerHTML = template;
azawawi/farabi6
…/dialog.js :26:
dialog.appendChild(template);
azawawi/farabi6
…/dialog.js :37:
CodeMirror.defineExtension("openDialog", function(template, callback, options) {
azawawi/farabi6
…/dialog.js :42:
var dialog = dialogDiv(this, template, options.bottom);
azawawi/farabi6
…/dialog.js :95:
CodeMirror.defineExtension("openConfirm", function(template, callbacks, options) {
azawawi/farabi6
…/dialog.js :97:
var dialog = dialogDiv(this, template, options && options.bottom);
azawawi/farabi6
…/dialog.js :132:
CodeMirror.defineExtension("openNotification", function(template, options) {
azawawi/farabi6
…/dialog.js :134:
var dialog = dialogDiv(this, template, options && options.bottom);
azawawi/farabi6
…/html-hint.js :319:
itemprop: null,
azawawi/farabi6
…/tern.js :267:
tempTooltip(cm, tip);
azawawi/farabi6
…/tern.js :593:
function tempTooltip(cm, content) {
azawawi/farabi6
…/tern.js :645:
tempTooltip(cm, String(msg));
azawawi/farabi6
…/clike.js :289:
"static_cast typeid catch operator template typename class friend private " +
azawawi/farabi6
…/css.js :443:
"grid-template", "grid-template-areas", "grid-template-columns",
azawawi/farabi6
…/css.js :444:
"grid-template-rows", "hanging-punctuation", "height", "hyphens",
azawawi/farabi6
…/meta.js :109:
{name: "Soy", mime: "text/x-soy", mode: "soy", ext: ["soy"], alias: ["closure template"]},
azawawi/farabi6
…/perl.js :352:
local : 2, // - create a temporary value for a global variable (dynamic scoping)
azawawi/farabi6
…/sql.js :296:
keywords: set(sqlKeywords + "accessible action add after algorithm all analyze asensitive at authors auto_increment autocommit avg avg_row_length…
azawawi/farabi6
…/sql.js :312:
keywords: set(sqlKeywords + "accessible action add after algorithm all always analyze asensitive at authors auto_increment autocommit avg avg_row…
azawawi/farabi6
…/sql.js :353:
keywords: set("select alter $elem$ $key$ $value$ add after all analyze and archive as asc before between binary both bucket buckets by cascade ca…
azawawi/farabi6
…/sql.js :390:
Used for date/time SQL standard syntax, because not all DBMS's support same temporal types.
azawawi/farabi6
…/stex.js :95:
// Do we look like '\command' ? If so, attempt to apply the plugin 'command'
azawawi/farabi6
…/3024-day.css :6:
CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-codemirror)
azawawi/farabi6
…/3024-night.css :6:
CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-codemirror)
azawawi/farabi6
…/base16-dark.css :6:
CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools)
azawawi/farabi6
…/base16-light.css :6:
CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools)
azawawi/farabi6
…/tomorrow-night-eighties.css :6:
CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-codemirror)
azawawi/farabi6
…/api.min.js :11:
!function(e,t,r,n){"use strict";e.api=e.fn.api=function(r){var o,a=e(e.isFunction(this)?t:this),i=a.selector||"",s=(new Date).getTime(),u=[],c=argume…
azawawi/farabi6
…/dimmer.min.js :11:
!function(e,i,n,t){"use strict";e.fn.dimmer=function(i){var o,a=e(this),r=(new Date).getTime(),m=[],s=arguments[0],d="string"==typeof s,c=[].slice.ca…
azawawi/farabi6
…/dropdown.min.js :11:
!function(e,t,n,i){"use strict";e.fn.dropdown=function(o){var a,r=e(this),s=e(n),c=r.selector||"",l="ontouchstart"in n.documentElement,u=(new Date).g…
azawawi/farabi6
…/form.min.js :11:
!function(e,t,n,i){"use strict";e.fn.form=function(t,r){var o,a=e(this),s=e.extend(!0,{},e.fn.form.settings,r),l=e.extend({},e.fn.form.settings.defau…
azawawi/farabi6
…/popup.min.js :11:
!function(e,t,o,n){"use strict";e.fn.popup=function(i){var r,s=e(this),a=e(o),p=s.selector||"",l="ontouchstart"in o.documentElement,u=(new Date).getT…
azawawi/farabi6
…/rating.min.js :11:
!function(e,n,t,a){"use strict";e.fn.rating=function(n){var t,i=e(this),o=i.selector||"",r=(new Date).getTime(),s=[],l=arguments[0],c="string"==typeo…
azawawi/farabi6
…/reset.min.css :10:
*/*,:after,:before{box-sizing:inherit}html{box-sizing:border-box}input[type=text],input[type=email],input[type=search],input[type=password]{-webkit-…
azawawi/farabi6
…/search.min.js :11:
!function(e,t,s,n){"use strict";e.fn.search=function(r){var a,i=e(this),o=i.selector||"",c=(new Date).getTime(),u=[],l=arguments[0],d="string"==typeo…
azawawi/farabi6
…/tab.min.js :11:
!function(e,t,a,n){"use strict";e.fn.tab=function(a){var i,o,r=e(e.isFunction(this)?t:this),s=e.isPlainObject(a)?e.extend(!0,{},e.fn.tab.settings,a):…
azawawi/farabi6
…/video.min.js :11:
!function(e,o,t,n){"use strict";e.fn.video=function(t){{var a,i=e(this),r=i.selector||"",l=(new Date).getTime(),c=[],u=arguments[0],s="string"==typeo…
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/farabi6
…/semantic.min.js :11:
!function(e,t,n,i){e.site=e.fn.site=function(o){var a,r,s=(new Date).getTime(),c=[],l=arguments[0],u="string"==typeof l,d=[].slice.call(arguments,1),…
azawawi/farabi6
…/semantic.min.js :12:
},instantiate:function(){m.verbose("Storing instance of module",m),S=m,k.data(x,S)},destroy:function(){m.verbose("Destroying previous module",d),k.re…
azawawi/farabi6
…/semantic.min.js :13:
}})):(T.debug("Showing modal with javascript"),D.fadeIn(S.duration,S.easing,function(){S.onVisible.apply(j),T.add.keyboardShortcuts(),T.save.focus(),…
azawawi/farabi6
…/semantic.min.js :14:
},active:function(e){e=e||m.text.active,f.debug("Setting active state"),m.showActivity&&!f.is.active()&&w.addClass(g.active),f.remove.warning(),f.rem…
azawawi/farabi6
…/semantic.min.js :15:
}(jQuery,window,document),function(e,t,n,i){"use strict";e.fn.sidebar=function(o){var a,r=e(this),s=e(t),c=e(n),l=e("html"),u=e("head"),d=r.selector|…
azawawi/farabi6
…/semantic.min.js :16:
}),console.groupEnd()),u=[]}},invoke:function(t,n,r){var s,c,l,u=F;return n=n||m,r=E||r,"string"==typeof t&&u!==i&&(t=t.split(/[\. ]/),s=t.length-1,e…
azawawi/farabi6
…/semantic.min.js :17:
})},bindEvents:function(){s.keyboardShortcuts&&l.on("keydown"+m,t.event.field.keydown),o.on("submit"+m,t.validate.form),l.on("blur"+m,t.event.field.b…
azawawi/farabi6
…/perl6-mode.js :235:
"let my our state temp has constant",
azawawi/perl6-gtk-scintilla
…/Design.html :49:
library and with limited use of templates.
azawawi/perl6-gtk-scintilla
…/SciCoding.html :132:
Exceptions and templates may be used but, since Scintilla can be used from C as well as
azawawi/perl6-gtk-scintilla
…/SciCoding.html :224:
Spaces on both sides of '=' and comparison operators and no attempt to line up '='.
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :521:
only, attempts to modify the text cause the <a class="message"
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :1814:
This will attempt to scroll the display by the number of columns and lines that you specify.
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :5628:
Grant temporary direct read-only access to the memory used by Scintilla to store
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1387:
Report error when attempt to resize buffer to more than 2GB with SC_STATUS_FAILURE.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2202:
SciTE find and replace strips can perform incremental searching and temporary highlighting of all
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2543:
Avoid attempts to redraw empty areas when lexing beyond the currently visible lines.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2622:
On Windows, fix painting on an explicit HDC when first paint attempt abandoned.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4207:
Mako template language block syntax extended and ## comments recognised.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4212:
Folding of Mako template language within HTML fixed.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4463:
SciTE on Windows adds temp.files.sync.load property to open dropped temporary files synchronously as they may
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4834:
SciTE on Windows attempts to rerun commands that fail by prepending them with "cmd.exe /c".
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5037:
SciTE bug fixed where closing untitled file could lose data if attempt to name file same as another buffer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5080:
HTML lexer highlights Django templates in more regions.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5202:
Django template highlighting added to the HTML lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5336:
HTML lexer extended to handle Mako template language.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5346:
SciTE on GTK+ uses pipes instead of temporary files for running tools. This should be more secure.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5787:
Direct temporary access to Scintilla's text buffer to allow simple efficient interfacing
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6457:
On GTK+, if the approximate character set conversion is unavailable, a second attempt is made
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6746:
Kid template language better handled by HTML lexer by finishing ASP Python
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8311:
Removed attempt to load a file when setting properties that was
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9040:
when a modification is attempted. Drag and drop cursors display correctly
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10152:
Bug fixed in SciTE with attempts to define properties recursively.
azawawi/perl6-gtk-scintilla
…/ScintillaGTKAccessible.cxx :38:
// AtkObject temporarily, and use it's type. It means creating an extra
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :4804:
evt void ModifyAttemptRO=2004(void)
azawawi/perl6-gtk-scintilla
…/LexBaan.cxx :134:
/* IsAnyOtherIdentifier uses standard templates used in baan.
azawawi/perl6-gtk-scintilla
…/LexBaan.cxx :135:
The matching template is shown as comments just above the return condition.
azawawi/perl6-gtk-scintilla
…/LexBaan.cxx :342:
|| styler.Match(i, "selectempty") || styler.Match(i, "selecterror")))
azawawi/perl6-gtk-scintilla
…/LexBaan.cxx :723:
std::string selectCloseTags[5] = { "selectdo", "selecteos", "selectempty", "selecterror", "endselect" };
azawawi/perl6-gtk-scintilla
…/LexHTML.cxx :686:
// Set to 1 to enable the mako template language.
azawawi/perl6-gtk-scintilla
…/LexHTML.cxx :690:
// Set to 1 to enable the django template language.
azawawi/perl6-gtk-scintilla
…/LexHTML.cxx :944:
// handle the start Mako template Python code
azawawi/perl6-gtk-scintilla
…/LexHTML.cxx :1019:
// handle the start Django template code
azawawi/perl6-gtk-scintilla
…/LexHTML.cxx :1143:
// handle the end of Django template code
azawawi/perl6-gtk-scintilla
…/LexPerl.cxx :92:
// conditions, the following attempts to do the disambiguation
azawawi/perl6-gtk-scintilla
…/LexPerl.cxx :1359:
// for quote-like delimiters/keywords, attempt to disambiguate
azawawi/perl6-gtk-scintilla
…/LexRuby.cxx :1755:
* These temporarily de-indent, but re-indent
azawawi/perl6-gtk-scintilla
…/LexSQL.cxx :652:
for (Sci_Position tempPos = startPos + 1;
azawawi/perl6-gtk-scintilla
…/LexSQL.cxx :653:
tempPos < lastNLPos;
azawawi/perl6-gtk-scintilla
…/LexSQL.cxx :654:
++tempPos) {
azawawi/perl6-gtk-scintilla
…/LexSQL.cxx :655:
int tempStyle = styler.StyleAt(tempPos);
azawawi/perl6-gtk-scintilla
…/LexSQL.cxx :656:
if (!IsCommentStyle(tempStyle)
azawawi/perl6-gtk-scintilla
…/LexSQL.cxx :657:
&& tempStyle != SCE_SQL_DEFAULT) {
azawawi/perl6-gtk-scintilla
…/LexTADS3.cxx :652:
are ':', ',', '(' and ')'. No attempt is made to ensure that punctuation
azawawi/perl6-gtk-scintilla
…/OptionSet.h :17:
template <typename T>
azawawi/perl6-gtk-scintilla
…/SparseState.h :17:
template <typename T>
azawawi/perl6-gtk-scintilla
…/StringCopy.h :20:
template <typename T, size_t count>
azawawi/perl6-gtk-scintilla
…/ScintillaDocument.cpp :43:
void NotifyModifyAttempt(Document *doc, void *userData);
azawawi/perl6-gtk-scintilla
…/ScintillaDocument.cpp :58:
void WatcherHelper::NotifyModifyAttempt(Document *, void *) {
azawawi/perl6-gtk-scintilla
…/ScintillaDocument.cpp :59:
owner->emit_modify_attempt();
azawawi/perl6-gtk-scintilla
…/ScintillaDocument.cpp :280:
void ScintillaDocument::emit_modify_attempt() {
azawawi/perl6-gtk-scintilla
…/ScintillaDocument.cpp :281:
emit modify_attempt();
azawawi/perl6-gtk-scintilla
…/ScintillaDocument.h :84:
void emit_modify_attempt();
azawawi/perl6-gtk-scintilla
…/ScintillaDocument.h :93:
void modify_attempt();
azawawi/perl6-gtk-scintilla
…/WidgetGen.py :233:
GenerateFile("ScintillaEdit.cpp.template", "ScintillaEdit.cpp",
azawawi/perl6-gtk-scintilla
…/WidgetGen.py :235:
GenerateFile("ScintillaEdit.h.template", "ScintillaEdit.h",
azawawi/perl6-gtk-scintilla
…/WidgetGen.py :237:
GenerateFile("../ScintillaEditPy/ScintillaConstants.py.template",
azawawi/perl6-gtk-scintilla
…/ScintillaEditBase.cpp :689:
emit modifyAttemptReadOnly();
azawawi/perl6-gtk-scintilla
…/ScintillaEditBase.h :84:
void modifyAttemptReadOnly();
azawawi/perl6-gtk-scintilla
…/sepbuild.py :212:
GenerateFile("typesystem_ScintillaEdit.xml.template", "typesystem_ScintillaEdit.xml",
azawawi/perl6-gtk-scintilla
…/testsepq.py :25:
"template this throw true try typedef typeid typename union unsigned using " \
azawawi/perl6-gtk-scintilla
…/FileGenerator.py :6:
# May be modified in-place or a template may be generated into a complete file.
azawawi/perl6-gtk-scintilla
…/LexGen.py :8:
# Files are regenerated in place with templates stored in comments.
azawawi/perl6-gtk-scintilla
…/ContractionState.h :15:
template<class T>
azawawi/perl6-gtk-scintilla
…/Document.cxx :1029:
NotifyModifyAttempt();
azawawi/perl6-gtk-scintilla
…/Document.cxx :2248:
void Document::NotifyModifyAttempt() {
azawawi/perl6-gtk-scintilla
…/Document.cxx :2250:
it->watcher->NotifyModifyAttempt(this, it->userData);
azawawi/perl6-gtk-scintilla
…/Document.cxx :2809:
template<typename Iterator, typename Regex>
azawawi/perl6-gtk-scintilla
…/Document.h :460:
void NotifyModifyAttempt();
azawawi/perl6-gtk-scintilla
…/Document.h :538:
virtual void NotifyModifyAttempt(Document *doc, void *userData) = 0;
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2337:
void Editor::NotifyModifyAttempt() {
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2508:
void Editor::NotifyModifyAttempt(Document *, void *) {
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2509:
//Platform::DebugPrintf("** Modify Attempt\n");
azawawi/perl6-gtk-scintilla
…/Editor.cxx :2510:
NotifyModifyAttempt();
azawawi/perl6-gtk-scintilla
…/Editor.h :427:
void NotifyModifyAttempt();
azawawi/perl6-gtk-scintilla
…/Editor.h :447:
void NotifyModifyAttempt(Document *document, void *userData);
azawawi/perl6-gtk-scintilla
…/PerLine.cxx :257:
// to line before to avoid a temporary disappearence causing expansion.
azawawi/perl6-gtk-scintilla
…/SparseVector.h :17:
template <typename T>
azawawi/perl6-gtk-scintilla
…/SparseVector.h :162:
template<>
azawawi/perl6-gtk-scintilla
…/SparseVector.h :169:
template<>
azawawi/perl6-gtk-scintilla
…/SplitVector.h :16:
template <typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :191:
template<typename ContainerT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :198:
template<typename AssociativeContainerT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :255:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :328:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :350:
Ptr temp( p );
azawawi/perl6-gtk-scintilla
…/catch.hpp :351:
swap( temp );
azawawi/perl6-gtk-scintilla
…/catch.hpp :355:
Ptr temp( other );
azawawi/perl6-gtk-scintilla
…/catch.hpp :356:
swap( temp );
azawawi/perl6-gtk-scintilla
…/catch.hpp :377:
template<typename T = IShared>
azawawi/perl6-gtk-scintilla
…/catch.hpp :469:
template<typename C>
azawawi/perl6-gtk-scintilla
…/catch.hpp :503:
template<typename C>
azawawi/perl6-gtk-scintilla
…/catch.hpp :607:
template<bool> struct NotABooleanExpression;
azawawi/perl6-gtk-scintilla
…/catch.hpp :609:
template<bool c> struct If : NotABooleanExpression<c> {};
azawawi/perl6-gtk-scintilla
…/catch.hpp :610:
template<> struct If<true> : TrueType {};
azawawi/perl6-gtk-scintilla
…/catch.hpp :611:
template<> struct If<false> : FalseType {};
azawawi/perl6-gtk-scintilla
…/catch.hpp :613:
template<int size> struct SizedIf;
azawawi/perl6-gtk-scintilla
…/catch.hpp :614:
template<> struct SizedIf<sizeof(TrueType)> : TrueType {};
azawawi/perl6-gtk-scintilla
…/catch.hpp :615:
template<> struct SizedIf<sizeof(FalseType)> : FalseType {};
azawawi/perl6-gtk-scintilla
…/catch.hpp :681:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :683:
template<int N> struct TrueIfSizeable : TrueType {};
azawawi/perl6-gtk-scintilla
…/catch.hpp :685:
template<typename T2>
azawawi/perl6-gtk-scintilla
…/catch.hpp :693:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :699:
template<typename T> BorgType( T const& );
azawawi/perl6-gtk-scintilla
…/catch.hpp :707:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :716:
template<bool C>
azawawi/perl6-gtk-scintilla
…/catch.hpp :718:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :722:
template<>
azawawi/perl6-gtk-scintilla
…/catch.hpp :724:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :747:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :771:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :774:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :778:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :780:
template<typename U>
azawawi/perl6-gtk-scintilla
…/catch.hpp :789:
template<typename R, typename C>
azawawi/perl6-gtk-scintilla
…/catch.hpp :800:
template<typename InputIterator>
azawawi/perl6-gtk-scintilla
…/catch.hpp :804:
template<typename T, typename Allocator>
azawawi/perl6-gtk-scintilla
…/catch.hpp :812:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :820:
/// The default template forwards on to ostringstream - except when an
azawawi/perl6-gtk-scintilla
…/catch.hpp :821:
/// ostringstream overload does not exist - in which case it attempts to detect
azawawi/perl6-gtk-scintilla
…/catch.hpp :823:
/// Overload (not specialise) this template for custom typs that you don't want
azawawi/perl6-gtk-scintilla
…/catch.hpp :825:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :856:
template<typename InputIterator>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1015:
template<Operator Op> struct OperatorTraits { static const char* getName(){ return "*error*"; } };
azawawi/perl6-gtk-scintilla
…/catch.hpp :1016:
template<> struct OperatorTraits<IsEqualTo> { static const char* getName(){ return "=="; } };
azawawi/perl6-gtk-scintilla
…/catch.hpp :1017:
template<> struct OperatorTraits<IsNotEqualTo> { static const char* getName(){ return "!="; } };
azawawi/perl6-gtk-scintilla
…/catch.hpp :1018:
template<> struct OperatorTraits<IsLessThan> { static const char* getName(){ return "<"; } };
azawawi/perl6-gtk-scintilla
…/catch.hpp :1019:
template<> struct OperatorTraits<IsGreaterThan> { static const char* getName(){ return ">"; } };
azawawi/perl6-gtk-scintilla
…/catch.hpp :1020:
template<> struct OperatorTraits<IsLessThanOrEqualTo> { static const char* getName(){ return "<="; } };
azawawi/perl6-gtk-scintilla
…/catch.hpp :1021:
template<> struct OperatorTraits<IsGreaterThanOrEqualTo>{ static const char* getName(){ return ">="; } };
azawawi/perl6-gtk-scintilla
…/catch.hpp :1023:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1031:
// So the compare overloads can be operator agnostic we convey the operator as a template
azawawi/perl6-gtk-scintilla
…/catch.hpp :1033:
template<typename T1, typename T2, Operator Op>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1036:
template<typename T1, typename T2>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1042:
template<typename T1, typename T2>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1048:
template<typename T1, typename T2>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1054:
template<typename T1, typename T2>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1060:
template<typename T1, typename T2>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1066:
template<typename T1, typename T2>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1073:
template<Operator Op, typename T1, typename T2>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1082:
template<Operator Op, typename T1, typename T2>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1088:
template<Operator Op> bool compare( unsigned int lhs, int rhs ) {
azawawi/perl6-gtk-scintilla
…/catch.hpp :1091:
template<Operator Op> bool compare( unsigned long lhs, int rhs ) {
azawawi/perl6-gtk-scintilla
…/catch.hpp :1094:
template<Operator Op> bool compare( unsigned char lhs, int rhs ) {
azawawi/perl6-gtk-scintilla
…/catch.hpp :1099:
template<Operator Op> bool compare( unsigned int lhs, long rhs ) {
azawawi/perl6-gtk-scintilla
…/catch.hpp :1102:
template<Operator Op> bool compare( unsigned long lhs, long rhs ) {
azawawi/perl6-gtk-scintilla
…/catch.hpp :1105:
template<Operator Op> bool compare( unsigned char lhs, long rhs ) {
azawawi/perl6-gtk-scintilla
…/catch.hpp :1110:
template<Operator Op> bool compare( int lhs, unsigned int rhs ) {
azawawi/perl6-gtk-scintilla
…/catch.hpp :1113:
template<Operator Op> bool compare( int lhs, unsigned long rhs ) {
azawawi/perl6-gtk-scintilla
…/catch.hpp :1116:
template<Operator Op> bool compare( int lhs, unsigned char rhs ) {
azawawi/perl6-gtk-scintilla
…/catch.hpp :1121:
template<Operator Op> bool compare( long lhs, unsigned int rhs ) {
azawawi/perl6-gtk-scintilla
…/catch.hpp :1124:
template<Operator Op> bool compare( long lhs, unsigned long rhs ) {
azawawi/perl6-gtk-scintilla
…/catch.hpp :1127:
template<Operator Op> bool compare( long lhs, unsigned char rhs ) {
azawawi/perl6-gtk-scintilla
…/catch.hpp :1132:
template<Operator Op, typename T> bool compare( long lhs, T* rhs ) {
azawawi/perl6-gtk-scintilla
…/catch.hpp :1135:
template<Operator Op, typename T> bool compare( T* lhs, long rhs ) {
azawawi/perl6-gtk-scintilla
…/catch.hpp :1140:
template<Operator Op, typename T> bool compare( int lhs, T* rhs ) {
azawawi/perl6-gtk-scintilla
…/catch.hpp :1143:
template<Operator Op, typename T> bool compare( T* lhs, int rhs ) {
azawawi/perl6-gtk-scintilla
…/catch.hpp :1149:
template<Operator Op, typename T> bool compare( std::nullptr_t, T* rhs ) {
azawawi/perl6-gtk-scintilla
…/catch.hpp :1152:
template<Operator Op, typename T> bool compare( T* lhs, std::nullptr_t ) {
azawawi/perl6-gtk-scintilla
…/catch.hpp :1185:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1195:
template<typename RhsT> STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& operator && ( RhsT const& );
azawawi/perl6-gtk-scintilla
…/catch.hpp :1196:
template<typename RhsT> STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& operator || ( RhsT const& );
azawawi/perl6-gtk-scintilla
…/catch.hpp :1214:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1228:
template<typename RhsT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1233:
template<typename RhsT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1238:
template<typename RhsT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1243:
template<typename RhsT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1248:
template<typename RhsT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1253:
template<typename RhsT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1276:
template<typename RhsT> STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& operator + ( RhsT const& );
azawawi/perl6-gtk-scintilla
…/catch.hpp :1277:
template<typename RhsT> STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& operator - ( RhsT const& );
azawawi/perl6-gtk-scintilla
…/catch.hpp :1278:
template<typename RhsT> STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& operator / ( RhsT const& );
azawawi/perl6-gtk-scintilla
…/catch.hpp :1279:
template<typename RhsT> STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& operator * ( RhsT const& );
azawawi/perl6-gtk-scintilla
…/catch.hpp :1280:
template<typename RhsT> STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& operator && ( RhsT const& );
azawawi/perl6-gtk-scintilla
…/catch.hpp :1281:
template<typename RhsT> STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& operator || ( RhsT const& );
azawawi/perl6-gtk-scintilla
…/catch.hpp :1284:
template<Internal::Operator Op, typename RhsT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1306:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1353:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1551:
template<typename MatcherT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1562:
template<typename MatcherT, typename ArgT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1571:
template<typename MatcherT, typename ArgT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1854:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1861:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1880:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1901:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1973:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1980:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :1990:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :2001:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :2045:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :2067:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :2155:
template<>
azawawi/perl6-gtk-scintilla
…/catch.hpp :2169:
template<typename ExpressionT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :2180:
template<typename DerivedT, typename ExpressionT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :2190:
template<typename ExpressionT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :2224:
template<typename ExpressionT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :2333:
template<typename ExpressionT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :2338:
template<typename ExpressionT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :2344:
template<typename ExpressionT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :2349:
template<typename ExpressionT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :2569:
template<typename MatcherT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :2873:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3277:
template<typename T> struct RemoveConstRef{ typedef T type; };
azawawi/perl6-gtk-scintilla
…/catch.hpp :3278:
template<typename T> struct RemoveConstRef<T&>{ typedef T type; };
azawawi/perl6-gtk-scintilla
…/catch.hpp :3279:
template<typename T> struct RemoveConstRef<T const&>{ typedef T type; };
azawawi/perl6-gtk-scintilla
…/catch.hpp :3280:
template<typename T> struct RemoveConstRef<T const>{ typedef T type; };
azawawi/perl6-gtk-scintilla
…/catch.hpp :3282:
template<typename T> struct IsBool { static const bool value = false; };
azawawi/perl6-gtk-scintilla
…/catch.hpp :3283:
template<> struct IsBool<bool> { static const bool value = true; };
azawawi/perl6-gtk-scintilla
…/catch.hpp :3285:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3309:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3314:
template<typename ConfigT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3327:
template<typename ConfigT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3356:
template<typename C>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3364:
template<typename C, typename M>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3377:
template<typename C, typename M>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3394:
template<typename C>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3411:
template<typename C>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3428:
template<typename C, typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3492:
template<typename ConfigT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3530:
template<typename ConfigT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3583:
+ "' already specified, now attempting to add '"
azawawi/perl6-gtk-scintilla
…/catch.hpp :3602:
template<typename C, typename M>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3608:
template<typename C>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3614:
template<typename C, typename M>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3621:
template<typename C>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3627:
template<typename C>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3633:
template<typename C>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3639:
template<typename C, typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3717:
template<typename C, typename M>
azawawi/perl6-gtk-scintilla
…/catch.hpp :3721:
template<typename C, typename M>
azawawi/perl6-gtk-scintilla
…/catch.hpp :4298:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :4387:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :5753:
template<typename WriterF, size_t bufferSize=256>
azawawi/perl6-gtk-scintilla
…/catch.hpp :6466:
TestCase temp( other );
azawawi/perl6-gtk-scintilla
…/catch.hpp :6467:
swap( temp );
azawawi/perl6-gtk-scintilla
…/catch.hpp :7063:
template<typename T, typename ChildNodeT>
azawawi/perl6-gtk-scintilla
…/catch.hpp :7203:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :7223:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :7295:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :7324:
// XmlWriter temp( other );
azawawi/perl6-gtk-scintilla
…/catch.hpp :7325:
// swap( temp );
azawawi/perl6-gtk-scintilla
…/catch.hpp :7387:
template<typename T>
azawawi/perl6-gtk-scintilla
…/catch.hpp :8197:
template<char C>
azawawi/perl6-gtk-scintilla
…/PlatWin.cxx :460:
template<typename T, int lengthStandard>
azawawi/perl6-gtk-scintilla
…/ScintillaWin.cxx :2204:
for (int attempt=0; attempt<8; attempt++) {
azawawi/perl6-gtk-scintilla
…/ScintillaWin.cxx :2205:
if (attempt > 0) {
azawawi/perl6-gtk-scintilla
…/ScintillaWin.cxx :2206:
::Sleep(1 << (attempt-1));
azawawi/perl6-libzip
…/README.md :32:
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
azawawi/perl6-libzip
…/02-create-zip-archive.pl6 :23:
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
azawawi/perl6-libzip
…/NativeCall.pm6 :60:
# S Renaming temporary file failed
azawawi/perl6-libzip
…/NativeCall.pm6 :80:
# S Failure to create temporary file
azawawi/perl6-net-curl
…/curlgtk.c :10:
/* an attempt to use the curl library in concert with a gtk-threaded application */
azawawi/perl6-net-curl
…/fopen.c :123:
/* use to attempt to fill the read buffer up to requested number of bytes */
azawawi/perl6-net-curl
…/fopen.c :132:
/* only attempt to fill buffer if transactions still running and buffer
azawawi/perl6-net-curl
…/fopen.c :138:
/* attempt to fill buffer */
azawawi/perl6-net-curl
…/sampleconv.c :44:
char *tempptrin, *tempptrout;
azawawi/perl6-net-curl
…/sampleconv.c :47:
tempptrin = tempptrout = buffer;
azawawi/perl6-net-curl
…/sampleconv.c :48:
rc = platform_a2e(&tempptrin, &bytes, &tempptrout, &bytes);
azawawi/perl6-net-curl
…/sampleconv.c :58:
char *tempptrin, *tempptrout;
azawawi/perl6-net-curl
…/sampleconv.c :61:
tempptrin = tempptrout = buffer;
azawawi/perl6-net-curl
…/sampleconv.c :62:
rc = platform_e2a(&tempptrin, &bytes, &tempptrout, &bytes);
azawawi/perl6-net-curl
…/sampleconv.c :72:
char *tempptrin, *tempptrout;
azawawi/perl6-net-curl
…/sampleconv.c :75:
tempptrin = tempptrout = buffer;
azawawi/perl6-net-curl
…/sampleconv.c :76:
rc = platform_u2e(&tempptrin, &bytes, &tempptrout, &bytes);
azawawi/perl6-opencv
…/NativeCall.pm6 :102:
uint32 $templateWindowSize,
azawawi/perl6-opencv
…/Photo.pm6 :15:
Int $templateWindowSize = 7,
azawawi/perl6-opencv
…/Photo.pm6 :19:
$hColor, $templateWindowSize, $searchWindowSize);
azawawi/perl6-opencv
…/libopencv-perl6.cpp :122:
int templateWindowSize,
azawawi/perl6-opencv
…/libopencv-perl6.cpp :129:
srcMat, dstMat, h, hColor, templateWindowSize, searchWindowSize);
azawawi/perl6-selenium-webdriver
…/Firefox.pm6 :25:
# Create a temporary folder for our temporary firefox profile
azawawi/perl6-selenium-webdriver
…/Firefox.pm6 :26:
my ($directory, $dirhandle) = tempdir;
azawawi/perl6-selenium-webdriver
…/Firefox.pm6 :36:
# Create temporary profile path
azawawi/perl6-selenium-webdriver
…/Wire.pm6 :35:
Int :$max-attempts where $_ >= 1 = 10 )
azawawi/perl6-selenium-webdriver
…/Wire.pm6 :51:
for 1..$max-attempts {
azawawi/perl6-selenium-webdriver
…/Wire.pm6 :59:
say "Attempt $_ to create session" if self.debug;
azawawi/perl6-selenium-webdriver
…/Wire.pm6 :66:
die "Cannot obtain a session after $max-attempts attempts" unless $session.defined;
azawawi/perl6-selenium-webdriver
…/02-phantomjs.t :45:
my $driver = Selenium::WebDriver::PhantomJS.new(:debug, :max-attempts(30), :port(5555));
bbkr/jsonrpc
…/README.md :310:
* Attempt to flush empty Batch will result in `X::JSON::RPC::InvalidRequest` exception.
bbkr/jsonrpc
…/Server.pm6 :48:
my %template = (
bbkr/jsonrpc
…/Server.pm6 :80:
%response = %template;
bbkr/jsonrpc
…/Server.pm6 :109:
%response = %template;
bbkr/jsonrpc
…/Server.pm6 :146:
$out = %template;
bduggan/p6-jupyter-kernel
…/math.ipynb :8:
"With attempts to use Unicode operators where possible to make the Perl 6 code look like the math."
bduggan/p6-jupyter-kernel
…/Sandbox.pm6 :83:
temp $PROCESS::OUT = $*OUT;
bduggan/p6-jupyter-kernel
…/Sandbox.pm6 :84:
temp $PROCESS::ERR = $*ERR;
bduggan/p6-jupyter-kernel
…/Sandbox.pm6 :98:
# use a temporary package
bduggan/p6-jupyter-kernel
…/02-sandbox.t :96:
like $res.output, /:i 'attempt to divide' .* 'by zero' /, 'trapped 1/0 error';
bduggan/p6-log-async
…/10-formatter.t :8:
sub tempfile {
bduggan/p6-log-async
…/10-formatter.t :20:
my $output will leave { .unlink } = tempfile;
bduggan/p6-log-async
…/10-formatter.t :32:
my $output will leave { .unlink } = tempfile;
bduggan/p6-log-async
…/10-formatter.t :44:
my $output will leave { .unlink } = tempfile;
bduggan/p6-log-async
…/10-formatter.t :55:
my $output will leave { .unlink } = tempfile;
bduggan/p6-log-async
…/10-formatter.t :70:
my $output will leave { .unlink } = tempfile;
bioduds/EC-Grammars-DIG
…/LICENSE :411:
provided under this License. Any attempt otherwise to propagate or
bioduds/EC-Grammars-DIG
…/DIG.pm6 :481:
provided under this License. Any attempt otherwise to propagate or
bradclawsie/Hash-Consistent
…/basic.t :24:
}, 'catch attempt to insert empty string';
bradclawsie/Hash-Consistent
…/basic.t :29:
}, 'catch attempt to remove empty string';
bradclawsie/Hash-Consistent
…/basic.t :34:
}, 'catch attempt to find empty string';
bradclawsie/Net-IP-Parse
…/README.md :12:
attempt at defining such a type.
bradclawsie/Net-IP-Parse
…/Parse.pm6 :15:
attempt at defining such a type.
briandfoy/perl6-PrettyDump
…/reformat-pair.p6 :69:
my $template = "%-{2+$depth+1+$longest-key.chars}s => %s";
briandfoy/perl6-PrettyDump
…/reformat-pair.p6 :81:
sprintf( $template, .split: / \h+ '=>' \h+ /, 2 )
briandfoy/perl6-PrettyDump
…/PrettyDump.pm6 :131:
This allows you to temporarily override a builtin method. You might
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :35:
method !getJSON( $template ) {
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :36:
my $encoded_uri = uri_encode( $!baseURL ~ $template ~ "&id={ $apiID }" );
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :48:
method !getIMG( :$name, :$template ){
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :50:
my $url = $!baseURL ~ $template;
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :63:
my $template = "imagery/earth.png?date={ $date }&time={ $time }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :64:
self.getIMG( :name( "earth" ), :template( $template ) );
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :70:
my $template = "imagery/earth.png?date={ $date }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :71:
self.getIMG( :name( "earth" ), :template( $template ) );
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :79:
my $template = "imagery/earth.png?date={ $date }&view={ $view }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :80:
self!getIMG( :name( "earth" ), :template( $template ) );
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :88:
my $template = "imagery/{ $body }.png?date={ $date }&time={ $time }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :89:
self!getIMG( :name( $body ), :template($template) );
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :96:
my $template = "moon/phase?date={ $date }&nump={ $numP }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :97:
return self!getJSON( $template );
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :102:
my $template = "moon/phase?year={ $year }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :103:
return self!getJSON( $template );
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :115:
my $template = "rstt/oneday?date={ $date }&coords={ $coords }&tz={ $tz }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :116:
say self!getJSON( $template );
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :127:
my $template = "rstt/oneday?date={ $date }&loc={ $loc }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :128:
return self!getJSON( $template );
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :147:
my $template = "sidtime?date={ $date }&time={ $time }&loc={ $loc }&reps={ $reps }&intv_mag={ $intvMag }&intv_unit={ $intvUnit }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :148:
return self!getJSON( $template );
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :162:
my $template = "sidtime?date={ $date }&time={ $time }&coords={ $coords }&reps={ $reps }&intv_mag={ $intvMag }&intv_unit={ $intvUnit }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :163:
return self!getJSON( $template );
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :169:
my $template = "eclipses/solar?year={ $year }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :170:
return self!getJSON( $template );
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :178:
my $template = "eclipses/solar?date={ $date }&loc={ $loc }&height={ $height }&format={ $format }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :179:
return self!getJSON( $template );
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :191:
my $template = "eclipses/solar?date={ $date }&coords={ $coords }&height={ $height }&format={ $format }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :192:
return self!getJSON( $template );
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :199:
my $template = "christian?year={ $year }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :200:
return self!getJSON( $template );
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :207:
my $template = "jewish?year={ $year }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :208:
return self!getJSON( $template );
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :215:
my $template = "islamic?year={ $year }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :216:
return self!getJSON( $template );
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :225:
my $template = "jdconverter?date={ $date }&time={ $time }&era={ $era }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :226:
return self!getJSON( $template );
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :233:
my $template = "jdconverter?jd={ $julian }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :234:
return self!getJSON( $template );
ccworld1000/CCChart
…/LICENSE :173:
except as expressly provided under this License. Any attempt
ccworld1000/CCColor
…/LICENSE :173:
except as expressly provided under this License. Any attempt
ccworld1000/CCLog
…/LICENSE :173:
except as expressly provided under this License. Any attempt
cedric-vincent/kains
…/README.txt :307:
the system configuration temporally and locally, ie. without impacting
cedric-vincent/kains
…/README.txt :362:
- http://download.openvz.org/template/precreated/
cedric-vincent/kains
…/Chrooted.pm6 :70:
say qq<Info: using "$actual-rootfs" as temporary mount point, bindings are:>
cjfields/bioperl6
…/PrimarySeq.pm6 :59:
# # $obj->throw("Attempting to set the sequence to [$value] ".
cjfields/bioperl6
…/PrimarySeq.pm6 :116:
# # $self->_attempt_to_load_Seq();
cjfields/bioperl6
…/PrimarySeq.pm6 :139:
# # $self->_attempt_to_load_Seq();
cjfields/bioperl6
…/PrimarySeq.pm6 :252:
# "Attempting to revcom, but unsure if this is right");
cjfields/bioperl6
…/PrimarySeq.pm6 :255:
# "Attempting to revcom, but unsure if this is right");
cjfields/bioperl6
…/PrimarySeq.pm6 :286:
# $self->_attempt_to_load_Seq();
cjfields/bioperl6
…/Temp.pm6 :7:
has Bool $.cleanup-tempdir = True;
cjfields/bioperl6
…/Temp.pm6 :8:
has Bool $.cleanup-tempfiles = True;
cjfields/bioperl6
…/Temp.pm6 :9:
has @!tempdirs;
cjfields/bioperl6
…/Temp.pm6 :10:
my $tempcounter = 0;
cjfields/bioperl6
…/Temp.pm6 :12:
method tempfile(*%args) {
cjfields/bioperl6
…/Temp.pm6 :17:
return tempfile(|%args);
cjfields/bioperl6
…/Temp.pm6 :20:
# a hack for temp directories; a version is working for File::Temp but is stuck
cjfields/bioperl6
…/Temp.pm6 :22:
method tempdir(Bool :$cleanup) {
cjfields/bioperl6
…/Temp.pm6 :23:
$!cleanup-tempdir = $cleanup if $cleanup;
cjfields/bioperl6
…/Temp.pm6 :28:
$tempcounter++));
cjfields/bioperl6
…/Temp.pm6 :30:
@!tempdirs.push: $tdir;
cjfields/bioperl6
…/Lite.pm6 :644:
# $self->throw("attempt to set refseq using a feature that does not share the same seq_id")
cjfields/bioperl6
…/Lite.pm6 :934:
# The method will generate an exception if you attempt to set the
cjfields/bioperl6
…/Temp.t :20:
# tempfile
cjfields/bioperl6
…/Temp.t :33:
($tfile, $tfh) = $obj.tempfile();
cjfields/bioperl6
…/Temp.t :50:
ok $tfile.IO !~~ :e, "tempfile $tfile deleted";
cjfields/bioperl6
…/Temp.t :54:
# tempdir
cjfields/bioperl6
…/Temp.t :60:
my $tdir = $obj.tempdir(CLEANUP=>1);
cjfields/bioperl6
…/Temp.t :62:
($tfile, $tfh) = $obj.tempfile(:tempdir($tdir));
cjfields/bioperl6
…/Temp.t :70:
# tempfile
cjfields/bioperl6
…/Temp.t :76:
($tfile, $tfh) = $obj.tempfile(:!unlink);
cjfields/bioperl6
…/Temp.t :91:
my ($tfile, $tfh) = $obj.tempfile(:suffix<.bioperl>);
cjfields/bioperl6
…/Temp.t :93:
#like $tfh, rx/\.bioperl$/, 'tempfile suffix';
cjfields/bioperl6
…/Temp.t :98:
#my $fh2 = $obj->tempfile;
cjfields/bioperl6
…/Temp.t :100:
#ok $fh2, 'tempfile() in scalar context';
cjfields/bioperl6
…/Temp.t :109:
# ok $file.IO !~~ :e, "tempfile $file deleted";
cjfields/bioperl6
…/Temp.t :113:
# ok $file.IO ~~ :e, 'tempfile kept';
colomon/List-Utils
…/Utils.pm :146:
# my $temp = $a;
colomon/List-Utils
…/Utils.pm :147:
# take $temp;
colomon/List-Utils
…/Utils.pm :150:
# my $temp = $b;
colomon/List-Utils
…/Utils.pm :151:
# take $temp;
colomon/List-Utils
…/Utils.pm :156:
# my $temp = $a;
colomon/List-Utils
…/Utils.pm :157:
# take $temp;
colomon/List-Utils
…/Utils.pm :160:
# my $temp = $b;
colomon/List-Utils
…/Utils.pm :161:
# take $temp;
colomon/List-Utils
…/Utils.pm :177:
my $temp = $a;
colomon/List-Utils
…/Utils.pm :178:
take $temp;
colomon/List-Utils
…/Utils.pm :181:
my $temp = $b;
colomon/List-Utils
…/Utils.pm :182:
take $temp;
colomon/List-Utils
…/Utils.pm :186:
my $temp = $a;
colomon/List-Utils
…/Utils.pm :187:
take $temp;
colomon/List-Utils
…/Utils.pm :190:
my $temp = $b;
colomon/List-Utils
…/Utils.pm :191:
take $temp;
colomon/Math-Polynomial
…/README :1:
This is a simple attempt to create a working polynomial in one-variable class.
colomon/Math-Vector
…/README :1:
This is a simple attempt to create a working Vector class. Initially intended
colomon/TagTools
…/tags-to-filename :7:
my $track-number-template = '%0' ~ (+@files).chars ~ 'd-';
colomon/TagTools
…/tags-to-filename :37:
my $new-filename = sprintf($track-number-template, $tags.track) ~ $title ~ ".mp3";
colomon/Test-Junkie
…/tracker.t :30:
my $tempfile = 't/temporary_file-' ~ $*PID ~ '.t';
colomon/Test-Junkie
…/tracker.t :31:
create_temporary_file($tempfile);
colomon/Test-Junkie
…/tracker.t :35:
remove_temporary_file($tempfile);
colomon/Test-Junkie
…/tracker.t :40:
my $tempfile = 't/temporary_file-' ~ $*PID ~ '.t';
colomon/Test-Junkie
…/tracker.t :46:
create_temporary_file($tempfile);
colomon/Test-Junkie
…/tracker.t :48:
is $tracker.changed.map({.path}), $tempfile, 'should return file(s) changed since last timer update';
colomon/Test-Junkie
…/tracker.t :50:
remove_temporary_file($tempfile);
colomon/Test-Junkie
…/tracker.t :53:
sub create_temporary_file(Str $file) {
colomon/Test-Junkie
…/tracker.t :58:
sub remove_temporary_file(Str $file) {
colomon/io-prompter
…/wipe.t :36:
desc => "Ok result returned from first wipefirst attempt";
colomon/io-prompter
…/wipe.t :39:
desc => "At least 50 output lines from second wipefirst attempt";
colomon/io-prompter
…/wipe.t :46:
desc => "False result returned from second wipefirst attempt";
colomon/io-prompter
…/wipe.t :49:
desc => "Less than two output lines from second wipefirst attempt";
colomon/io-prompter
…/wipe.t :58:
desc => "Ok result returned from first wipe attempt";
colomon/io-prompter
…/wipe.t :61:
desc => "At least 50 output lines from wipe attempt";
cosimo/perl6-facter
…/Loader.pm :23:
self.debug("Attempting to load $module");
cosimo/perl6-facter
…/Loader.pm :110:
self.debug("Attempting to load $file in load_file");
croservices/cro-http-session-redis
…/.gitignore :14:
# temporary
cygx/p6-image-png-inflated
…/pngcheck.c :4606:
* attempting to read length bytes and chunk type/name bytes */
cygx/p6-image-rgba-text
…/pngcheck.c :4606:
* attempting to read length bytes and chunk type/name bytes */
cygx/p6-tinycc-resources-win64
…/COPYING :351:
attempt otherwise to copy, modify, sublicense, link with, or
cygx/p6-tinycc-resources-win64
…/io.h :241:
_CRTIMP char *__cdecl _mktemp(char *_TemplateName);
cygx/p6-tinycc-resources-win64
…/io.h :304:
char *__cdecl mktemp(char *);
cygx/p6-tinycc-resources-win64
…/io.h :330:
_CRTIMP wchar_t *__cdecl _wmktemp(wchar_t *_TemplateName);
cygx/p6-tinycc-resources-win64
…/io.h :371:
char *__cdecl mktemp(char *_TemplateName);
cygx/p6-tinycc-resources-win64
…/math.h :710:
template<class _Ty> inline _Ty _Pow_int(_Ty _X,int _Y) {
cygx/p6-tinycc-resources-win64
…/io_s.h :19:
_CRTIMP errno_t __cdecl _mktemp_s(char *_TemplateName,size_t _Size);
cygx/p6-tinycc-resources-win64
…/io_s.h :25:
_CRTIMP errno_t __cdecl _wmktemp_s(wchar_t *_TemplateName,size_t _SizeInWords);
cygx/p6-tinycc-resources-win64
…/tchar_s.h :94:
#define _tmktemp_s _wmktemp_s
cygx/p6-tinycc-resources-win64
…/tchar_s.h :173:
#define _tmktemp_s _mktemp_s
cygx/p6-tinycc-resources-win64
…/wchar_s.h :20:
_CRTIMP errno_t __cdecl _wmktemp_s(wchar_t *_TemplateName,size_t _SizeInWords);
cygx/p6-tinycc-resources-win64
…/stdio.h :177:
_CRTIMP char *__cdecl _tempnam(const char *_DirName,const char *_FilePrefix);
cygx/p6-tinycc-resources-win64
…/stdio.h :340:
_CRTIMP wchar_t *__cdecl _wtempnam(const wchar_t *_Directory,const wchar_t *_FilePrefix);
cygx/p6-tinycc-resources-win64
…/stdio.h :409:
char *__cdecl tempnam(const char *_Directory,const char *_FilePrefix);
cygx/p6-tinycc-resources-win64
…/stdlib.h :295:
template <typename _CountofType,size_t _SizeOfArray> char (*__countof_helper(UNALIGNED _CountofType (&_Array)[_SizeOfArray]))[_SizeOfArray];
cygx/p6-tinycc-resources-win64
…/tchar.h :345:
#define _ttempnam _wtempnam
cygx/p6-tinycc-resources-win64
…/tchar.h :363:
#define _tmktemp _wmktemp
cygx/p6-tinycc-resources-win64
…/tchar.h :683:
#define _ttempnam _tempnam
cygx/p6-tinycc-resources-win64
…/tchar.h :700:
#define _tmktemp _mktemp
cygx/p6-tinycc-resources-win64
…/wchar.h :284:
_CRTIMP wchar_t *__cdecl _wmktemp(wchar_t *_TemplateName);
cygx/p6-tinycc-resources-win64
…/wchar.h :635:
_CRTIMP wchar_t *__cdecl _wtempnam(const wchar_t *_Directory,const wchar_t *_FilePrefix);
cygx/p6-tinycc-resources-win64
…/msvcrt.def :744:
_mktemp
cygx/p6-tinycc-resources-win64
…/msvcrt.def :745:
_mktemp_s
cygx/p6-tinycc-resources-win64
…/msvcrt.def :911:
_tempnam
cygx/p6-tinycc-resources-win64
…/msvcrt.def :912:
_tempnam_dbg
cygx/p6-tinycc-resources-win64
…/msvcrt.def :1085:
_wmktemp
cygx/p6-tinycc-resources-win64
…/msvcrt.def :1086:
_wmktemp_s
cygx/p6-tinycc-resources-win64
…/msvcrt.def :1127:
_wtempnam
cygx/p6-tinycc-resources-win64
…/msvcrt.def :1128:
_wtempnam_dbg
dagurval/perl6-gd-raw
…/README.md :21:
`GD::Raw` is a low level language bindings to LibGD. It does not attempt to provide you with an perlish interface, but tries to stay as close to it's C origin as possible.
dagurval/perl6-gd-raw
…/README.pod :24:
C<GD::Raw> is a low level language bindings to LibGD. It does not attempt to
dagurval/perl6-gd-raw
…/Raw.pm :490:
C<GD::Raw> is a low level language bindings to LibGD. It does not attempt to
darrenf/p6-test-declare
…/README.md :120:
* `Test::Declare::Comparisons` - for fuzzy matching including some naive/rudimentary attempts at copying the Test::Deep interface where Perl 6 does not have it builtin.
darrenf/p6-test-declare
…/Declare.pm6 :129:
attempts at copying the L<Test::Deep|https://metacpan.org/pod/Test::Deep\> interface
dginev/perl6-Lingua-EN-Sentence
…/Sentence.pm6 :214:
Before any regex processing, quotations are hidden away and inserted after the sentences are split. That entails that no sentence splitting will be attempted between pairs of double quotes.
dginev/perl6-Lingua-EN-Sentence
…/scientific.sents :17:
We also focus on the temporal features which are related to the fluency of speech such as the ratios of pause to voiced parts, pause to unvoiced parts, ratio of voiced to unvoiced parts etc.
dginev/perl6-Lingua-EN-Sentence
…/scientific.sents :25:
This is a very important part as features are extracted on voiced and unvoiced segments separately and temporal features are mainly based on proper segmentation.
dginev/perl6-Lingua-EN-Sentence
…/scientific.txt :1:
Automatic emotion recognition from speech signal has become a major research topic in the field of Human computer Interaction (HCI) in the recent tim…
dmaestro/SQL-Lexer
…/sql-2003-2.bnf :43:
--li DECLARE LOCAL TEMPORARY TABLE <temporary table declaration>
dmaestro/SQL-Lexer
…/sql-2003-2.bnf :3225:
Define a persistent base table, a created local temporary table, or a global temporary table.
dmaestro/SQL-Lexer
…/sql-2003-2.bnf :4473:
[ <temporary table declaration>... ]
dmaestro/SQL-Lexer
…/sql-2003-2.bnf :4965:
--h3 14.13 <temporary table declaration> (p856)
dmaestro/SQL-Lexer
…/sql-2003-2.bnf :4969:
Declare a declared local temporary table.
dmaestro/SQL-Lexer
…/sql-2003-2.bnf :4972:
<temporary table declaration> ::=
dmaestro/SQL-Lexer
…/sql-2003-2.bnf :5727:
| <temporary table declaration>
dmaestro/SQL-Lexer
…/sql-2003-2.bnf :6378:
| <temporary table declaration>
dmaestro/SQL-Lexer
…/sql-2003-2.bnf :6526:
--## <tr><td> X </td><td> attempt to assign to non-updatable column </td><td> 0U </td><td> (no subclass) </td><td> 000 </td></tr>
dmaestro/SQL-Lexer
…/sql-2003-2.bnf :6527:
--## <tr><td> X </td><td> attempt to assign to ordering column </td><td> 0V </td><td> (no subclass) </td><td> 000 </td></tr>
dmaestro/SQL-Lexer
…/sql-2003-2.bnf :6602:
--## <tr><td> &nbsp; </td><td> &nbsp; </td><td> &nbsp; </td><td> prohibited SQL-statement attempted </td><td> 003 </td></tr>
dmaestro/SQL-Lexer
…/sql-2003-2.bnf :6652:
--## <tr><td> &nbsp; </td><td> &nbsp; </td><td> &nbsp; </td><td> prohibited SQL-statement attempted </td><td> 003 </td></tr>
dmaestro/SQL-Lexer
…/sql-2003-2.bnf :6667:
--## <tr><td> &nbsp; </td><td> &nbsp; </td><td> &nbsp; </td><td> attempt to return too many result sets </td><td> 00E </td></tr>
dnmfarrell/Pod-PerlTricks
…/SampleArticle.html :101:
<p>I can improve this though. So far I only test that one template. I can add that to <code>@data</code> too, and use that to make a label for the test:</p>
dnmfarrell/Pod-PerlTricks
…/SampleArticle.json :1:
{ "body" : "\"\\n\\n<p>How can I easily run the same tests on different data without duplicating a lot of code? If I follow my usual pattern, I start…
dnmfarrell/Pod-PerlTricks
…/SampleArticle.pod :97:
I can improve this though. So far I only test that one template. I can add that to C<@data> too, and use that to make a label for the test:
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :175:
// to the code generation templates and may be ignored by the template
drforr/perl6-ANTLR4
…/IDL.g4 :247:
| template_type_spec
drforr/perl6-ANTLR4
…/IDL.g4 :263:
template_type_spec
drforr/perl6-ANTLR4
…/Smalltalk.g4 :11:
sequence : temps? ws statements?;
drforr/perl6-ANTLR4
…/Smalltalk.g4 :13:
temps : PIPE (ws IDENTIFIER)+ ws PIPE;
drforr/perl6-ANTLR4
…/UCBLogo.g4 :388:
put("settemploc", 1);
drforr/perl6-ANTLR4
…/Verilog2001.g4 :365:
// spec didn't allow temp funcs.
drforr/perl6-ANTLR4
…/scala.g4 :103:
| (('new' (classTemplate | templateBody)| blockExpr | simpleExpr1 '_'?) '.') Id '=' expr
drforr/perl6-ANTLR4
…/scala.g4 :115:
('new' (classTemplate | templateBody)| blockExpr | simpleExpr1 '_'?) ;
drforr/perl6-ANTLR4
…/scala.g4 :122:
| ('new' (classTemplate | templateBody) | blockExpr ) '.' Id
drforr/perl6-ANTLR4
…/scala.g4 :123:
| ('new' (classTemplate | templateBody) | blockExpr ) typeArgs
drforr/perl6-ANTLR4
…/scala.g4 :231:
templateBody : Nl? '{' selfType? templateStat (Semi templateStat)* '}' ;
drforr/perl6-ANTLR4
…/scala.g4 :233:
templateStat : import_
drforr/perl6-ANTLR4
…/scala.g4 :296:
classTemplateOpt : 'extends' classTemplate | ('extends'? templateBody)? ;
drforr/perl6-ANTLR4
…/scala.g4 :298:
traitTemplateOpt : 'extends' traitTemplate | ('extends'? templateBody)? ;
drforr/perl6-ANTLR4
…/scala.g4 :300:
classTemplate : earlyDefs? classParents templateBody? ;
drforr/perl6-ANTLR4
…/scala.g4 :302:
traitTemplate : earlyDefs? traitParents templateBody? ;
drforr/perl6-ANTLR4
…/vhdl.g4 :299:
| group_template_declaration
drforr/perl6-ANTLR4
…/vhdl.g4 :604:
| group_template_declaration
drforr/perl6-ANTLR4
…/vhdl.g4 :746:
group_template_declaration
drforr/perl6-ANTLR4
…/vhdl.g4 :1008:
| group_template_declaration
drforr/perl6-ANTLR4
…/vhdl.g4 :1036:
| group_template_declaration
drforr/perl6-ANTLR4
…/vhdl.g4 :1099:
| group_template_declaration
drforr/perl6-ANTLR4
…/vhdl.g4 :1131:
| group_template_declaration
drforr/perl6-ANTLR4
…/vhdl.g4 :1407:
| group_template_declaration
drforr/perl6-ANTLR4
…/Perl6.pm6 :157:
#method prequelConstruct - gave up temporarily on using tat.
drforr/perl6-ANTLR4
…/Parser.pm6 :326:
# to the code generation templates and may be ignored by the template
drforr/perl6-Marpa
…/Marpa.pm6 :386:
Once set to a value with the marpa_g_symbol_is_terminal_set() method, the terminal status of a symbol is “locked” at that value. A subsequent c…
drforr/perl6-Marpa
…/Marpa.pm6 :388:
By default, a symbol is a terminal if and only if it does not appear on the LHS of any rule. An attempt to flag a nulling symbol as a terminal will cause a failure, but this is not necessarily detected before precomputation.
drforr/perl6-Marpa
…/Marpa.pm6 :607:
The LHS symbol cannot be the LHS of any other rule, whether a BNF rule or a sequence rule. On an attempt to create an sequence rule with a duplicate LHS, marpa_g_sequence_new() fails, setting the error code to MARPA-ERR-SEQUENCE-LHS-NOT-UNIQUE.
drforr/perl6-Marpa
…/Marpa.pm6 :704:
Symbol completion events are active by default if the symbol was set up for completion events in the grammar. If a symbol was not set up for completion events in the grammar, symbol completion events are inactive by default and any attempt to change that is a fatal error.
drforr/perl6-Marpa
…/Marpa.pm6 :723:
Symbol nulled events are active by default if the symbol was set up for nulled events in the grammar. If a symbol was not set up for nulled events in the grammar, symbol nulled events are inactive by default and any attempt to change that is a fatal error.
drforr/perl6-Marpa
…/Marpa.pm6 :741:
Symbol prediction events are active by default if the symbol was set up for prediction events in the grammar. If a symbol was not set up for prediction events in the grammar, symbol prediction events are inactive by default and any attempt to change that is a fatal error.
drforr/perl6-Marpa
…/Marpa.pm6 :984:
The error codes MARPA-ERR-DUPLICATE-TOKEN, MARPA-ERR-NO-TOKEN-EXPECTED-HERE and MARPA-ERR-INACCESSIBLE-TOKEN also leave the recognizer in a ful…
drforr/perl6-Marpa
…/Marpa.pm6 :1142:
Symbol completion events are active by default if the symbol was set up for completion events in the grammar. If a symbol was not set up for completion events in the grammar, symbol completion events are inactive by default and any attempt to change that is a fatal error.
drforr/perl6-Marpa
…/Marpa.pm6 :1186:
By default, the “expected symbol event bit” is 0. It is an error to attempt to set the “expected symbol event bit” to 1 for a nulling symbol, an inaccessible symbol, or an unproductive symbol.
drforr/perl6-Marpa
…/Marpa.pm6 :1216:
Symbol nulled events are active by default if the symbol was set up for nulled events in the grammar. If a symbol was not set up for nulled events in the grammar, symbol nulled events are inactive by default and any attempt to change that is a fatal error.
drforr/perl6-Marpa
…/Marpa.pm6 :1233:
Symbol prediction events are active by default if the symbol was set up for prediction events in the grammar. If a symbol was not set up for prediction events in the grammar, symbol prediction events are inactive by default and any attempt to change that is a fatal error.
drforr/perl6-Marpa
…/Marpa.pm6 :1807:
#|{ These methods, respectively, set and query the valued status of symbol sym_id. marpa_v_symbol_is_valued_set() will set the valued status to the…
drforr/perl6-Marpa
…/Marpa.pm6 :1831:
A valued status of 1 indicates that the symbol is valued. A valued status of 0 indicates that the symbol is unvalued. If the valued status is locked, an attempt to change to a status different from the current one will fail (error code MARPA-ERR-VALUED-IS-LOCKED).
drforr/perl6-Perl6-Parser
…/README.md :112:
Look down in this file for a `assert-hash-keys()` call attempting to assert the existence of exactly a `infix` and `OPER` tag. There may actually be other hash keys in this data structure, as `.dump()` doesn't report unused hash keys; this caused me a deal of confusion.
drforr/perl6-Perl6-Parser
…/Parser.pm6 :113:
Look down in this file for a C<assert-hash-keys()> call attempting to assert the existence of exactly a C<infix> and C<OPER> tag. There may actually be other hash keys in this data structure, as C<.dump()> doesn't report unused hash keys; this caused me a deal of confusion.
drforr/perl6-Perl6-Parser
…/Factory.pm6 :4561:
my Str $temp = $_.Str.substr(
drforr/perl6-Perl6-Parser
…/Factory.pm6 :4564:
if $temp ~~ m{ ^ ( \s+ ) (';') } {
drforr/perl6-Perl6-Parser
…/Factory.pm6 :6699:
my Str $temp = $p.Str.substr(
drforr/perl6-Perl6-Parser
…/Factory.pm6 :6702:
if $temp ~~ m{ ^ (';') ( \s* ) } {
drforr/perl6-Perl6-Parser
…/16-quote.t :17:
# The code uses symmetric RE's to parse, and the temptation to reuse the first
drforr/perl6-Perl6-Parser
…/19-operators.t :1318:
# XXX 'temp$a' is illegal (weird.)
drforr/perl6-Perl6-Parser
…/19-operators.t :1326:
my $a; temp $a
drforr/perl6-Perl6-Parser
…/19-operators.t :1333:
}, Q{temp};
drforr/perl6-Perl6-Parser
…/rosetta-1.t :90:
my $temp = @c[$ym;$yd];
drforr/perl6-Perl6-Parser
…/rosetta-1.t :92:
@c[$xm;$xd] = $temp;
drforr/perl6-readline
…/Readline.pm :44:
While I'd prefer to use L<LibraryCheck>'s technique of just attempting to link to a library, it doesn't seem to work inside of the C<is nat…
drforr/perl6-readline
…/Readline.pm :2242:
# that also attempts to call any calling application's SIGWINCH signal
drforr/perl6-readline
…/Readline.pm :2284:
#extern rl_completion_func_t *rl_attempted_completion_function;
drforr/perl6-readline
…/Readline.pm :2403:
# before completion is attempted, so the embedded quotes do not interfere
drforr/perl6-readline
…/Readline.pm :2417:
#extern int rl_attempted_completion_over;
drforr/perl6-readline
…/Readline.pm :2419:
# Set to a character describing the type of completion being attempted by
drforr/perl6-readline
…/Readline.pm :2481:
# If this is non-zero, completion is (temporarily) inhibited, and the
edumentab/p6-moarvm-remote
…/Remote.pm6 :58:
has $.attempted;
edumentab/p6-moarvm-remote
…/Remote.pm6 :61:
"Something went wrong in communicating with the server while trying to $.attempted"
edumentab/p6-moarvm-remote
…/Remote.pm6 :175:
die X::MoarVM::Remote::ProtocolError.new(attempted => "receiving the greeting - and only the greeting");
erickjordan/perl6-Parse-STDF
…/README.md :11:
Parse::STDF is a first attempt. It is an object oriented module containing methods which invoke APIs of
erickjordan/perl6-Parse-STDF
…/STDF.pm6 :168:
Parse::STDF is a first attempt. It is an object oriented module containing methods which invoke APIs of
finanalyst/p6-inform
…/Informative.pm6 :224:
# Each load-* function just attempts to call a non-existing symbol in the
finanalyst/p6-task-popular
…/README.md :32:
| File::Temp | 25.91 | Create temporary files & directories |
finanalyst/p6-task-popular
…/README.md :45:
| LibraryMake | 11.96 | An attempt to simplify native compilation |
finanalyst/pod-cached
…/design_proposal.md :37:
- a mixture of hard-coded html generation, and few templates
finanalyst/pod-cached
…/design_proposal.md :100:
- Create a Rendering modules to replace all HTML generation with templates, using Mustache
finanalyst/pod-cached
…/Cached.pm6 :114:
There is a compiled source in the cache with an added date *before* the modified date and there has been an attempt to add the source to cache that did not compile
finanalyst/pod-cached
…/Cached.pm6 :116:
There is not a compiled source in the cache, but there has been an attempt to add the source name to the cache that did not compile
finanalyst/pod-cached
…/Cached.pm6 :340:
die "Attempt to obtain non-existent POD for <$source-name>. Is the source new and failed to compile? Has the cache been updated?"
finanalyst/pod-render
…/README.md :3:
output based on templates. To the extent possible, all rendering specific (eg. html)
finanalyst/pod-render
…/README.md :4:
code is moved to templates.
finanalyst/pod-render
…/README.md :20:
:templates<path-to-templates>,
finanalyst/pod-render
…/README.md :42:
$renderer.templates-changed;
finanalyst/pod-render
…/README.md :43:
$renderer.gen-templates;
finanalyst/pod-render
…/README.md :55:
- sets up templates from default or over-riding directory
finanalyst/pod-render
…/README.md :61:
## :templates
finanalyst/pod-render
…/README.md :62:
- location of templates root directory
finanalyst/pod-render
…/README.md :63:
- defaults to 'resources/templates', which is where a complete set of templates exists
finanalyst/pod-render
…/README.md :67:
- default is html, and refers to `templates/html` in which a complete set of templates exists
finanalyst/pod-render
…/README.md :68:
- any other valid directory name can be used, eg md, so long as `templates/md` contains
finanalyst/pod-render
…/README.md :69:
a complete set of templates
finanalyst/pod-render
…/README.md :71:
>It is possible to specify the template/rendering options with only those templates that
finanalyst/pod-render
…/README.md :142:
All of the rendering is done via mustache templates.
finanalyst/pod-render
…/README.md :144:
Each template can be over-ridden individually by setting the `:templates` option to a directory and placing the mustache file there.
finanalyst/pod-render
…/README.md :146:
Typically, the template `source-wrap.mustache` will be over-ridden in order to provide links to custom css, js, and image files.
finanalyst/pod-render
…/README.md :148:
The source-wrap template is called with the following elements:
finanalyst/pod-render
…/README.md :158:
In order to see all the templates, instantiate a Render object pointing to a template directory, and run the `gen-templates` method.
finanalyst/pod-render
…/README.md :159:
The templates `toc` and `index` may need tweaking for custom Table of Contents and Index (local index to the source) rendering.
finanalyst/pod-render
…/README.md :178:
templates.
finanalyst/pod-render
…/README.md :190:
be `md` if the rendering is to Markdown and templates are provided.
finanalyst/pod-render
…/README.md :195:
The indexation files are rendered using the templates `indexation-file` and `global-indexation-file`, respectively.
finanalyst/pod-render
…/README.md :196:
These templates can be over-ridden as required.
finanalyst/pod-render
…/README.md :206:
- edit templates to customise content
finanalyst/pod-render
…/README.md :217:
## templates-changed
finanalyst/pod-render
…/README.md :219:
- Generates a list of template names that have been over-ridden.
finanalyst/pod-render
…/README.md :221:
## gen-templates
finanalyst/pod-render
…/README.md :223:
- 'templates/rendering' is interpreted as a directory, which must exist. All the mustache templates will be copied into it.
finanalyst/pod-render
…/README.md :225:
- Only the templates required may be kept. Some templates, such as `zero` do not need to be over-ridden as there is no rendering data.
finanalyst/pod-render
…/README.md :231:
- the two index files `index.yaml` and `global-index.yaml` are generated in that directory. The intent is to provide templates for customised config files. For more information generate a template.
finanalyst/pod-render
…/README.md :235:
- The index files themselves are generated using the `indexation-file`/`global-indexation-file` templates
finanalyst/pod-render
…/Engine.pm6 :4:
constant TEMPLATES = "templates";
finanalyst/pod-render
…/Engine.pm6 :9:
has %.tmpl = tmpl-data; # templates as strings defined at bottom. All can be over-ridden with mustache files
finanalyst/pod-render
…/Engine.pm6 :18:
# list of the templates needed (not defined as short templates below)
finanalyst/pod-render
…/Engine.pm6 :19:
has @!template-list = %!tmpl.keys;
finanalyst/pod-render
…/Engine.pm6 :22:
submethod BUILD( :$templates = Str, :$rendering = Str, :$!verbose = False, :$!debug = False ) {
finanalyst/pod-render
…/Engine.pm6 :23:
$!tmpls-given = so ($templates or $rendering );
finanalyst/pod-render
…/Engine.pm6 :25:
$!t-dir = ( $templates // TEMPLATES ) ~ "/$!rendering";
finanalyst/pod-render
…/Engine.pm6 :39:
note "Using customised templates: ", @!over-ridden ?? ("\n\t" ~ @!over-ridden.join("\n\t")) !! 'None' if $!verbose;
finanalyst/pod-render
…/Engine.pm6 :50:
say "end template";
finanalyst/pod-render
…/Engine.pm6 :53:
die "Cannot process non-existent template 「$key」" unless %!tmpl{$key}:exists;
finanalyst/pod-render
…/Engine.pm6 :57:
method gen-templates {
finanalyst/pod-render
…/Engine.pm6 :538:
var temporaryDistance=Math.max(c1,c2)-lcss+trans;
finanalyst/pod-render
…/Engine.pm6 :539:
if (temporaryDistance>=maxDistance) return Math.round(temporaryDistance);
finanalyst/pod-render
…/Processed.pm6 :161:
note "At $?LINE rendering with template 「list」 list level $in-level" if $!debug;
finanalyst/pod-render
…/Processed.pm6 :165:
note "At $?LINE rendering with template 「list」 list level $in-level" if $!debug;
finanalyst/pod-render
…/Processed.pm6 :170:
note "At $?LINE rendering with template 「$key」 list level $in-level" if $!debug;
finanalyst/pod-render
…/Render.pm6 :8:
output based on templates. To the extent possible, all rendering specific (eg. html)
finanalyst/pod-render
…/Render.pm6 :9:
code is moved to templates.
finanalyst/pod-render
…/Render.pm6 :19:
:templates<path-to-templates>,
finanalyst/pod-render
…/Render.pm6 :42:
$renderer.templates-changed;
finanalyst/pod-render
…/Render.pm6 :43:
$renderer.gen-templates;
finanalyst/pod-render
…/Render.pm6 :62:
=item2 sets up templates from default or over-riding directory
finanalyst/pod-render
…/Render.pm6 :68:
=item :templates
finanalyst/pod-render
…/Render.pm6 :69:
=item2 location of templates root directory
finanalyst/pod-render
…/Render.pm6 :70:
=item2 defaults to C<resources/templates>, which is where a complete set of templates exists
finanalyst/pod-render
…/Render.pm6 :74:
=item2 default is html, and refers to templates/html in which a complete set of templates exists
finanalyst/pod-render
…/Render.pm6 :75:
=item2 any other valid directory name can be used, eg md, so long as templates/md contains a complete set of templates
finanalyst/pod-render
…/Render.pm6 :76:
=item2 Individual templates can be over-ridden by providing it in the templates/html directory
finanalyst/pod-render
…/Render.pm6 :154:
All of the rendering is done via mustache templates.
finanalyst/pod-render
…/Render.pm6 :156:
Each template can be over-ridden individually by setting the C<:templates> option to a directory and placing the mustache file there.
finanalyst/pod-render
…/Render.pm6 :158:
Typically, the template C<source-wrap.mustache> will be over-ridden in order to provide links to custom css, js, and image files.
finanalyst/pod-render
…/Render.pm6 :160:
The source-wrap template is called with the following elements:
finanalyst/pod-render
…/Render.pm6 :171:
In order to see all the templates, instantiate a Render object pointing to a template directory, and run the C<gen-templates> method.
finanalyst/pod-render
…/Render.pm6 :172:
The templates C<toc> and C<index> may need tweaking for custom Table of Contents and Index (local index to the source) rendering.
finanalyst/pod-render
…/Render.pm6 :191:
templates.
finanalyst/pod-render
…/Render.pm6 :203:
be C<md> if the rendering is to Markdown and templates are provided.
finanalyst/pod-render
…/Render.pm6 :208:
The indexation files are rendered using the templates C<indexation-file> and C<global-indexation-file>, respectively.
finanalyst/pod-render
…/Render.pm6 :209:
These templates can be over-ridden as required.
finanalyst/pod-render
…/Render.pm6 :219:
=item edit templates to customise content
finanalyst/pod-render
…/Render.pm6 :228:
=item templates-changed
finanalyst/pod-render
…/Render.pm6 :229:
=item2 Generates a list of template names that have been over-ridden.
finanalyst/pod-render
…/Render.pm6 :231:
=item gen-templates
finanalyst/pod-render
…/Render.pm6 :232:
=item2 'templates/rendering' is interpreted as a directory, which must exist. All the mustache templates will be copied into it.
finanalyst/pod-render
…/Render.pm6 :233:
=item2 Only the templates required may be kept. Some templates, such as C<zero> do not need to be over-ridden as there is no rendering data.
finanalyst/pod-render
…/Render.pm6 :238:
the two index files C<index.yaml> and C<global-index.yaml> are generated in that directory. The intent is to provide templates for
finanalyst/pod-render
…/Render.pm6 :239:
customised config files. For more information generate a template.
finanalyst/pod-render
…/Render.pm6 :242:
=item2 The index files themselves are generated using the C<indexation-file>/C<global-indexation-file> templates
finanalyst/pod-render
…/Render.pm6 :290:
:$templates = Str,
finanalyst/pod-render
…/Render.pm6 :300:
$!engine .= new(:$templates, :$rendering,:$!verbose);
finanalyst/pod-render
…/Render.pm6 :310:
method gen-templates {
finanalyst/pod-render
…/Render.pm6 :311:
$!engine.gen-templates
finanalyst/pod-render
…/Render.pm6 :443:
method templates-changed {
finanalyst/pod-render
…/Render.pm6 :839:
# This file is generated with the intent that it can be a template for customised
finanalyst/pod-render
…/Render.pm6 :841:
# Styling and presentation information should be contained in the template
finanalyst/pod-render
…/Render.pm6 :843:
# The indexation-file template should typically be over-ridden.
finanalyst/pod-render
…/Render.pm6 :876:
# This file is generated with the intent that it can be a template for customised
finanalyst/pod-render
…/Render.pm6 :878:
# Styling and presentation information should be contained in the template
finanalyst/pod-render
…/Render.pm6 :880:
# The global-indexation-file template should typically be over-ridden for custom css and js
finanalyst/pod-render
…/Render.pm6 :909:
# The indexation-file template should typically be over-ridden.
finanalyst/pod-render
…/030-templates.t :8:
#temp $*CWD = 't/';
finanalyst/pod-render
…/030-templates.t :12:
constant TEMPL = 't/tmp/templates';
finanalyst/pod-render
…/030-templates.t :18:
diag "templates";
finanalyst/pod-render
…/030-templates.t :20:
my $fn = 'templates-test-pod-file_0';
finanalyst/pod-render
…/030-templates.t :24:
my PodCache::Render $renderer .= new(:path(REP), :templates( TEMPL ), :output( OUTPUT ));
finanalyst/pod-render
…/030-templates.t :30:
/, 'Para template over-ridden';
finanalyst/pod-render
…/030-templates.t :33:
like $renderer.templates-changed, / 'para' .+ 'from' .* {TEMPL} '/html' /, 'reports over-ridden template';
finanalyst/pod-render
…/030-templates.t :36:
lives-ok {$renderer.gen-templates}, 'gen-templates lives';
finanalyst/pod-render
…/030-templates.t :39:
is +(TEMPL ~ '/html').IO.dir, +$renderer.engine.tmpl, 'correct number of template files generated';
fjwhittle/p6-Path-Map
…/README.md :71:
The path template should be a string comprising slash-delimited path segments, where a path segment may contain any character other than th…
fjwhittle/p6-Path-Map
…/README.md :73:
For example, these are all identical path templates:
fjwhittle/p6-Path-Map
…/README.md :81:
The order in which templates are added will affect the lookup only when a named segment has differing keys, Thus:
fjwhittle/p6-Path-Map
…/README.md :111:
Templates containing a segment consisting entirely of `'*'` match instantly at that point, with all remaining segments assigned to the `values` of th…
fjwhittle/p6-Path-Map
…/README.md :144:
Returns a `Path::Map::Match` object if the path matches a known template.
fjwhittle/p6-Path-Map
…/Map.pm6 :140:
The path template should be a string comprising slash-delimited path segments,
fjwhittle/p6-Path-Map
…/Map.pm6 :146:
For example, these are all identical path templates:
fjwhittle/p6-Path-Map
…/Map.pm6 :152:
The order in which templates are added will affect the lookup only when a named
fjwhittle/p6-Path-Map
…/Map.pm6 :178:
template are ignored, so it only makes sense for the wildcard to be the last
fjwhittle/p6-Path-Map
…/Map.pm6 :252:
#| Returns a C<Path::Map::Match> object if the path matches a known template.
gfldex/perl6-meta6-bin
…/bin.pm6 :339:
temp $github-user = $github-token ?? $github-user ~ ':' ~ $github-token !! $github-user;
gfldex/perl6-meta6-bin
…/bin.pm6 :361:
temp $github-user = $github-token ?? $github-user ~ ':' ~ $github-token !! $github-user;
gfldex/perl6-meta6-bin
…/bin.pm6 :381:
temp $github-user = $github-token ?? $github-user ~ ':' ~ $github-token !! $github-user;
gfldex/perl6-meta6-bin
…/bin.pm6 :399:
temp $github-user = $github-token ?? $github-user ~ ':' ~ $github-token !! $github-user;
gfldex/perl6-meta6-bin
…/bin.pm6 :419:
temp $github-user = $github-token ?? $github-user ~ ':' ~ $github-token !! $github-user;
gfldex/perl6-meta6-bin
…/bin.pm6 :423:
loop (my $attempt = 1; $attempt ≤ 3; $attempt++) {
gfldex/perl6-meta6-bin
…/bin.pm6 :431:
note RED ($attempt < 3) ?? "Github timed out, trying again $attempt/3." !! "Github timed out, giving up.";
gfldex/perl6-meta6-bin
…/bin.pm6 :432:
next if $attempt < 3;
gfldex/perl6-typesafe-xhtml-writer
…/generate-function-definition.p6 :53:
(temp \$indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :9:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :28:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :48:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :67:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :84:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :107:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :146:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :169:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :190:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :222:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :256:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :288:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :320:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :352:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :384:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :416:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :448:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :480:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :512:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :544:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :576:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :608:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :640:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :672:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :704:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :736:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :768:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :801:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :834:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :868:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :902:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :947:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :979:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1011:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1030:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1062:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1094:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1126:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1158:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1190:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1222:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1254:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1286:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1318:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1350:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1383:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1415:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1447:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1479:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1511:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1543:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1575:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1607:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1652:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1672:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1711:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1744:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1785:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1824:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1860:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1910:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1950:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :1984:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :2020:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :2063:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :2095:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :2128:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :2168:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :2207:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :2239:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :2275:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :2311:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :2347:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :2385:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :2423:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :2459:
(temp $indent)+=2;
gfldex/perl6-typesafe-xhtml-writer
…/Writer.pm6 :2501:
(temp $indent)+=2;
gfldex/perl6-xhtml-writer
…/generate-function-definition.p6 :49:
(temp $indent)+=2;
goneri/p6-Email-Notmuch
…/LICENSE :410:
provided under this License. Any attempt otherwise to propagate or
goneri/p6-Email-Notmuch
…/01_api.t :31:
my $test_dir
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment