Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created July 27, 2019 03:30
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/d2a13b0429de300da48b1ff53ce0352b to your computer and use it in GitHub Desktop.
Save Whateverable/d2a13b0429de300da48b1ff53ce0352b to your computer and use it in GitHub Desktop.
greppable6
temp.*\$
File Code
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());
AZAWAWI/Inline-Go
…/Go.pm6 :70:
$!temp-dir.add( "foo.c" ).IO.spurt( $foo_c_workaround, :createonly );
AZAWAWI/MagickWand
…/MagickWand.pm6 :143:
MagickAddImage($temp-wand, $wand.handle);
AZAWAWI/MagickWand
…/MagickWand.pm6 :335:
MagickAddImage($temp-wand, $wand.handle);
AZAWAWI/MagickWand
…/02-magickwand.t :33:
$temp-file-name.IO.unlink if $temp-file-name.defined;
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;
ELIZABETH/Acme-Cow
…/cowpm :23:
print Acme::Cow.process_template($template, name => $name.lc, NAME => $name.tc);
ELIZABETH/Acme-Cow
…/Cow.pm6 :60:
method process_template($text, *%mapper) {
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 :28:
die "Attempt to delete $type key '$key' from a restricted hash"
ELIZABETH/P5pack
…/README.md :156:
packed long, and the template "$t X[$t] $t" unpacks twice
ELIZABETH/P5pack
…/README.md :585:
@utmp2 = unpack($utmp_template, $utmp);
ELIZABETH/P5pack
…/P5pack.pm6 :39:
my sub parse-pack-template($template) {
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 :90:
%parsed-templates.AT-KEY($template)
ELIZABETH/P5pack
…/P5pack.pm6 :91:
// %parsed-templates.BIND-KEY($template,parse($template))
ELIZABETH/P5pack
…/P5pack.pm6 :97:
my @template := parse-pack-template($template);
ELIZABETH/P5pack
…/P5pack.pm6 :232:
for @template -> $todo {
ELIZABETH/P5pack
…/P5pack.pm6 :242:
my @template := parse-pack-template($template);
ELIZABETH/P5pack
…/P5pack.pm6 :400:
for @template -> $todo {
ELIZABETH/P5pack
…/P5pack.pm6 :559:
packed long, and the template "$t X[$t] $t" unpacks twice
ELIZABETH/P5pack
…/P5pack.pm6 :988:
@utmp2 = unpack($utmp_template, $utmp);
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/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.
FCO/Red
…/Model.pm6 :229:
method temp(|) is rw { $!temporary }
HANENKAMP/AWS-Session
…/Changes :3:
* Second attempt to fix type problems in assigning $!token from the
HANENKAMP/AWS-Session
…/Session.pm6 :28:
my $attempts = $session.metadata-service-num-attempts;
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 :22:
elsif $temporary ~~ Bool { $status = 307 }
HANENKAMP/Path-Router
…/Router.pm6 :162:
debug("> Attempting to match ", $route.path, " to (", @keys.join(" / "), ")");
HANENKAMP/Smack
…/URLMap.pm6 :91:
# temp %env<PATH_INFO> = $path;
HANENKAMP/Smack
…/URLMap.pm6 :92:
# temp %env<SCRIPT_NAME> = $script-name ~ $location;
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 :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 temp…
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 :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
…/Anti.pm6 :254:
sub anti-template(&process?, Str:D :$source!, Template::Anti::Format :$format = DOM) returns Routine:D
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 tem…
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 :475:
die qq[no template source file named "$template" found];
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 :507:
%!template-cache{$template} //= self.build($template);
HANENKAMP/Template-Anti
…/Anti.pm6 :508:
my &process = %!template-cache{$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 :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
…/Template.pm6 :38:
<script type="text/x-perl6" data-template="$anti">
HANENKAMP/Template-Anti
…/Template.pm6 :276:
return 'Template::Anti::Template.new(template => from-xml("' ~ $!template.Str.trans([ '"' ] => [ "\"" ]) ~ '"))';
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
…/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;
JDV/Data-Selector
…/03-apply_tree.t :94:
my $data_tree_temp = EVAL $data_tree.perl;
JDV/Data-Selector
…/03-apply_tree.t :104:
my $data_tree_temp = EVAL $data_tree.perl;
JGOFF/Perl6-Parser
…/Factory.pm6 :4561:
my Str $temp = $_.Str.substr(
JGOFF/Perl6-Parser
…/Factory.pm6 :6699:
my Str $temp = $p.Str.substr(
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
…/rosetta-1.t :90:
my $temp = @c[$ym;$yd];
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` is defined, it is used instead of creating a temporary file. The file used (temporary or not) are deleted afterwards unless `:keep` is provided.
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;
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) {
JNTHN/Concurrent-Trie
…/Trie.pm6 :53:
# update attempt and not bump $!elems.
JNTHN/Cro-HTTP
…/Router.pm6 :783:
multi redirect(Str() $location, :$temporary, :$permanent, :$see-other --> Nil) {
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 :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 :413:
:@parameters, :template-segments($op.template-segments),
JNTHN/Cro-OpenAPI-RoutesFromDefinition
…/Checkers.pm6 :225:
with @template-segments.first(:k, '{' ~ $param.name ~ '}') -> $index {
JNTHN/JSON-Schema
…/Schema.pm6 :40:
uri-template => { so try Cro::Uri::URI-Template.parse($_) },
JNTHN/OpenAPI-Schema-Validate
…/Validate.pm6 :41:
uri-template => { Cro::Uri::URI-Template.parse($_) },
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 :62:
conk "Couldn't find template '$service-type'. Available templates:\n" ~
JNTHN/cro
…/CLI.pm6 :74:
for @template-options -> $opt {
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
…/LinkTemplate.pm6 :44:
my $gl-template = @link-templates.grep(*.protocol eq $endpoint.protocol)[0];
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 :40:
push @templates, $_;
JNTHN/cro
…/Web.pm6 :220:
for @templates -> $_ {
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 :74982:
var component = (_temp = _class = function (_React$Component) {
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
…/tools-runner.t :9:
my $temp-dir = "$*TMPDIR/cro-test-{(0..9).roll(40).join}";
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}";
JSTOWE/Audio-Liquidsoap
…/Liquidsoap.pm :906:
multi sub meta-value('temporary', Str:D $value) {
JSTOWE/CheckSocket
…/CheckSocket.pm :34:
This attempts to connect to the socket specified by $port and $host and
JSTOWE/CheckSocket
…/CheckSocket.pm :45:
This attempts to connects to the socket specified by $port and $host
JSTOWE/Lumberjack-Application
…/Index.pm :56:
$!template.add-provider('resources', $provider);
JSTOWE/Lumberjack-Application
…/Index.pm :61:
my $html = $!template.process('index', ws-url => $!ws-url);
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
…/020-template.t :21:
lives-ok { $template.add-provider('resources', $provider) }, "add the provider";
JSTOWE/Oyatul
…/Oyatul.pm :284:
method template-for-purpose (Oyatul::Parent: Str $purpose --> Oyatul::Template)
JSTOWE/Oyatul
…/Oyatul.pm :390:
method is-template ($?CLASS:)
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 :685:
for self.all-templates -> $template {
JSTOWE/Oyatul
…/030-detail.t :27:
lives-ok { $view-template = $layout.template-for-purpose('view') } , "template-for-purpose";
JSTOWE/URI-Template
…/Template.pm :554:
my $match = URI::Template::Grammar.parse($!template, :$actions);
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 :71:
ok my $res = URI::Template::Grammar.parse($template, :$actions), "matched '$template'";
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 :27:
my $ut = URI::Template.new(template => $test[0]);
JSTOWE/URI-Template
…/050-extended-tests.t :26:
my $ut = URI::Template.new(template => $test[0]);
KAJI/App-Platform
…/Container.pm6 :149:
temp $path = $path.IO.dirname;
KUERBIS/Term-Choose
…/Choose.pm6 :976:
@temp_idx.push( @rearranged_idx[$col][$row] );
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.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
…/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-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
…/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
…/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 :285:
| template-create | create template | `template-create($path,%args)`| templater |
MELEZHIK/Sparrowdo
…/Systemd.pm6 :30:
template-create "/etc/systemd/system/$name.service", %(
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 :23:
sub template ( $target , %opts = %() ) is export { template-create $target, %opts }
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
…/090_autodump.t :20:
temp $log.autodump = True;
MOZNION/Router-Boost
…/Boost.pm6 :132:
temp $!_PAREN-CNT = 0;
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/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', ${
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 :13:
my ($filename,$filehandle) = tempfile(:tempdir($base_dir));
SACOMO/Uzu
…/CLI.pm6 :127:
if $template_engine && $template_engine !~~ 'mustache'|'tt' {
SACOMO/Uzu
…/CLI.pm6 :155:
template_engine => $template_engine||'mustache' {
SACOMO/Uzu
…/Config.pm6 :9:
@template_dirs.grep({ !$_.IO.e }).&{
SACOMO/Uzu
…/Config.pm6 :311:
template_engine => $template_engine;
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 :340:
?? "{$template_engine}/{$root}/default/{$file}.{$template_engine}"
SACOMO/Uzu
…/Config.pm6 :341:
!! "{$template_engine}/{$root}/{$file}.{$template_engine}";
SACOMO/Uzu
…/Render.pm6 :108:
multi sub inject-linked-pages($p, :$template_engine, :&expand-linked-pages) {$p}
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 :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 :255:
logger "Invalid template yaml [$path]";
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 :383:
template_name => "{$partial_name}_{$embedded_partial_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 :432:
$t6.add-template: $template_name, $content;
SACOMO/Uzu
…/Render.pm6 :435:
$t6.add-template: $template_name, $t6.process($template_name, |%context);
SACOMO/Uzu
…/Render.pm6 :476:
my @layout_partials = partial-names $template_engine, $layout_template;
SACOMO/Uzu
…/Render.pm6 :542:
template_engine => $template_engine,
SACOMO/Uzu
…/Render.pm6 :578:
template_name => "{$page_name}_{$partial_name}",
SACOMO/Uzu
…/Render.pm6 :616:
template_name => "{$page_name}_",
SACOMO/Uzu
…/Render.pm6 :625:
template_name => "{$page_name}_",
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 :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]";
SAMGWISE/ScaleVec
…/Intervalic.pm6 :95:
temp $_ = self;
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 :61:
temp %*ENV = ( SIMPLE_ARRAY => $value );
SKAJI/App-Mi6
…/Mi6.pm6 :41:
chdir($main-dir); # XXX temp $*CWD
SKAJI/App-Mi6
…/Template.pm6 :3:
our sub template(:$module, :$module-file, :$dist, :$author, :$cpanid, :$email, :$year) {
SKAJI/HTTP-Tinyish
…/FileTempFactory.pm6 :7:
method tempfile(Bool :$unlink = True) {
SKAJI/HTTP-Tinyish
…/FileTempFactory.pm6 :9:
@!tempfile.push( ($file, $fh) ) if $unlink;
SKAJI/HTTP-Tinyish
…/FileTempFactory.pm6 :14:
for @!tempfile -> ($file, $fh) {
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :197:
$!input //= self!create-temp-buffer($!content-length);
TOKUHIROM/HTTP-Server-Tiny
…/Tiny.pm6 :399:
method !create-temp-buffer($len) {
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 :61:
vim => template("vim-line/$config<style><indent>", context => $config<style>).trim-trailing,
TYIL/App-Assixt
…/Lib.pm6 :73:
template($template, $path, :%context);
TYIL/App-Assixt
…/Meta.pm6 :32:
my Str $template = %files{$type};
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
…/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 :75:
Unrecognized template type "$(type)". Read the documentation on $(docs) to
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/Dist-Helper
…/Template.pm6 :14:
my Str $absolute = "templates/$template";
TYIL/Dist-Helper
…/Template.pm6 :31:
spurt($destination, template($template, :%context));
TYIL/Dist-Helper
…/Template.pm6 :40:
template($template, $destination.IO, :%context, :$clobber);
UFOBAT/Bailador
…/README.md :32:
- `template(Str $template-name, *@params)`
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 :360:
template 'template.tt', $name, $something;
UFOBAT/Bailador
…/README.md :377:
template 'template.tt', layout => 'main', $name, $something;
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
…/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 :69:
$content = $!renderer.render($layout-template, $content);;
UFOBAT/Bailador
…/App.pm :383:
$err-page = $error-template.render($_, self.request());
UFOBAT/Bailador
…/Gradual.pm :82:
return template($file)
UFOBAT/Bailador
…/Log.pm :100:
template-format => $log-config<template-format> // Nil,
UFOBAT/Bailador
…/Formatter.pm :18:
if $!template-format && $!format {
UFOBAT/Bailador
…/Formatter.pm :41:
die "Unknown value for 'template-format' ($!template-format)"
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
…/app.pl6 :7:
template 'index.html', { version => $version }
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
…/13-configuration.t :118:
temp %*ENV<BAILADOR_CONFIGDIR> = $*PROGRAM.parent.child("config").absolute;
UFOBAT/Bailador
…/13-configuration.t :148:
temp %*ENV<BAILADOR_CONFIGFILE> = $*PROGRAM.parent.child("config").child('config.yaml').absolute;
UFOBAT/Bailador
…/20-cli.t :117:
# temp %*ENV<PERL6LIB> = join(':', "$git_dir/lib", |get-path-from-repo());
UFOBAT/Temp-Path
…/README.md :31:
temp $*TMPDIR = make-temp-dir :chmod<0o700>;
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
…/path.p6 :21:
temp $*TMPDIR = make-temp-dir :chmod<700>;
UFOBAT/Temp-Path
…/Path.pm6 :101:
temp $*TMPDIR = make-temp-dir :chmod<0o700>;
UFOBAT/Temp-Path
…/Path.pm6 :167:
sub term:<make-temp-dir> (Int :$chmod, Str() :$prefix = '', Str() :$suffix = '' --> IO::Path:D)
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 :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 :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 :9:
with make-temp-dir { is $_, IO::Path, 'no gobbling of blocks' }
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 :15:
temp $*TMPDIR = make-temp-dir;
UFOBAT/Temp-Path
…/03-DESTROY.t :33:
temp $*TMPDIR = make-temp-dir;
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 a f…
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 :61:
# temp %fields<author> = $wants-spec.auth-matcher.match(/^.*? ':' (.*)$/)[0].Str
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 :48:
temp $save-to = $save-to.child(++$dir-id);
UGEXE/zef
…/utils-filesystem.t :86:
temp $save-to = $save-to.child(++$dir-id);
UGEXE/zef
…/utils-filesystem.t :126:
temp $save-to = $save-to.child(++$dir-id);
UGEXE/zef
…/install.t :36:
temp $*OUT = class :: { method print(|) {}; method flush(|) {}; };
UGEXE/zef
…/install.t :78:
temp $client.force = True;
VRURG/IP-Addr
…/v6.pm6 :188:
:temp $*MAX-HEXTETS = 6;
WARRINGD/HTML-Canvas
…/Canvas.pm :496:
temp $renderer.canvas = $canvas;
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-info.p6 :90:
## temp $pdf.reader.crypt.is-owner = False
7ojo/perl6-powerline-prompt
…/Path.pm :29:
@temp.append: @names.splice(@names.elems - ($max_depth-2));
7ojo/perl6-powerline-prompt
…/10-segments.t :52:
my Str $temp = $seg.draw(Powerline::Prompt::Segment::Readonly.new(cwd => '/usr/local'));
Altai-man/ASN-BER
…/Parser.pm6 :214:
self!parse-sequence($input, $type, @temp, :$debug, :$mode);
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);
Bailador/Bailador
…/README.md :32:
- `template(Str $template-name, *@params)`
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 :360:
template 'template.tt', $name, $something;
Bailador/Bailador
…/README.md :377:
template 'template.tt', layout => 'main', $name, $something;
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
…/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 :69:
$content = $!renderer.render($layout-template, $content, |@params, |%params);
Bailador/Bailador
…/App.pm :383:
$err-page = $error-template.render($_, self.request());
Bailador/Bailador
…/Gradual.pm :82:
return template($file)
Bailador/Bailador
…/Log.pm :100:
template-format => $log-config<template-format> // Nil,
Bailador/Bailador
…/Formatter.pm :18:
if $!template-format && $!format {
Bailador/Bailador
…/Formatter.pm :41:
die "Unknown value for 'template-format' ($!template-format)"
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
…/app.pl6 :7:
template 'index.html', { version => $version }
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
…/13-configuration.t :118:
temp %*ENV<BAILADOR_CONFIGDIR> = $*PROGRAM.parent.child("config").absolute;
Bailador/Bailador
…/13-configuration.t :148:
temp %*ENV<BAILADOR_CONFIGFILE> = $*PROGRAM.parent.child("config").child('config.yaml').absolute;
Bailador/Bailador
…/20-cli.t :117:
# temp %*ENV<PERL6LIB> = join(':', "$git_dir/lib", |get-path-from-repo());
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-if
…/if.pm :31:
$RMD("Attempting to load '$name'") if $RMD;
IanTayler/MinG
…/Logic.pm6 :335:
return @.items[$temp] if $temp;
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 :58:
@new_template.push($p<length>);
Juerd/p6-mqtt
…/MyPack.pm :74:
@new_template.push(~$c<TOP>);
Juerd/p6-mqtt
…/MyPack.pm :78:
@new_template.push(~$unit);
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/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
…/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 :64:
multi method tempo ($temp) { $!tempo = $temp; self; }
Perl6-Noise-Gang/perl6-Audio-MIDI-Note
…/Note.pm6 :69:
multi method tempo { return-rw $!tempo; }
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 '';
Tux/CSV
…/csv-check :14:
$err and temp $*OUT = $*ERR;
Tux/CSV
…/csv-check-tuxic :13:
$err and temp $*OUT = $*ERR;
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
…/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 {
ajs/perl6-Math-Sequences
…/generate-OEIS-tests.p6 :103:
my $test-script-temp = $test-script ~ ".tmp";
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());
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
…/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
…/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.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 :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/perl6-opencv
…/Photo.pm6 :19:
$hColor, $templateWindowSize, $searchWindowSize);
azawawi/perl6-selenium-webdriver
…/Wire.pm6 :35:
Int :$max-attempts where $_ >= 1 = 10 )
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;
bduggan/p6-jupyter-kernel
…/Sandbox.pm6 :83:
temp $PROCESS::OUT = $*OUT;
bduggan/p6-jupyter-kernel
…/Sandbox.pm6 :84:
temp $PROCESS::ERR = $*ERR;
briandfoy/perl6-PrettyDump
…/reformat-pair.p6 :69:
my $template = "%-{2+$depth+1+$longest-key.chars}s => %s";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :36:
my $encoded_uri = uri_encode( $!baseURL ~ $template ~ "&id={ $apiID }" );
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 :102:
my $template = "moon/phase?year={ $year }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :115:
my $template = "rstt/oneday?date={ $date }&coords={ $coords }&tz={ $tz }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :127:
my $template = "rstt/oneday?date={ $date }&loc={ $loc }";
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 :162:
my $template = "sidtime?date={ $date }&time={ $time }&coords={ $coords }&reps={ $reps }&intv_mag={ $intvMag }&intv_unit={ $intvUnit }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :169:
my $template = "eclipses/solar?year={ $year }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :178:
my $template = "eclipses/solar?date={ $date }&loc={ $loc }&height={ $height }&format={ $format }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :191:
my $template = "eclipses/solar?date={ $date }&coords={ $coords }&height={ $height }&format={ $format }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :199:
my $template = "christian?year={ $year }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :207:
my $template = "jewish?year={ $year }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :215:
my $template = "islamic?year={ $year }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :225:
my $template = "jdconverter?date={ $date }&time={ $time }&era={ $era }";
cbk/API-USNavalObservatory
…/USNavalObservatory.pm6 :233:
my $template = "jdconverter?jd={ $julian }";
cjfields/bioperl6
…/PrimarySeq.pm6 :59:
# # $obj->throw("Attempting to set the sequence to [$value] ".
cjfields/bioperl6
…/Temp.pm6 :22:
method tempdir(Bool :$cleanup) {
cjfields/bioperl6
…/Temp.pm6 :23:
$!cleanup-tempdir = $cleanup if $cleanup;
cjfields/bioperl6
…/Temp.pm6 :30:
@!tempdirs.push: $tdir;
cjfields/bioperl6
…/Temp.t :50:
ok $tfile.IO !~~ :e, "tempfile $tfile deleted";
cjfields/bioperl6
…/Temp.t :62:
($tfile, $tfh) = $obj.tempfile(:tempdir($tdir));
cjfields/bioperl6
…/Temp.t :109:
# ok $file.IO !~~ :e, "tempfile $file deleted";
colomon/List-Utils
…/Utils.pm :146:
# my $temp = $a;
colomon/List-Utils
…/Utils.pm :150:
# my $temp = $b;
colomon/List-Utils
…/Utils.pm :156:
# my $temp = $a;
colomon/List-Utils
…/Utils.pm :160:
# my $temp = $b;
colomon/List-Utils
…/Utils.pm :177:
my $temp = $a;
colomon/List-Utils
…/Utils.pm :181:
my $temp = $b;
colomon/List-Utils
…/Utils.pm :186:
my $temp = $a;
colomon/List-Utils
…/Utils.pm :190:
my $temp = $b;
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 :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) {
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");
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…
drforr/perl6-Perl6-Parser
…/Factory.pm6 :4561:
my Str $temp = $_.Str.substr(
drforr/perl6-Perl6-Parser
…/Factory.pm6 :6699:
my Str $temp = $p.Str.substr(
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
…/rosetta-1.t :90:
my $temp = @c[$ym;$yd];
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
…/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 :53:
die "Cannot process non-existent template 「$key」" unless %!tmpl{$key}:exists;
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 :300:
$!engine .= new(:$templates, :$rendering,:$!verbose);
finanalyst/pod-render
…/030-templates.t :8:
#temp $*CWD = 't/';
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-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;
hankache/Acme-Cow
…/cow-say :29:
::("Cow::$template").new(initial-text => $message).display
hankache/Acme-Cow
…/cow-say :34:
multi sub MAIN(Str :$message,Str :$template,Str :$face) {
hankache/Acme-Cow
…/cow-say :35:
::("Cow::$template").new(initial-text => $message).set-face($face).display;
jdv/p6-data-selector
…/03-apply_tree.t :94:
my $data_tree_temp = EVAL $data_tree.perl;
jdv/p6-data-selector
…/03-apply_tree.t :104:
my $data_tree_temp = EVAL $data_tree.perl;
jonathanstowe/Audio-Liquidsoap
…/Liquidsoap.pm :906:
multi sub meta-value('temporary', Str:D $value) {
jonathanstowe/Lumberjack-Application
…/Index.pm :56:
$!template.add-provider('resources', $provider);
jonathanstowe/Lumberjack-Application
…/Index.pm :61:
my $html = $!template.process('index', ws-url => $!ws-url);
jonathanstowe/Lumberjack-Application
…/Provider.pm :27:
if %.templates{$name}:exists {
jonathanstowe/Lumberjack-Application
…/Provider.pm :28:
$template = %.templates{$name};
jonathanstowe/Lumberjack-Application
…/Provider.pm :34:
$template = %?RESOURCES{$file}.slurp;
jonathanstowe/Lumberjack-Application
…/Provider.pm :35:
%.templates{$name} = $template;
jonathanstowe/Lumberjack-Application
…/020-template.t :21:
lives-ok { $template.add-provider('resources', $provider) }, "add the provider";
jonathanstowe/Oyatul
…/Oyatul.pm :284:
method template-for-purpose (Oyatul::Parent: Str $purpose --> Oyatul::Template)
jonathanstowe/Oyatul
…/Oyatul.pm :390:
method is-template ($?CLASS:)
jonathanstowe/Oyatul
…/Oyatul.pm :633:
%h<template> ?? $type but Template[$type] !! $type;
jonathanstowe/Oyatul
…/Oyatul.pm :675:
method template-for-purpose(Str $purpose) returns Template {
jonathanstowe/Oyatul
…/Oyatul.pm :685:
for self.all-templates -> $template {
jonathanstowe/Oyatul
…/030-detail.t :27:
lives-ok { $view-template = $layout.template-for-purpose('view') } , "template-for-purpose";
kalkin/Ddt
…/Distribution.pm6 :180:
my %content = Ddt::Template::template($module, $license, $.relaxed-name);
kalkin/Ddt
…/Test.pm6 :15:
temp $*CWD = TOPDIR;
kalkin/Ddt
…/Template.pm6 :3:
our sub template($module, $license, $relaxed-name) {
kalkin/Ddt
…/02-generate-test.t :10:
temp $*CWD = tempdir.IO;
kalkin/Ddt
…/03-absent-dirs.t :10:
temp $*CWD = tempdir.IO;
kalkin/Ddt
…/01-actual.t :11:
temp $*CWD = tempdir.IO;
kalkin/Ddt
…/01-actual.t :42:
temp $*CWD = tempdir.IO;
madcapjake/p6dx
…/Diviner.pm6 :71:
\s* [my|our|has|state|temp|let] \s+ (<[ $ @ % & ]>)<Symbol>
marcoonroad/Coro-Simple
…/Simple.pm :53:
while ($temp !~~ Bool) || (?$temp) {
masak/007
…/plug-t-file-into-007-runtime :4:
my $tempfile-name = "$basename-$*PID.t";
masak/007
…/plug-t-file-into-007-runtime :5:
LEAVE { unlink $tempfile-name if $tempfile-name }
masak/007
…/plug-t-file-into-007-runtime :6:
signal(SIGINT).act: { unlink $tempfile-name if $tempfile-name; exit 1 }
masak/007
…/plug-t-file-into-007-runtime :9:
spurt($tempfile-name, $contents);
masak/007
…/plug-test-suite-into-007-runtime :30:
my $tempfile-name = "$basename-$*PID.t";
masak/007
…/plug-test-suite-into-007-runtime :31:
LEAVE { unlink $tempfile-name if $tempfile-name }
masak/007
…/plug-test-suite-into-007-runtime :32:
signal(SIGINT).act: { unlink $tempfile-name if $tempfile-name; exit 1 }
masak/007
…/plug-test-suite-into-007-runtime :34:
spurt($tempfile-name, $contents);
masak/gge
…/OPTable.pm :143:
$oper.push( @temp[$_] );
masak/gge
…/OPTable.pm :149:
@temp[1].push($oper.llist[1]);
masak/gge
…/OPTable.pm :157:
push @termstack, @temp[$_];
masak/gge
…/Perl6Regex.pm :619:
my $temp = %pad{$key} // undef;
masak/html-template
…/Template.pm :89:
die "Failed to parse the template" unless $match;
masak/html-template
…/Template.pm :96:
#die "Failed to parse the template" ~ ($.file ?? " in file $.file" !! "") unless $match;
mj41/SP6
…/sp6 :6:
multi sub MAIN(Str $templ, Str :$templ_dir='.', Str :$inside, Bool :$debug) {
mj41/SP6
…/sp6 :7:
my $d_sp6 = SP6.new( :$templ_dir, :$debug );
mj41/SP6
…/sp6 :8:
my $out = $d_sp6.process(tfpath => $templ, inside_tfpath => $inside);
mj41/SP6
…/sp6 :13:
multi sub MAIN(Str :$templ!, Str :$templ_dir='.', Str :$inside, Bool :$debug) {
mj41/SP6
…/sp6 :14:
my $d_sp6 = SP6.new( :$templ_dir, :$debug );
mj41/SP6
…/sp6 :15:
my $out = $d_sp6.process(tfpath => $templ, inside_tfpath => $inside);
mj41/SP6
…/sp6 :20:
multi sub MAIN(Str :$e!, Str :$templ_dir='.', Str :$inside, Bool :$debug) {
mj41/SP6
…/sp6 :21:
my $d_sp6 = SP6.new( :$templ_dir, :$debug );
mj41/SP6
…/SP6.pm6 :14:
return $.templ_dir ~ '/' ~ $tfpath;
mj41/SP6
…/SP6.pm6 :47:
when X::Comp { die "Error while compiling included template '$tfpath':\n$_" }
mj41/SP6
…/SP6.pm6 :48:
default { die "Error running included template '$tfpath':\n$_" }
mj41/SP6
…/SP6.pm6 :66:
when X::Comp { die "Error while compiling template string '$tstr':\n$_" }
mj41/SP6
…/SP6.pm6 :67:
default { die "Error running template string '$tstr':\n$_" }
mj41/SP6
…/SP6.pm6 :88:
when X::Comp { die "Error while compiling template string '$tstr' inside '$inside_tfpath':\n$_" }
mj41/SP6
…/SP6.pm6 :89:
default { die "Error running template string '$tstr' inside '$inside_tfpath':\n$_" }
mj41/SP6
…/SP6.pm6 :107:
when X::Comp { die "Error while compiling template '$tfpath':\n$_" }
mj41/SP6
…/SP6.pm6 :108:
default { die "Error running template '$tfpath':\n$_" }
mj41/SP6
…/SP6.pm6 :130:
when X::Comp { die "Error while compiling template '$tfpath' inside '$inside_tfpath':\n$_" }
mj41/SP6
…/SP6.pm6 :131:
default { die "Error while running template '$tfpath' inside '$inside_tfpath':\n$_" }
mj41/SP6
…/01-base.t :8:
my $sp6 = SP6.new( :templ_dir($templ_dir), );
mj41/SP6
…/02-base-line.t :7:
my $sp6 = SP6.new( :templ_dir($templ_dir), );
mj41/SP6
…/10-vars.t :7:
my $sp6 = SP6.new( :templ_dir($templ_dir), );
mj41/SP6
…/11-vars-include.t :8:
my $sp6 = SP6.new( :templ_dir($templ_dir), );
mj41/SP6
…/20-subs.t :7:
my $sp6 = SP6.new( :templ_dir($templ_dir), );
mj41/SP6
…/30-include.t :8:
my $sp6 = SP6.new( :templ_dir($templ_dir), );
mj41/SP6
…/40-eval.t :8:
my $sp6 = SP6.new( :templ_dir($templ_dir), );
mj41/SP6
…/50-inside.t :7:
my $sp6 = SP6.new( :templ_dir($templ_dir), );
moznion/p6-Log-Minimal
…/README.md :191:
temp $log.autodump = True;
moznion/p6-Log-Minimal
…/Minimal.pm6 :46:
temp $.default-log-level = DEBUG;
moznion/p6-Log-Minimal
…/Minimal.pm6 :70:
temp $.default-log-level = DEBUG;
moznion/p6-Log-Minimal
…/Minimal.pm6 :349:
temp $log.autodump = True;
moznion/p6-Log-Minimal
…/090_autodump.t :20:
temp $log.autodump = True;
moznion/p6-Router-Boost
…/Boost.pm6 :132:
temp $!_PAREN-CNT = 0;
nige123/jmp.nigelhamilton.com
…/Editor.pm :8:
my $edit-file-command = $!config.get('editor.command.template', { :$filename, :$line-number });
nige123/jmp.nigelhamilton.com
…/Finder.pm :14:
my $find-command = $!config.get('find.command.template', { :$search-terms });
niner/Distribution-Builder-MakeFromJSON
…/MakeFromJSON.pm6 :30:
process-makefile-template($meta, $src-dir, $dest-dir) if $src-dir.child('Makefile.in').e;
niner/Distribution-Builder-MakeFromJSON
…/MakeFromJSON.pm6 :49:
sub process-makefile-template($meta, $src-dir, $dest-dir) {
nkh/P6-Text-Template
…/Template.pm :37:
=item sub fill_in(Str $template, :%variables?, :$catch_exceptions, :$no_warnings?)
nkh/P6-Text-Template
…/Template.pm :38:
Accepts a template, optional variables, $catch_exceptions flag, and an optional
nkh/P6-Text-Template
…/Template.pm :91:
// "Can't fill template @$?FILE:$?LINE" ;
nkh/P6-Text-Template
…/Template.pm :97:
if $! { say "Can't fill template; exception: $! @$?FILE:$?LINE" }
nkh/P6-Text-Template
…/Template.pm :148:
sub compile_template (Str $template, :%variables, :$debug?)
nkh/P6-Text-Template
…/Template.pm :171:
multi sub fill_in (Str $template, :%variables?, :$debug?) is export
nkh/P6-Text-Template
…/Template.pm :174:
EVAL compile_template($template, :%variables, :$debug) ;
nkh/P6-Text-Template
…/Template.pm :177:
multi sub fill_in (Str $template, :%variables?, :$debug?, :$catch_exceptions, :$no_warnings?) is export
nkh/P6-Text-Template
…/Template.pm :181:
try { $filled_in = fill_in $template, :%variables, :$debug ; }
noqisofon/p6-miroku
…/Template.pm6 :5:
our sub get-template(:$module, :$dist, :$author, :$email, :$year) {
noqisofon/p6-miroku
…/00-sanity.t :32:
temp $*CWD = $temp-dir.IO;
p6-css/CSS-Grammar-p6
…/css-file.t :28:
temp $/ = CSS::Grammar::Test::parse-tests(CSS::Grammar::CSS3, $css-body,
p6-css/CSS-Writer-p6
…/Writer.pm :420:
temp $.indent;
p6-css/CSS-Writer-p6
…/write-ast.t :33:
temp $css-writer.color-masks = True;
p6-css/CSS-Writer-p6
…/write-css.t :34:
temp $/ = CSS::Grammar::Test::parse-tests(CSS::Grammar::CSS3, $css, :$rule, :$actions, :%expected, :suite<css3> );
p6-css/CSS-Writer-p6
…/write-css.t :44:
temp $css-writer.terse = True;
p6-pdf/PDF-p6
…/Array.pm :18:
temp %seen{$array} = $obj = self.bless(:$array, |c);
p6-pdf/PDF-p6
…/Array.pm :35:
temp %content-cache{$obj} = $array = [];
p6-pdf/PDF-p6
…/Dict.pm :20:
temp %seen{$dict} = $obj = self.bless(|c);
p6-pdf/PDF-p6
…/Util.pm :24:
$dict = temp %seen{$_dict} = {};
p6-pdf/PDF-p6
…/Util.pm :50:
$array = temp %seen{$_list} = [ ];
p6-pdf/PDF-p6
…/Serializer.pm :65:
temp $trailer.obj-num = 0;
p6-pdf/PDF-p6
…/Serializer.pm :66:
temp $trailer.gen-num = 0;
p6-pdf/PDF-p6
…/Serializer.pm :90:
temp $.reader.auto-deref = False;
p6-pdf/PDF-p6
…/Serializer.pm :93:
temp $.renumber = False;
p6-pdf/PDF-p6
…/Reader.pm :174:
temp $.auto-deref = False;
p6-pdf/PDF-p6
…/Reader.pm :196:
temp $.auto-deref = False;
p6-pdf/PDF-p6
…/Reader.pm :343:
when * < 0 { die X::PDF::BadXRef::Entry.new: :details("Attempt to fetch object $obj-num $gen-num R at byte offset $offset, past end of PDF ($end bytes)") }
p6-pdf/PDF-p6
…/Reader.pm :700:
temp $actions.get-offsets = True;
p6-pdf/PDF-p6
…/Writer.pm :23:
temp $!offset;
p6-pdf/PDF-p6
…/Writer.pm :24:
temp $!prev;
p6-pdf/PDF-p6
…/Writer.pm :37:
temp $!indent ~= ' '; # for indentation of child dictionarys
p6-pdf/PDF-p6
…/Writer.pm :42:
temp $!prev = Nil;
p6-pdf/PDF-p6
…/Writer.pm :422:
temp $!indent ~= ' ';
p6-pdf/PDF-p6
…/cos-deref.t :47:
temp $reader.auto-deref = False;
p6-pdf/PDF-p6
…/cos-deref.t :99:
temp $reader.auto-deref = False;
palapitta/Weather
…/README.md :34:
my $temp = $p.temparature;
perl6-community-modules/p6-test-builder
…/02-is-isnt.t :19:
temp $*OUT = $grab;
perl6-community-modules/p6-test-builder
…/02-is-isnt.t :20:
temp $*ERR = $grab;
perl6/Pod-To-HTML
…/HTML.pm :178:
$template-file = "$templates/main.mustache".IO
perl6/Pod-To-HTML
…/120-templates.t :40:
$r = pod2html $=pod[0], :templates("t/templates"), :$head ;
perl6/doc
…/app.pl :70:
my ($temp_css, $temp_js) = ((tempfile)[1], (tempfile)[1]);
perl6/doc
…/jquery-ui.min.js :6:
(function(t){"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)})(function(t){t.ui=t.ui||{},t.ui.version="1.12.1";var e=0,i=Array.p…
perl6/doc
…/io-guide.pod6 :256:
temp $*OUT = open :w, $*SPEC.devnull;
perl6/doc
…/io-guide.pod6 :301:
=head3 temp the $*CWD
perl6/doc
…/io-guide.pod6 :322:
temp $*CWD = "foo".IO;
perl6/doc
…/operators.pod6 :1375:
sub prefix:<temp>(Mu $a is rw)
perl6/doc
…/operators.pod6 :1385:
temp $a;
perl6/doc
…/operators.pod6 :1395:
temp $a = "five";
perl6/doc
…/operators.pod6 :1405:
temp $v = "new one";
perl6/doc
…/phasers.pod6 :96:
temporary binding of C<$_> would leak out past the end of the C<CATCH> or
perl6/doc
…/variables.pod6 :842:
(temp $in)++;
perl6/doc
…/variables.pod6 :849:
(temp $in)++;
perl6/doc
…/Date.pod6 :220:
Attempt to sleep for the given number of C<$seconds>. Returns C<Nil> on
perl6/doc
…/IO.pod6 :104:
temp $*CWD;
perl6/doc
…/IO.pod6 :153:
gather { temp $*CWD = $cwd; take ".".IO }
perl6/doc
…/CatHandle.pod6 :50:
Attempting to specify both defined C<:$encoding> and C<True> C<:$bin> is
perl6/doc
…/Path.pod6 :217:
attempt to much the most parts it can. If C<$parts> range's endpoints that are
perl6/doc
…/Async.pod6 :134:
Attempts to connect to the TCP server specified by C<$host> and
perl6/doc
…/Async.pod6 :197:
Attempt to send C<$str> on the L<IO::Socket::Async> that will have been
perl6/doc
…/Async.pod6 :218:
This method will attempt to send the bytes in C<$b> on the
perl6/doc
…/Proc.pod6 :116:
temp $*OUT = open '/tmp/out.txt', :w;
perl6/doc
…/Proc.pod6 :132:
the temporary C<$*OUT> value defined in the host process (redirected to
perl6/doc
…/htmlify.p6 :832:
spurt("html/js/search.js", $template.subst("ITEMS", @items.join(",\n")).subst("WARNING", "DO NOT EDIT generated by $?FILE:$?LINE"));
perl6/doc
…/examples-compilation.t :136:
temp $*OUT = open :w, $*SPEC.devnull;
perl6/doc
…/examples-compilation.t :137:
temp $*ERR = open :w, $*SPEC.devnull;
perl6/form
…/Form.pm :20:
die "Insufficient number of data arguments ({@args.elems}) provided for format template '$format' which requires $nonliteral-field-count";
perl6/whateverable
…/Builds.pm6 :97:
note “Attempting to fetch $full-commit-hash…”;
perl6/whateverable
…/Output.pm6 :41:
$temp-file = write-code $stdin;
perl6/whateverable
…/Replaceable.pm6 :67:
%!temp-users{$irc-channel} //= SetHash.new;
perl6/whateverable
…/Replaceable.pm6 :68:
%!temp-users{$irc-channel}{@nicks} = True xx @nicks
perl6/whateverable
…/Replaceable.pm6 :75:
%!users{$irc-channel} = %!temp-users{$irc-channel};
perl6/whateverable
…/Replaceable.pm6 :76:
%!temp-users{$irc-channel}:delete
perl6/whateverable
…/Releasable.p6 :202:
temp $/;
perl6/whateverable
…/Reportable.p6 :117:
run :$env, ‘maintenance/pull-rt’, “$temp-folder/RT”, |$CONFIG<reportable><RT><user pass>;
perl6/whateverable
…/Reportable.p6 :121:
run ‘mv’, ‘--’, $temp-folder, $dir.add: $datetime;
perl6/whateverable
…/build.p6 :117:
my @git-temp = ‘git’, ‘--git-dir’, “$temp-folder/.git”, ‘--work-tree’, $temp-folder;
perl6/whateverable
…/build.p6 :118:
run |@git-temp, ‘reset’, ‘-q’, ‘--hard’, $commit;
perl6/whateverable
…/Testable.pm6 :149:
temp $!first-test;
perl6/whateverable
…/Testable.pm6 :219:
temp $!first-test;
perlpilot/p6-File-Temp
…/Temp.pm :38:
sub make-temp($type, $template, $tempdir, $prefix, $suffix, $unlink) {
perlpilot/p6-File-Temp
…/Temp.pm :41:
my $tempfile = $template;
perlpilot/p6-File-Temp
…/Temp.pm :42:
$tempfile ~~ s/ '*' ** 4..* /{ @filechars.roll($/.chars).join }/;
perlpilot/p6-File-Temp
…/Temp.pm :43:
my $name = $*SPEC.catfile($tempdir,"$prefix$tempfile$suffix");
perlpilot/p6-File-Temp
…/Temp.pm :65:
fail "Unable to open temporary $type after {MAX-RETRIES} attempts";
perlpilot/p6-File-Temp
…/Temp.pm :70:
:$tempdir? = $*TMPDIR, # where to create these temp files
perlpilot/p6-File-Temp
…/Temp.pm :74:
:$template = $tmpl # required named template
perlpilot/p6-File-Temp
…/Temp.pm :76:
return make-temp('file', $template, $tempdir, $prefix, $suffix, $unlink);
perlpilot/p6-File-Temp
…/Temp.pm :81:
:$tempdir? = $*TMPDIR, # where to create tempdir
perlpilot/p6-File-Temp
…/Temp.pm :85:
:$template = $tmpl # required named template
perlpilot/p6-File-Temp
…/Temp.pm :87:
return make-temp('dir', $template, $tempdir, $prefix, $suffix, $unlink);
pmqs/Archive-SimpleZip
…/002-basic.t :25:
my $base_dir_name = tempdir(:unlink($wipe));
pmqs/Archive-SimpleZip
…/002-basic.t :26:
ok $base_dir_name.IO.d, "tempdir { $base_dir_name } created";
pmqs/Archive-SimpleZip
…/ZipTest.pm6 :13:
my ($filename,$filehandle) = tempfile(:tempdir($base_dir));
raydiak/Inline-Lua
…/Raw.pm6 :177:
warn "Attempting to use unsupported Lua version '$lib'; this is likely to fail"
raydiak/Math-Symbolic
…/README.md :103:
Attempts to arrange the equation/expression in polynomial form. If $var is
raydiak/Math-Symbolic
…/Symbolic.pm6 :796:
our ($det_template, $quad_template_det, $quad_template_nodet);
retupmoca/P6-Auth-PAM-Simple
…/README.md :23:
Calls the PAM service $service, and attempts to authenticate using the given $user and $pass. Returns True for success and False for failure.
scmorrison/perl6-Web-Cache
…/README.md :30:
get / ^ '/template/' (.+) $ / => sub ($x) {
scmorrison/perl6-Web-Cache
…/README.md :33:
my $fancy_cache_key = [$template, $x].join('-');
scmorrison/perl6-Web-Cache
…/README.md :40:
template($template, %params)
scmorrison/perl6-Web-Cache
…/Cache.pm6 :83:
expensive-template-step($data);
scovit/Scheduler-DRMAA
…/README.md :214:
method then(DRMAA::Job-template $what)
scovit/Scheduler-DRMAA
…/control.pl6 :11:
my Pointer[drmaa_job_template_t] $jt = Pointer[drmaa_job_template_t].new;
scovit/Scheduler-DRMAA
…/control.pl6 :19:
$errnum = drmaa_allocate_job_template($jt, $error, DRMAA_ERROR_STRING_BUFFER);
scovit/Scheduler-DRMAA
…/control.pl6 :22:
warn "Could not create job template: ", $error;
scovit/Scheduler-DRMAA
…/control.pl6 :64:
$errnum = drmaa_delete_job_template($jt.deref, $error, DRMAA_ERROR_STRING_BUFFER);
scovit/Scheduler-DRMAA
…/control.pl6 :67:
warn 'Could not delete job template: ', $error;
scovit/Scheduler-DRMAA
…/status.pl6 :11:
my Pointer[drmaa_job_template_t] $jt = Pointer[drmaa_job_template_t].new;
scovit/Scheduler-DRMAA
…/status.pl6 :19:
$errnum = drmaa_allocate_job_template($jt, $error, DRMAA_ERROR_STRING_BUFFER);
scovit/Scheduler-DRMAA
…/status.pl6 :22:
warn "Could not create job template: ", $error;
scovit/Scheduler-DRMAA
…/status.pl6 :81:
$errnum = drmaa_delete_job_template($jt.deref, $error, DRMAA_ERROR_STRING_BUFFER);
scovit/Scheduler-DRMAA
…/status.pl6 :84:
warn 'Could not delete job template: ', $error;
scovit/Scheduler-DRMAA
…/submit-task.pl6 :11:
my Pointer[drmaa_job_template_t] $jt = Pointer[drmaa_job_template_t].new;
scovit/Scheduler-DRMAA
…/submit-task.pl6 :19:
$errnum = drmaa_allocate_job_template($jt, $error, DRMAA_ERROR_STRING_BUFFER);
scovit/Scheduler-DRMAA
…/submit-task.pl6 :22:
warn "Could not create job template: ", $error;
scovit/Scheduler-DRMAA
…/submit-task.pl6 :59:
$errnum = drmaa_delete_job_template($jt.deref, $error, DRMAA_ERROR_STRING_BUFFER);
scovit/Scheduler-DRMAA
…/submit-task.pl6 :62:
warn 'Could not delete job template: ', $error;
scovit/Scheduler-DRMAA
…/submit.pl6 :11:
my Pointer[drmaa_job_template_t] $jt = Pointer[drmaa_job_template_t].new;
scovit/Scheduler-DRMAA
…/submit.pl6 :19:
$errnum = drmaa_allocate_job_template($jt, $error, DRMAA_ERROR_STRING_BUFFER);
scovit/Scheduler-DRMAA
…/submit.pl6 :22:
warn "Could not create job template: ", $error;
scovit/Scheduler-DRMAA
…/submit.pl6 :54:
$errnum = drmaa_delete_job_template($jt.deref, $error, DRMAA_ERROR_STRING_BUFFER);
scovit/Scheduler-DRMAA
…/submit.pl6 :57:
warn 'Could not delete job template: ', $error;
scovit/Scheduler-DRMAA
…/synchronize-task.pl6 :11:
my Pointer[drmaa_job_template_t] $jt = Pointer[drmaa_job_template_t].new;
scovit/Scheduler-DRMAA
…/synchronize-task.pl6 :19:
$errnum = drmaa_allocate_job_template($jt, $error, DRMAA_ERROR_STRING_BUFFER);
scovit/Scheduler-DRMAA
…/synchronize-task.pl6 :22:
warn "Could not create job template: ", $error;
scovit/Scheduler-DRMAA
…/synchronize-task.pl6 :70:
$errnum = drmaa_delete_job_template($jt.deref, $error, DRMAA_ERROR_STRING_BUFFER);
scovit/Scheduler-DRMAA
…/synchronize-task.pl6 :73:
warn 'Could not delete job template: ', $error;
scovit/Scheduler-DRMAA
…/wait-task.pl6 :11:
my Pointer[drmaa_job_template_t] $jt = Pointer[drmaa_job_template_t].new;
scovit/Scheduler-DRMAA
…/wait-task.pl6 :19:
$errnum = drmaa_allocate_job_template($jt, $error, DRMAA_ERROR_STRING_BUFFER);
scovit/Scheduler-DRMAA
…/wait-task.pl6 :22:
warn "Could not create job template: ", $error;
scovit/Scheduler-DRMAA
…/wait-task.pl6 :131:
$errnum = drmaa_delete_job_template($jt.deref, $error, DRMAA_ERROR_STRING_BUFFER);
scovit/Scheduler-DRMAA
…/wait-task.pl6 :134:
warn 'Could not delete job template: ', $error;
scovit/Scheduler-DRMAA
…/wait.pl6 :11:
my Pointer[drmaa_job_template_t] $jt = Pointer[drmaa_job_template_t].new;
scovit/Scheduler-DRMAA
…/wait.pl6 :19:
$errnum = drmaa_allocate_job_template($jt, $error, DRMAA_ERROR_STRING_BUFFER);
scovit/Scheduler-DRMAA
…/wait.pl6 :22:
warn "Could not create job template: ", $error;
scovit/Scheduler-DRMAA
…/wait.pl6 :110:
$errnum = drmaa_delete_job_template($jt.deref, $error, DRMAA_ERROR_STRING_BUFFER);
scovit/Scheduler-DRMAA
…/wait.pl6 :113:
warn 'Could not delete job template: ', $error;
scovit/Scheduler-DRMAA
…/Job-template.pm6 :15:
has drmaa_job_template_t $.jt;
scovit/Scheduler-DRMAA
…/Job-template.pm6 :47:
$cached = $template.attribute-fetch($name) unless defined $cached;
scovit/Scheduler-DRMAA
…/Job-template.pm6 :52:
$template.attribute-store($name, $value.Str);
scovit/Scheduler-DRMAA
…/Job-template.pm6 :88:
$cached = $template.vector-attribute-fetch($name) unless defined $cached;
scovit/Scheduler-DRMAA
…/Job-template.pm6 :93:
$template.vector-attribute-store($name, $value);
scovit/Scheduler-DRMAA
…/Job-template.pm6 :167:
DRMAA::Session.native-specification.job-template-after(self, $after);
scovit/Scheduler-DRMAA
…/Job-template.pm6 :175:
DRMAA::Session.native-specification.job-template-afterany(self, $after);
scovit/Scheduler-DRMAA
…/Job-template.pm6 :183:
DRMAA::Session.native-specification.job-template-aftenotok(self, $after);
scovit/Scheduler-DRMAA
…/Job-template.pm6 :191:
DRMAA::Session.native-specification.job-template-afterok(self, $after);
scovit/Scheduler-DRMAA
…/Job-template.pm6 :197:
mkdir $tempdir unless $tempdir.IO.d;
scovit/Scheduler-DRMAA
…/Job-template.pm6 :200:
my $fullname = "$tempdir/$filename";
scovit/Scheduler-DRMAA
…/Job-template.pm6 :227:
my $error-num = drmaa_allocate_job_template($temp, $error-buf, DRMAA_ERROR_STRING_BUFFER);
scovit/Scheduler-DRMAA
…/Job-template.pm6 :246:
my $error-num = drmaa_delete_job_template($!jt, $error-buf, DRMAA_ERROR_STRING_BUFFER);
scovit/Scheduler-DRMAA
…/SLURM.pm6 :15:
method job-template-after(DRMAA::Job-template:D $what, $after) {
scovit/Scheduler-DRMAA
…/SLURM.pm6 :18:
method job-template-afterany(DRMAA::Job-template:D $what, $after) {
scovit/Scheduler-DRMAA
…/SLURM.pm6 :21:
method job-template-afterok(DRMAA::Job-template:D $what, $after) {
scovit/Scheduler-DRMAA
…/SLURM.pm6 :24:
method job-template-afternotok(DRMAA::Job-template:D $what, $after) {
scovit/Scheduler-DRMAA
…/SLURM.pm6 :27:
method submission-then(DRMAA::Submission:D $after, DRMAA::Job-template:D $what --> DRMAA::Submission) {
scovit/Scheduler-DRMAA
…/SLURM.pm6 :28:
self.job-template-afterany($what, $after);
scovit/Scheduler-DRMAA
…/NativeCall.pm6 :232:
sub drmaa_allocate_job_template(Pointer[drmaa_job_template_t] $jt is rw,
scovit/Scheduler-DRMAA
…/NativeCall.pm6 :245:
sub drmaa_delete_job_template(drmaa_job_template_t $jt,
scovit/Scheduler-DRMAA
…/NativeCall.pm6 :259:
sub drmaa_set_attribute(drmaa_job_template_t $jt,
scovit/Scheduler-DRMAA
…/NativeCall.pm6 :275:
sub drmaa_get_attribute(drmaa_job_template_t $jt,
scovit/Scheduler-DRMAA
…/NativeCall.pm6 :292:
sub drmaa_set_vector_attribute(drmaa_job_template_t $jt,
scovit/Scheduler-DRMAA
…/NativeCall.pm6 :308:
sub drmaa_get_vector_attribute(drmaa_job_template_t $jt,
scovit/Scheduler-DRMAA
…/NativeCall.pm6 :411:
sub drmaa_run_job(CBuffer $job_id, size_t $job_id_len, drmaa_job_template_t $jt,
scovit/Scheduler-DRMAA
…/NativeCall.pm6 :443:
drmaa_job_template_t $jt,
scovit/Scheduler-DRMAA
…/DRMAA.pm6 :236:
method then(DRMAA::Job-template $what)
scovit/perl6-IRC-Async
…/README.md :118:
Attempt to send string `$msg` on the `IRC::Async` that will have been
scovit/perl6-IRC-Async
…/README.md :132:
Attempt to send binary blob `$msg` on the `IRC::Async` that will have
sergot/http-useragent
…/Message.pm6 :146:
# to anything it should attempt to extract it from $.content like (for HTML):
sergot/http-useragent
…/100-redirect-ssl.t :29:
temp $ua.max-redirects = 0;
skids/perl6sum
…/adler.t :75:
{ temp $*OUT = $p; EVAL $Sum::Adler::Doc::synopsis; }
skids/perl6sum
…/gost.t :82:
{ temp $*OUT = $p; EVAL $Sum::GOST::Doc::synopsis; }
skids/perl6sum
…/has.t :51:
{ temp $*OUT = $p; EVAL $Sum::HAS::Doc::synopsis; }
skids/perl6sum
…/libcrypto.t :74:
{ temp $*OUT = $p; EVAL $Sum::libcrypto::Doc::synopsis; }
skids/perl6sum
…/libmhash.t :79:
{ temp $*OUT = $p; EVAL $Sum::libmhash::Doc::synopsis; }
skids/perl6sum
…/librhash.t :75:
{ temp $*OUT = $p; EVAL $Sum::librhash::Doc::synopsis; }
skids/perl6sum
…/md.t :287:
{ temp $*OUT = $p; EVAL $Sum::MD::Doc::synopsis; }
skids/perl6sum
…/sha.t :270:
{ temp $*OUT = $p; EVAL $Sum::SHA::Doc::synopsis; }
skids/perl6sum
…/siphash.t :31:
{ temp $*OUT = $p; EVAL $Sum::SipHash::Doc::synopsis; }
skids/perl6sum
…/sm3.t :46:
{ temp $*OUT = $p; EVAL $Sum::SM3::Doc::synopsis; }
skids/perl6sum
…/sum.t :297:
{ temp $*OUT = $s; EVAL $Sum::Doc::synopsis; }
skids/perl6sum
…/tiger.t :1714:
{ temp $*OUT = $p; EVAL $Sum::Tiger::Doc::synopsis; }
softmoth/p6-Template-Mustache
…/Mustache.pm :140:
method render($template, %context, Bool :$literal, :$from, :$extension is copy) {
softmoth/p6-Template-Mustache
…/Mustache.pm :159:
$initial-template = $template;
softmoth/p6-Template-Mustache
…/Mustache.pm :161:
elsif get-template($template, :silent) -> $t {
softmoth/p6-Template-Mustache
…/Mustache.pm :162:
$initial-template = $t;
softmoth/p6-Template-Mustache
…/Mustache.pm :167:
$initial-template = $template unless $literal.defined;
softmoth/p6-Template-Mustache
…/Mustache.pm :178:
my @parsed = parse-template($initial-template);
softmoth/p6-Template-Mustache
…/Mustache.pm :182:
sub get-template($template, :$silent) {
softmoth/p6-Template-Mustache
…/Mustache.pm :183:
sub read-template-file($dir is copy) {
softmoth/p6-Template-Mustache
…/Mustache.pm :186:
my $file = $extension.map({ $*SPEC.catfile($dir, $template ~ $_).IO }).first(*.e);
softmoth/p6-Template-Mustache
…/Mustache.pm :194:
#log_warn "Unable to find file for template '$template'" unless $silent;
softmoth/p6-Template-Mustache
…/Mustache.pm :200:
if $_{$template} -> $t { return $t; }
softmoth/p6-Template-Mustache
…/Mustache.pm :205:
my $t = read-template-file($_);
softmoth/p6-Template-Mustache
…/Mustache.pm :214:
#log_warn "Unable to get template '$template' from anywhere" unless $silent;
softmoth/p6-Template-Mustache
…/Mustache.pm :218:
sub parse-template($template is copy, :$indent = '', :$delims) {
softmoth/p6-Template-Mustache
…/Mustache.pm :219:
$template .= subst(/^^/, $indent, :g) if $indent;
softmoth/p6-Template-Mustache
…/Mustache.pm :221:
Template::Mustache::Grammar.parse($template, :$actions)
softmoth/p6-Template-Mustache
…/Mustache.pm :264:
my @parsed = parse-template($str, :indent(%val<indent>), :delims(%val<delims>));
softmoth/p6-Template-Mustache
…/91-specs.t :9:
is Template::Mustache.render($_<template>, $_<data>, :from($_<partials>), :literal),
softmoth/p6-Template-Mustache
…/~lambdas.json :1:
{"__ATTN__":"Do not edit this file; changes belong in the appropriate YAML file.","overview":"Lambdas are a special-cased data type for use in interp…
spebern/Parser-FreeXL-Native
…/config.guess :110:
{ tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
spebern/Parser-FreeXL-Native
…/config.guess :113:
{ echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ;
spebern/Parser-FreeXL-Native
…/configure :9514:
for cc_temp in $compiler""; do
spebern/Parser-FreeXL-Native
…/configure :9522:
cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"`
spebern/Parser-FreeXL-Native
…/configure :13486:
for cc_temp in $compiler""; do
spebern/Parser-FreeXL-Native
…/configure :13494:
cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"`
spebern/Parser-FreeXL-Native
…/configure :14074:
output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
spebern/Parser-FreeXL-Native
…/configure :14139:
output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
spebern/Parser-FreeXL-Native
…/configure :14214:
archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
spebern/Parser-FreeXL-Native
…/configure :14215:
archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$…
spebern/Parser-FreeXL-Native
…/configure :14224:
output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared…
spebern/Parser-FreeXL-Native
…/configure :14307:
output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED…
spebern/Parser-FreeXL-Native
…/configure :14418:
archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
spebern/Parser-FreeXL-Native
…/configure :14463:
output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "…
spebern/Parser-FreeXL-Native
…/configure :18440:
} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
spebern/Parser-FreeXL-Native
…/ltmain.sh :563:
my_template="${TMPDIR-/tmp}/${1-$progname}"
spebern/Parser-FreeXL-Native
…/ltmain.sh :567:
my_tmpdir="${my_template}-$$"
spebern/Parser-FreeXL-Native
…/ltmain.sh :571:
my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null`
spebern/Parser-FreeXL-Native
…/ltmain.sh :575:
my_tmpdir="${my_template}-${RANDOM-0}$$"
spebern/Parser-FreeXL-Native
…/ltmain.sh :585:
func_fatal_error "cannot create temporary directory \`$my_tmpdir'"
spebern/Parser-FreeXL-Native
…/ltmain.sh :3840:
# $output - temporary wrapper script for $objdir/$outputname
spebern/Parser-FreeXL-Native
…/ltmain.sh :4101:
$shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
spebern/Parser-FreeXL-Native
…/ltmain.sh :4136:
/* $cwrappersource - temporary wrapper executable for $objdir/$outputname
spebern/Parser-FreeXL-Native
…/ltmain.sh :6634:
*) func_append temp_rpath "$absdir:" ;;
spebern/Parser-FreeXL-Native
…/ltmain.sh :6986:
temp_xrpath=$func_stripname_result
spebern/Parser-FreeXL-Native
…/ltmain.sh :6991:
*) func_append temp_deplibs " $libdir";;
spebern/Parser-FreeXL-Native
…/ltmain.sh :7533:
tempremovelist=`$ECHO "$output_objdir/*"`
spebern/Parser-FreeXL-Native
…/ltmain.sh :7574:
func_append temp_xrpath " -R$func_replace_sysroot_result"
spebern/Parser-FreeXL-Native
…/ltmain.sh :7581:
dependency_libs="$temp_xrpath $dependency_libs"
spebern/Parser-FreeXL-Native
…/ltmain.sh :8421:
func_verbose "creating a temporary reloadable object file: $output"
spebern/Parser-FreeXL-Native
…/ltmain.sh :8502:
# Append the command to remove temporary files to $cmds.
spebern/Parser-FreeXL-Native
…/libtool.m4 :118:
[for cc_temp in $1""; do
spebern/Parser-FreeXL-Native
…/libtool.m4 :126:
cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"`
spebern/Parser-FreeXL-Native
…/libtool.m4 :6192:
output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
spebern/Parser-FreeXL-Native
…/libtool.m4 :6257:
output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
spebern/Parser-FreeXL-Native
…/libtool.m4 :6332:
_LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -…
spebern/Parser-FreeXL-Native
…/libtool.m4 :6333:
_LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib |…
spebern/Parser-FreeXL-Native
…/libtool.m4 :6342:
output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared…
spebern/Parser-FreeXL-Native
…/libtool.m4 :6425:
output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED…
spebern/Parser-FreeXL-Native
…/libtool.m4 :6536:
_LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED…
spebern/Parser-FreeXL-Native
…/libtool.m4 :6581:
output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "…
spitsh/spitsh
…/DigitalOcean.sp :236:
my $temp-droplet = DO.create(name => 'tmp-' ~ Str.random, :$region, :$size, :$image);
spitsh/spitsh
…/File.sp :226:
${mktemp ('-d' if $dir)}-->File.cleanup
spitsh/spitsh
…/Host.sp :44:
debug "Attempting ssh to $ssh-host:$port";
supernovus/flower
…/06-utils-date.t :32:
is ~$tal.parse($template), $xml~'<date>2010-10-10T00:00:00Z</date>', 'dateof: modifier';
supernovus/flower
…/06-utils-date.t :36:
$template = '<date tal:content="dateof: ${date/year} ${date/month} ${date/day}"/>';
supernovus/flower
…/06-utils-date.t :38:
is ~$tal.parse($template, :date(%date)), $xml~'<date>2010-10-10T00:00:00Z</date>', 'dateof: modifier using string parsing';
supernovus/flower
…/06-utils-date.t :44:
is ~$tal.parse($template), $xml~'<date>2010-10-09T23:15:33Z</date>', 'time: modifier';
supernovus/flower
…/06-utils-date.t :50:
is ~$tal.parse($template, :date(%date)), $xml~'<date>2010_10_11-13:17:14</date>', 'strftime: modifier on a datetime object';
supernovus/flower
…/06-utils-date.t :56:
is ~$tal.parse($template, :date(%date)), $xml~'<date>Oct 09, 2010</date>', 'strftime: modifier on a date object';
supernovus/flower
…/06-utils-date.t :62:
is ~$tal.parse($template), $xml~'<date>Sun, 10 Oct 2010 00:00:00 -0800</date>', 'strftime: with rfc: modifier';
supernovus/flower
…/06-utils-date.t :69:
is $tal.parse($template), $xml~'<date>'~$now~'</date>', 'strftime: with now: modifier';
supernovus/flower
…/06-utils-date.t :75:
is $tal.parse($template, :date(%date)), $xml~'<date>2011-01-12T15:15:00-0800</date>', 'date: modifier';
supernovus/flower
…/06-utils-date.t :80:
is $tal.parse($template, :date(%date)), $xml~'<date>Jan 12, 2011</date>', 'strftime: with date: modifier';
supernovus/flower
…/06-utils-date.t :86:
is $tal.parse($template, :date(%date)), $xml~'<date>Jan 12, 2011</date>', 'strftime: with iso date string';
supernovus/flower
…/Flower.pm6 :66:
$plugin.custom-tag = $template.root.nsPrefix($plugin.ns);
supernovus/flower
…/Flower.pm6 :92:
my $template = XML::Document.load($file);
supernovus/flower
…/File.pm6 :26:
if %.templates{$name}:exists
supernovus/flower
…/File.pm6 :28:
return %.templates{$name};
supernovus/flower
…/File.pm6 :35:
my $template = slurp $file;
supernovus/flower
…/File.pm6 :36:
%.templates{$name} = $template;
supernovus/flower
…/File.pm6 :45:
%.templates{$name} = $template;
supernovus/flower
…/TALES.pm6 :230:
warn "attempt to access an invalid item '$path'.";
supernovus/flower
…/01-basics.t :19:
is ~$tal.parse($template, my_test_var => 'Hello World'), $xml~'<test><item>Hello World</item></test>', 'tal:define and tal:content';
supernovus/flower
…/01-basics.t :23:
$template = '<test><item tal:define="test1 my_test_var1; test2 my_test_var2" tal:content="string:${test1} = ${test2}"/></test>';
supernovus/flower
…/01-basics.t :24:
is ~$tal.parse($template, my_test_var1 => 'Hello', my_test_var2 => 'World'), $xml~'<test><item>Hello = World</item></test>', 'tal:define with multiple definitions.';
supernovus/flower
…/01-basics.t :29:
is ~$tal.parse($template, hello => 'Hello World'), $xml~'<test>Hello World</test>', 'tal:replace';
supernovus/flower
…/01-basics.t :34:
is ~$tal.parse($template, hello => 'Hello World'), $xml~'<test><true>This is true</true><right/></test>', 'tal:condition';
supernovus/flower
…/01-basics.t :40:
is ~$tal.parse($template, hello => 'hello world'), $xml~'<test>Good Day Mate</test>', 'tal:omit-tag';
supernovus/flower
…/01-basics.t :52:
is ~$tal.parse($template), $xml~'<test><hello/></test>', 'tal:replace when empty.';
supernovus/flower
…/01-basics.t :57:
is ~$tal.parse($template, test=>'Hello World'), $xml~'<test xmlns:petal="http://xml.zope.org/namespaces/tal"\>Hello World</test>', 'tal:replace with custom namespace.';
supernovus/flower
…/01-basics.t :62:
is ~$tal.parse($template, id=>'first'), $xml~'<test id="first">Test document</test>', 'attributes on root document';
supernovus/flower
…/02-repeat.t :22:
is ~$tal.parse($template, :items(@items)), $xml~'<test><item alt="One">First</item><item alt="Two">Second</item><item alt="Three">Third</item></test>', 'tal:repeat';
supernovus/flower
…/02-repeat.t :27:
is ~$tal.parse($template, :items(@items)), $xml~'<test><tr><td>One</td><td>First</td></tr><tr><td>Two</td><td>Second</td></tr><tr><td>Three</td><td>Third</td></tr></test>', 'tal:repeat with nested elements and omit-tag';
supernovus/flower
…/02-repeat.t :32:
is ~$tal.parse($template, :items(@items)), $xml~'<test><tr><td>One</td><td>First</td></tr><tr><td>Two</td><td>Second</td></tr><tr><td>Three</td><td>Third</td></tr></test>', 'tal:block used in repeat';
supernovus/flower
…/02-repeat.t :36:
$template = '<table><tr tal:repeat="row rows"><td tal:repeat="col row"><div tal:define="x repeat/row/number; y repeat/col/number" tal:replace="string:${x} / ${y} = ${col}">row col</div></td></tr></table>';
supernovus/flower
…/02-repeat.t :44:
is ~$tal.parse($template, :rows(@rows)), $xml~'<table><tr><td>1 / 1 = 1.1</td><td>1 / 2 = 1.2</td><td>1 / 3 = 1.3</td></tr><tr><td>2 / 1 = …
supernovus/flower
…/02-repeat.t :50:
is ~$tal.parse($template, :items([1..4])), $xml~'<test><item id="0">Odd</item><item id="1">Even</item><item id="2">Odd</item><item id="3">Even</item></test>', 'repeat with odd and even conditionals';
supernovus/flower
…/02-repeat.t :56:
is ~$tal.parse($template, :items([1..4])), $xml~'<test><item>First</item><item>Inner</item><item>Inner</item><item length="4">Last</item></test>', 'repeat with start, end, inner and length.';
supernovus/flower
…/02-repeat.t :62:
is ~$tal.parse($template, :items([1..7])), $xml~'<test><item>Normal item</item><item>Normal item</item><item>Every third</item><item>Normal item</item><item>Normal item</item><item>Every third</item><item>Normal item</item></test>', 'repeat with every and skip';
supernovus/flower
…/02-repeat.t :68:
is ~$tal.parse($template, :items([1..5])), $xml~'<test><item>lt 3</item><item>lt 3</item><item>the third</item><item>gt 3</item><item>gt 3</item></test>', 'repeat with gt, lt and eq';
supernovus/flower
…/02-repeat.t :84:
is ~$tal.parse($template, options => @options), $xml~'<select><option value="a">Option 1</option><option '~$attrpos~'>Option 2</option><option value="c">Option 3</option></select>', 'attributes with undefined value';
supernovus/flower
…/03-default.t :17:
is ~$tal.parse($template), $xml~'<test><i>The default text</i></test>', 'tal:content with default';
supernovus/flower
…/03-default.t :23:
is ~$tal.parse($template), $xml~'<test>The default text</test>', 'tal:replace with default';
supernovus/flower
…/03-escape.t :15:
is ~$tal.parse($template, string=>'hello to you & your friend, "how are you?"'), $xml~'<test><escaped>hello to you &amp; your friend, &quot;how are you?&quot;</escaped><unescaped>hello to you & your friend, "how are you?"</unescaped></test>', 'XML escapes and structure keyword';
supernovus/flower
…/03-methods.t :24:
is ~$tal.parse($template, :self($person)), $xml~'<test><item>Why are you talking to yourself Tim?</item></test>', 'tal:content with method call';
supernovus/flower
…/03-methods.t :27:
is ~$tal.parse($template, :self($person)), $xml~'<test><item>Why are you talking to yourself weirdo?</item></test>', 'method call with no arguments.';
supernovus/flower
…/05-custom-modifiers.t :22:
is ~$tal.parse($template, crazy => 'hello world'), $xml~'<test>Woah, hello world, that\'s awesome!</test>', 'custom modifiers';
supernovus/flower
…/06-utils-debug.t :21:
is ~$tal.parse($template, object => %ahash), $xml~'<test><dump type="Hash">{"anarray" => ["one", "two", "three"]}</dump></test>', 'dump: and what: modifiers';
supernovus/flower
…/06-utils-list.t :20:
is ~$tal.parse($template, :items(['a'..'d'])), $xml~'<table><tr><td>a</td><td>b</td></tr><tr><td>c</td><td>d</td></tr></table>', 'group: modifier';
supernovus/flower
…/06-utils-list.t :27:
is ~$tal.parse($template, :items(@items)), $xml~'<fresh><i>1</i><i>2</i><i>3</i><i>5</i><i>7</i></fresh>', 'sort: modifier';
supernovus/flower
…/06-utils-list.t :33:
is ~$tal.parse($template, :items(@items)), $xml~'<reverse><i>2</i><i>1</i><i>7</i><i>3</i><i>5</i></reverse>', 'reverse: modifier';
supernovus/flower
…/06-utils-list.t :39:
is ~$tal.parse($template, :items(@items)), $xml~'<limit><i>5</i><i>3</i></limit>', 'limit: modifier';
supernovus/flower
…/06-utils-list.t :43:
$template = '<limit><i tal:repeat="item limit: items ${limit}" tal:content="item"/></limit>';
supernovus/flower
…/06-utils-list.t :45:
is ~$tal.parse($template, :items(@items), :limit(3)), $xml~'<limit><i>5</i><i>3</i><i>7</i></limit>', 'limit: modifier using a variable';
supernovus/flower
…/06-utils-text.t :14:
my $template = '<test><upper tal:content="uc:string:A test of ${name}, in uppercase."/></test>';
supernovus/flower
…/06-utils-text.t :19:
is ~$tal.parse($template, name => 'Flower'), $xml~'<test><upper>A TEST OF FLOWER, IN UPPERCASE.</upper></test>', 'uc: modifier';
supernovus/flower
…/06-utils-text.t :25:
is ~$tal.parse($template), $xml~'<test><lower>i am not yelling</lower></test>', 'lc: modifier';
supernovus/flower
…/06-utils-text.t :31:
is ~$tal.parse($template), $xml~'<test>Bob</test>', 'ucfirst: modifier';
supernovus/flower
…/06-utils-text.t :37:
is ~$tal.parse($template), $xml~'<test>endof</test>', 'substr: modifier';
supernovus/flower
…/06-utils-text.t :43:
is ~$tal.parse($template), $xml~'<test>endof...</test>', 'substr: modifier with ellipsis';
supernovus/flower
…/06-utils-text.t :49:
is ~$tal.parse($template), $xml~'<test>endoftheworld</test>', 'substr: modifier without length';
supernovus/flower
…/06-utils-text.t :53:
$template = '<test><printf tal:replace="printf: \'$%0.2f\' \'2.5\'"/></test>';
supernovus/flower
…/06-utils-text.t :55:
is ~$tal.parse($template), $xml~'<test>$2.50</test>', 'printf: modifier';
supernovus/flower
…/07-metal.t :18:
is ~$tal.parse($template), $xml~'<test><zool>Hello World</zool><zool>Hello World</zool></test>', 'metal:define-macro and metal:use-macro';
supernovus/flower
…/07-metal.t :23:
is ~$tal.parse($template), $xml~'<test><zool>Hello, World.</zool></test>', 'metal:use-macro with external reference.';
supernovus/flower
…/07-metal.t :28:
is ~$tal.parse($template), $xml~'<test><zarf>It is known, <orb>Yippie Kai Yay!</orb> What do you think?</zarf></test>', 'metal:define-slot and metal:fill-slot';
supernovus/perl6-web-app-ballet
…/README.md :74:
$c.send(template('hello', :$name)); ## Explicit template output.
supernovus/perl6-web-app-ballet
…/Ballet.pm6 :21:
sub set-template-engine (Str $name, Str $path = './views') is export
supernovus/perl6-web-app-ballet
…/Ballet.pm6 :25:
$app-template-engine = ::($module).new;
supernovus/perl6-web-app-ballet
…/Ballet.pm6 :26:
$app-template-engine.set-path: $path;
supernovus/perl6-web-app-ballet
…/Ballet.pm6 :29:
sub use-template6 (Str $path = './views') is export
supernovus/perl6-web-app-ballet
…/Ballet.pm6 :31:
set-template-engine('Template6', $path);
supernovus/perl6-web-app-ballet
…/Ballet.pm6 :36:
set-template-engine('Mojo', $path);
supernovus/perl6-web-app-ballet
…/Ballet.pm6 :41:
set-template-engine('TAL', $path);
supernovus/perl6-web-app-ballet
…/Ballet.pm6 :46:
set-template-engine('HTML', $path);
supernovus/perl6-web-app-ballet
…/Ballet.pm6 :144:
sub template (Str $template, *%named, *@positional) is export
supernovus/perl6-web-app-ballet
…/simple.p6 :22:
#template 'help', :$who;
supernovus/perl6-web-app-ballet
…/simple.p6 :24:
$c.send(template('help', :$who));
supernovus/perl6-web-template
…/HTML.pm6 :15:
$template = $path ~ $template-name;
supernovus/perl6-web-template
…/Mojo.pm6 :16:
$template-file = IO::Spec.catfile($path, $template-name);
supernovus/perl6-web-template
…/Mojo.pm6 :18:
$template-file = IO::Spec.catfile($path, $template-name ~ ".tm");
supernovus/perl6-web-template
…/Mojo.pm6 :22:
$template = slurp($template-file);
supernovus/perl6-web-template
…/Mojo.pm6 :27:
$template orelse die "No template file for '$template-name' was found.";
supernovus/perl6-web
…/File.pm6 :17:
my $temppath = "/tmp/wrf-$formname-{time}.$*PID";
supernovus/perl6-web
…/File.pm6 :19:
return self.bless(*, :$formname, :$filename, :$temppath, :$output);
supernovus/perl6-web
…/File.pm6 :24:
if $.temppath && $.temppath.IO ~~ :f {
supernovus/perl6-web
…/File.pm6 :68:
if $.temppath && $.temppath.IO ~~ :f {
supernovus/perl6-web
…/File.pm6 :85:
if $.temppath && $.temppath.IO ~~ :f {
supernovus/perl6-web
…/File.pm6 :129:
if $.temppath && $.temppath.IO ~~ :f {
supernovus/perl6-web
…/form.p6 :45:
my ($fakens, $tempfile, $filename) = $context.path.split('/');
supernovus/template6
…/Context.pm6 :70:
method add-template ($name, $template) {
supernovus/template6
…/Context.pm6 :76:
method get-template-text ($name is copy) {
supernovus/template6
…/Context.pm6 :91:
$template = $provider.fetch($name);
supernovus/template6
…/Context.pm6 :97:
method get-template-block ($name) {
supernovus/template6
…/Context.pm6 :107:
my $template = self.get-template-text($name);
supernovus/template6
…/Context.pm6 :112:
$template = $.parser.compile($template);
supernovus/template6
…/Context.pm6 :120:
my $template = $name;
supernovus/template6
…/Context.pm6 :122:
$template = self.get-template-block($template);
supernovus/template6
…/Context.pm6 :123:
if !$template.defined { die "Invalid template '$name'"; }
supernovus/template6
…/Context.pm6 :132:
# say "<template>\n$template\n</template>";
supernovus/template6
…/Parser.pm6 :10:
method !parse-template (@defs is copy, $localline)
supernovus/template6
…/Parser.pm6 :43:
for @templates -> $template is rw {
supernovus/template6
…/Parser.pm6 :45:
$template ~~ s/[\"|\']$//;
supernovus/template6
…/Parser.pm6 :48:
$return ~= "if \$template.defined \{ \$output ~= \$template; \}\n";
supernovus/template6
…/Parser.pm6 :56:
my $localline = 'my $template = $context.get-template-text($tfile);'~"\n";
supernovus/template6
…/Parser.pm6 :57:
return self!parse-template(@defs, $localline);
supernovus/template6
…/Parser.pm6 :62:
my $localline = 'my $template = $context.process($tfile, :localise, |%localdata);'~"\n";
supernovus/template6
…/Parser.pm6 :63:
return self!parse-template(@defs, $localline);
supernovus/template6
…/Parser.pm6 :68:
my $localline = 'my $template = $context.process($tfile, |%localdata);'~"\n";
supernovus/template6
…/Parser.pm6 :69:
return self!parse-template(@defs, $localline);
supernovus/template6
…/Parser.pm6 :195:
my @segments = $template.split(/\n?'[%' $<comment-signature>=(\#?) \s* $<tokens>=(.*?) \s* '%]'/, :v);
supernovus/template6
…/Parser.pm6 :207:
# $*ERR.say: "<DEBUG:template>\n$script\n</DEBUG:template>";
supernovus/template6
…/Provider.pm6 :24:
%.templates{$name} = $template;
supernovus/template6
…/File.pm6 :11:
if %.templates{$name} :exists {
supernovus/template6
…/File.pm6 :12:
return %.templates{$name};
supernovus/template6
…/File.pm6 :17:
my $template = slurp $file;
supernovus/template6
…/File.pm6 :18:
%.templates{$name} = $template;
supernovus/template6
…/String.pm6 :8:
if %.templates{$name} :exists {
supernovus/template6
…/String.pm6 :9:
return %.templates{$name};
supernovus/template6
…/Service.pm6 :32:
%params<template> = $template;
supernovus/template6
…/07-string-templates.t :22:
$t6.add-template: 'hello', $template;
sylvarant/Avro
…/Encode.pm :45:
sub template(int $length) {
sylvarant/Avro
…/Encode.pm :122:
pack(template($schema.size),$str.ords())
sylvarant/Avro
…/Encode.pm :139:
$stream.append( pack(template($str.codes()),$str.ords()) );
szabgab/Perl6-Maven
…/bootstrap.min.js :6:
!function(a){a(function(){"use strict",a.support.transition=function(){var a=function(){var a=document.createElement("bootstrap"),b={WebkitTransition…
szabgab/Perl6-Maven
…/Collector.pm6 :113:
process_template('archive.tmpl', { title => 'Archives', pages => from-json($json) });
szabgab/Perl6-Maven
…/Collector.pm6 :203:
return process_template('slides_chapter.tmpl', $data);
szabgab/Perl6-Maven
…/Tools.pm6 :38:
sub process_template($template, %params) is export {
szabgab/Perl6-Maven
…/Tools.pm6 :44:
my $tmpl = slurp("templates/$template");
tadzik/App-redpanda
…/redpanda :26:
my $tmpdir = tempdir(:tempdir($workdir), :!unlink);
tadzik/App-redpanda
…/redpanda :55:
my $tmpdir = tempdir(:tempdir($workdir), :!unlink);
tadzik/Module-Toolkit
…/Toolkit.pm :54:
temp $*CWD = chdir($where);
tadzik/Module-Toolkit
…/Fetcher.pm :48:
temp $*CWD = chdir($to);
tadzik/Template-Mojo
…/Mojo.pm :77:
make 'my ' ~ $<name> ~ ' = sub {temp $_M = "";';
tadzik/panda
…/Common.pm :19:
temp $*CWD = chdir($where);
tadzik/panda
…/Fetcher.pm :49:
temp $*CWD = chdir($to);
tokuhirom/p6-Crust
…/Builder.pm6 :92:
temp $_mount = sub (Str $location, Callable $block) {
tokuhirom/p6-Crust
…/Builder.pm6 :98:
temp $_add = sub ($middleware, |opts) {
tokuhirom/p6-Crust
…/Builder.pm6 :102:
temp $_add-if = sub (Callable $condition, $middleware, |opts) {
tokuhirom/p6-Crust
…/Static.pm6 :53:
temp %env<PATH_INFO> = $path;
tokuhirom/p6-Crust
…/Request.pm6 :136:
my ($tempfilepath, $tempfilefh);
tokuhirom/p6-Crust
…/Request.pm6 :148:
($tempfilepath, $tempfilefh) = tempfile();
tokuhirom/p6-Crust
…/Request.pm6 :153:
$tempfilefh.write($chunk);
tokuhirom/p6-HTTP-Server-Tiny
…/Tiny.pm6 :197:
$!input //= self!create-temp-buffer($!content-length);
tokuhirom/p6-HTTP-Server-Tiny
…/Tiny.pm6 :399:
method !create-temp-buffer($len) {
tony-o/p6-warthog
…/Query.pm6 :4:
die "Attempting to find \$*{@path[0].uc}.{@path[1..*].join('.')}"
tony-o/perl6-data-dump
…/Dump.pm6 :46:
temp $colorizor = sub (Str $s) { '' } unless $color;
tony-o/perl6-flow
…/TAP.pm6 :4:
has $.template = "perl6 -Ilib \$FILE 2>&1";
tony-o/perl6-hiker
…/hiker :40:
"==> Creating template {$*SPEC.catpath('', $templates, 'Route1.mustache')}".say;
tony-o/perl6-hiker
…/hiker :51:
templates => '$templates',
tony-o/perl6-hiker
…/Hiker.pm6 :90:
my $template = $obj.template;
tony-o/perl6-hiker
…/Hiker.pm6 :110:
$res.template = $*SPEC.catpath('', $.templates, $template);
tony-o/perl6-http-server-router-yaml
…/YAML.pm6 :20:
"Attempting to require $module".say if $DEBUG;
tony-o/perl6-http-server-router-yaml
…/YAML.pm6 :22:
"Attempting to reference {$module}::EXPORT::DEFAULT::&{$sub}".say if $DEBUG;
tony-o/perl6-template-protone
…/Protone.pm6 :11:
method parse(:$template is copy, :$name?) {
tony-o/perl6-template-protone
…/Protone.pm6 :13:
$template = $template.IO.slurp;
tony-o/perl6-template-protone
…/Protone.pm6 :19:
while ($template.index($.open) !~~ Nil) {
tony-o/perl6-template-protone
…/Protone.pm6 :20:
$from = $template.index($.open);
tony-o/perl6-template-protone
…/Protone.pm6 :21:
$code ~= ' print \'' ~ $template.substr(0, $from).subst('\'', '\\\'') ~ '\'; ' if ! $.trim || $template.substr(0, $from).trim.chars > 0;
tony-o/perl6-template-protone
…/Protone.pm6 :22:
$to = $template.index($.close, $from + $.open.chars);
tony-o/perl6-template-protone
…/Protone.pm6 :23:
$code ~= "\n" ~ $template.substr($from + $.open.chars, $to - $from - $.close.chars - $.open.chars + 1);
tony-o/perl6-template-protone
…/Protone.pm6 :24:
$template .=substr($to + $.close.chars);
tony-o/perl6-template-protone
…/Protone.pm6 :37:
multi method render(Str :$template, :$data? = Nil) {
tony-o/perl6-template-protone
…/Protone.pm6 :39:
return $.render($.parse(:$template), :$data);
ufobat/perl6-Temp-Path
…/README.md :31:
temp $*TMPDIR = make-temp-dir :chmod<0o700>;
ufobat/perl6-Temp-Path
…/README.md :78:
sub term:<make-temp-dir> (Int :$chmod, Str() :$prefix = '', Str() :$suffix = '' --> IO::Path:D)
ufobat/perl6-Temp-Path
…/README.md :84:
Note that currently `.mkdir` pays attention to umask and `make-temp-dir` will first the `:$chmod` to…
ufobat/perl6-Temp-Path
…/path.p6 :21:
temp $*TMPDIR = make-temp-dir :chmod<700>;
ufobat/perl6-Temp-Path
…/Path.pm6 :101:
temp $*TMPDIR = make-temp-dir :chmod<0o700>;
ufobat/perl6-Temp-Path
…/Path.pm6 :167:
sub term:<make-temp-dir> (Int :$chmod, Str() :$prefix = '', Str() :$suffix = '' --> IO::Path:D)
ufobat/perl6-Temp-Path
…/01-make-temp-path.t :10:
with make-temp-path { is $_, IO::Path, 'no gobbling of blocks' }
ufobat/perl6-Temp-Path
…/01-make-temp-path.t :22:
is ($file and $file.IO.e), *.not, "temp file got deleted ($file)";
ufobat/perl6-Temp-Path
…/01-make-temp-path.t :26:
is make-temp-path :content($_) .slurp,
ufobat/perl6-Temp-Path
…/01-make-temp-path.t :30:
is make-temp-path :content($_) :chmod<0o666> .slurp,
ufobat/perl6-Temp-Path
…/01-make-temp-path.t :38:
is make-temp-path :chmod($m) .mode, $m, ":chmod(0o{$m.fmt("%o")}) works";
ufobat/perl6-Temp-Path
…/01-make-temp-path.t :39:
with make-temp-path :content("foos$m") :chmod($m) {
ufobat/perl6-Temp-Path
…/02-make-temp-dir.t :9:
with make-temp-dir { is $_, IO::Path, 'no gobbling of blocks' }
ufobat/perl6-Temp-Path
…/02-make-temp-dir.t :18:
is ($dir and $dir.IO.e), *.not, "temp dir got deleted ($dir)";
ufobat/perl6-Temp-Path
…/02-make-temp-dir.t :23:
is make-temp-dir :chmod($m) .mode, $m, ":chmod(0o{$m.fmt("%o")}) works";
ufobat/perl6-Temp-Path
…/03-DESTROY.t :15:
temp $*TMPDIR = make-temp-dir;
ufobat/perl6-Temp-Path
…/03-DESTROY.t :33:
temp $*TMPDIR = make-temp-dir;
ugexe/Perl6-CompUnit--Repository--Github
…/Github.pm6 :225:
my $temp-repo-dir = $*TMPDIR.child($*REPO.id);
ugexe/Perl6-CompUnit--Repository--Github
…/Github.pm6 :226:
my $temp-dist-dir = $temp-repo-dir.child($dist.id);
ugexe/Perl6-CompUnit--Repository--Github
…/Github.pm6 :227:
my $temp-file = $temp-dist-dir.child($key);
ugexe/Perl6-CompUnit--Repository--Github
…/Github.pm6 :229:
mkdir $temp-repo-dir unless $temp-repo-dir.e;
ugexe/Perl6-CompUnit--Repository--Github
…/Github.pm6 :230:
mkdir $temp-dist-dir unless $temp-dist-dir.e;
ugexe/Perl6-CompUnit--Repository--Github
…/Github.pm6 :231:
mkdir $temp-file.parent unless $temp-file.parent.e;
ugexe/Perl6-CompUnit--Repository--Github
…/Github.pm6 :236:
spurt $temp-file, $resource-bytes;
ugexe/Perl6-CompUnit--Repository--Tar
…/Tar.pm6 :226:
my $temp-repo-dir = $*TMPDIR.child($*REPO.id);
ugexe/Perl6-CompUnit--Repository--Tar
…/Tar.pm6 :227:
my $temp-dist-dir = $temp-repo-dir.child($dist.id);
ugexe/Perl6-CompUnit--Repository--Tar
…/Tar.pm6 :228:
my $temp-file = $temp-dist-dir.child($key);
ugexe/Perl6-CompUnit--Repository--Tar
…/Tar.pm6 :230:
mkdir $temp-repo-dir unless $temp-repo-dir.e;
ugexe/Perl6-CompUnit--Repository--Tar
…/Tar.pm6 :231:
mkdir $temp-dist-dir unless $temp-dist-dir.e;
ugexe/Perl6-CompUnit--Repository--Tar
…/Tar.pm6 :232:
mkdir $temp-file.parent unless $temp-file.parent.e;
ugexe/Perl6-CompUnit--Repository--Tar
…/Tar.pm6 :237:
spurt $temp-file, $resource-bytes;
ugexe/Perl6-PathTools
…/PathTools.pm6 :29:
sub mktemp($path = &tmppath(), Bool :$f = False, *%_) is export {
ugexe/Perl6-PathTools
…/PathTools.pm6 :30:
die "Cannot call mktemp with a path that already exists" if $path.IO.e;
ugexe/zef
…/README.pod :421:
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 a f…
ugexe/zef
…/MetaCPAN.pm6 :49:
temp %fields<distribution> = $spec.name.subst('::', '-', :g)
ugexe/zef
…/MetaCPAN.pm6 :51:
temp %fields<version> = $spec.version-matcher.subst(/^v?/, '?')
ugexe/zef
…/MetaCPAN.pm6 :63:
# temp %fields<author> = $wants-spec.auth-matcher.match(/^.*? ':' (.*)$/)[0].Str
ugexe/zef
…/TAP.pm6 :28:
temp $*OUT = $stdout;
ugexe/zef
…/TAP.pm6 :37:
temp $*ERR = $stderr;
ugexe/zef
…/SystemQuery.pm6 :7:
die "Attempting to find \$*{@path[0].uc}.{@path[1..*].join('.')}"
ugexe/zef
…/utils-filesystem.t :12:
temp $save-to = $save-to.child(++$dir-id);
ugexe/zef
…/utils-filesystem.t :48:
temp $save-to = $save-to.child(++$dir-id);
ugexe/zef
…/utils-filesystem.t :86:
temp $save-to = $save-to.child(++$dir-id);
ugexe/zef
…/utils-filesystem.t :126:
temp $save-to = $save-to.child(++$dir-id);
ugexe/zef
…/install.t :36:
temp $*OUT = class :: { method print(|) {}; method flush(|) {}; };
ugexe/zef
…/install.t :78:
temp $client.force-install = True;
vendethiel/Sprockets.pl
…/Filter.pm6 :3:
sub temporary-filename(Str $prefix) {
viklund/november
…/November.pm :377:
my $template = HTML::Template.from_file($.config.template_path ~ $tmpl);
viklund/november
…/November.pm :74:
$template->param(ACTION => $cgi->param('action'));
viklund/november
…/November.pm :75:
$template->param(LOGGED_IN => logged_in($cgi));
viklund/november
…/November.pm :427:
$template->param(TITLE => pp($page));
viklund/november
…/November.pm :428:
$template->param(LOGGED_IN => logged_in($cgi));
viklund/november
…/November.pm :456:
$template->param(PAGE => $page);
viklund/november
…/November.pm :457:
$template->param(TITLE => pp($page));
viklund/november
…/November.pm :458:
$template->param(VIEW_PAGE => 1) unless $revision;
viklund/november
…/November.pm :480:
$template->param(CONTENT => $contents);
viklund/november
…/November.pm :500:
$template->param('PAGETAGS' => $page_tags);
viklund/november
…/November.pm :517:
$template->param(LOGGED_IN => logged_in($cgi));
viklund/november
…/November.pm :559:
$template->param(PAGE => $page);
viklund/november
…/November.pm :560:
$template->param(TITLE => pp($page));
viklund/november
…/November.pm :561:
$template->param(LOGGED_IN => logged_in($cgi));
viklund/november
…/November.pm :580:
$template->param(PAGE => $page);
viklund/november
…/November.pm :581:
$template->param(ACTION => $action);
viklund/november
…/November.pm :582:
$template->param(TITLE => pp($page));
viklund/november
…/November.pm :583:
$template->param(PAGETAGS => read_page_tags($page));
viklund/november
…/November.pm :584:
$template->param(CONTENT => $old_content);
viklund/november
…/November.pm :585:
$template->param(OLD_REV => $old_revision);
viklund/november
…/November.pm :586:
$template->param(LOGGED_IN => logged_in($cgi));
viklund/november
…/November.pm :630:
$template->param(PAGE => $page);
viklund/november
…/November.pm :631:
$template->param(TITLE => pp($page));
viklund/november
…/November.pm :633:
$template->param(LOGGED_IN => logged_in($cgi));
viklund/november
…/November.pm :666:
$template->param(PAGE => $page);
viklund/november
…/November.pm :667:
$template->param(TITLE => pp($page));
viklund/november
…/November.pm :669:
$template->param(LOGGED_IN => logged_in($cgi));
viklund/november
…/November.pm :785:
$template->param(LOGGED_IN => logged_in($cgi));
viklund/november
…/November.pm :816:
$template->param('TAGS' => $cloud_tags);
viklund/november
…/November.pm :824:
$template->param(TITLE => qq[Articles with tag "$tag"]);
viklund/november
…/November.pm :842:
$template->param(CONTENT => $list);
viklund/november
…/November.pm :843:
$template->param(LOGGED_IN => logged_in($cgi));
viklund/november
…/article.rtf :617:
\ltrch\fcs0 \b0\f2\fs24\cf0\lang1033\langfe1033\langnp1033\insrsid13313833 $template = HTML::Template.new(\line }{\rtlch\fcs1 \ab0\af2\afs24 \ltrch\fcs0 \b0\f2\fs24\cf0\lang1033\langfe1033\langnp1033\insrsid13313833\charrsid1801628 filename => $.te
viklund/november
…/article.rtf :619:
\par $templa}{\rtlch\fcs1 \ab0\af2\afs24 \ltrch\fcs0 \b0\f2\fs24\cf0\lang1033\langfe1033\langnp1033\insrsid13313833 te.param('PAGE' => $page);\line }{\rtlch\fcs1 \ab0\af2\afs24 \ltrch\fcs0
viklund/november
…/article.rtf :620:
\b0\f2\fs24\cf0\lang1033\langfe1033\langnp1033\insrsid13313833\charrsid1801628 $templat}{\rtlch\fcs1 \ab0\af2\afs24 \ltrch\fcs0 \b0\f2\fs24\cf0\lang1033\langfe1033\langnp1033\insrsid13313833 e.param('TITLE' => $title);\line }{\rtlch\fcs1
viklund/november
…/article.rtf :621:
\ab0\af2\afs24 \ltrch\fcs0 \b0\f2\fs24\cf0\lang1033\langfe1033\langnp1033\insrsid13313833\charrsid1801628 $template.para}{\rtlch\fcs1 \ab0\af2\afs24 \ltrch\fcs0 \b0\f2\fs24\cf0\lang1033\langfe1033\langnp1033\insrsid13313833 m('CONTENT' => $old_content);
viklund/november
…/article.rtf :670:
\b\fs26\cf18\lang1049\langfe1033\loch\af31502\hich\af31502\dbch\af31501\cgrid\langnp1049\langfenp1033 {\rtlch\fcs1 \ab0\af2\afs24 \ltrch\fcs0 \b0\f2\fs24\cf0\lang1033\langfe1033\langnp1033\insrsid9719291\charrsid9719291 $template = slurp( $.filename );}{
whity/perl6-hematite
…/Context.pm6 :253:
my Str $content_type = $type eq 'template' ?? $format !! $type;
whity/perl6-hematite
…/Templates.pm6 :30:
method render-template(Str $name, :%data = {}, *%args) returns Str {
whity/perl6-hematite
…/Templates.pm6 :32:
my Str $template = %!cache{$name};
whity/perl6-hematite
…/Templates.pm6 :48:
$template = $filepath.slurp;
whity/perl6-hematite
…/Templates.pm6 :55:
# render($template-name) ; render($template-string, inline => True)
whity/perl6-hematite
…/Templates.pm6 :61:
return self.render-template($data, |%args);
whity/perl6-hematite
…/000-html-template.t :12:
my %templates = read-all-templates($templates_dir, %templates_data);
whity/perl6-hematite
…/000-html-template.t :86:
sub read-all-templates(Str $templates_dir, %data) {
whity/perl6-hematite
…/000-html-template.t :98:
%templates{$filename} = $contents;
wollmers/P6-LCS-All
…/All.pm :42:
push @temp, [$hunk];
wollmers/P6-LCS-All
…/All.pm :45:
push @temp, [(@($path), $hunk).flat];
zag/plosurin
…/Plosurin.pm :148:
for $<def_template>.list -> $template {
zag/plosurin
…/Plosurin.pm :187:
die "bad template header at line: $line : pos $column " ~" near:"
zag/plosurin
…/Plosurin.pm :194:
'{template' $<template_name>=<tmpl_name>'}'
zag/plosurin
…/Plosurin.pm :218:
for @templates -> $tmpl {
zag/plosurin
…/t01.t :28:
for @lexer_tests -> $template, $check, $test_name {
zoffixznet/perl6-IO-CatHandle-AutoLines
…/01-CatHandle.t :10:
.map: { make-temp-path :content($_) }
zoffixznet/perl6-IO-Path-ChildSecure
…/01-operation.t :32:
sub make-temp-dir (Int $chmod? --> IO::Path:D) is export {
zoffixznet/perl6-IRC-Client
…/02-trickster-bot.p6 :6:
multi method irc-to-me ($ where /temp \s+ $<temp>=\d+ $<unit>=[F|C]/) {
zoffixznet/perl6-IRC-Client
…/Client.pm6 :180:
$!debug and debug-print 'Attempting to connect to server', :out, :$server;
zoffixznet/perl6-p6lert
…/p6lert :77:
temp $color = {''} if $no-color;
zostay/p6-Path-Router
…/Router.pm6 :162:
debug("> Attempting to match ", $route.path, " to (", @keys.join(" / "), ")");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment