| Filename | /usr/lib/x86_64-linux-gnu/perl5/5.20/Template/Stash/XS.pm | 
| Statements | Executed 11 statements in 30µs | 
| Calls | P | F | Exclusive Time  | 
        Inclusive Time  | 
        Subroutine | 
|---|---|---|---|---|---|
| 1 | 1 | 1 | 3.67ms | 9.32ms | Template::Stash::XS::BEGIN@17 | 
| 366 | 98 | 11 | 1.92ms | 44.1ms | Template::Stash::XS::get (xsub) | 
| 112 | 13 | 7 | 453µs | 453µs | Template::Stash::XS::set (xsub) | 
| 44 | 4 | 4 | 77µs | 77µs | Template::Stash::XS::DESTROY | 
| 1 | 1 | 1 | 34µs | 302µs | Template::Stash::XS::BEGIN@21 | 
| 1 | 1 | 1 | 17µs | 27µs | Template::Stash::XS::BEGIN@14 | 
| 1 | 1 | 1 | 10µs | 16µs | Template::Stash::XS::BEGIN@15 | 
| 1 | 1 | 1 | 6µs | 6µs | Template::Stash::XS::BEGIN@16 | 
| 0 | 0 | 0 | 0s | 0s | Template::Stash::XS::AUTOLOAD | 
| Line | State ments  | 
      Time on line  | 
      Calls | Time in subs  | 
      Code | 
|---|---|---|---|---|---|
| 1 | #============================================================= -*-Perl-*- | ||||
| 2 | # | ||||
| 3 | # Template::Stash::XS | ||||
| 4 | # | ||||
| 5 | # DESCRIPTION | ||||
| 6 | # | ||||
| 7 | # Perl bootstrap for XS module. Inherits methods from | ||||
| 8 | # Template::Stash when not implemented in the XS module. | ||||
| 9 | # | ||||
| 10 | #======================================================================== | ||||
| 11 | |||||
| 12 | package Template::Stash::XS; | ||||
| 13 | |||||
| 14 | 2 | 37µs | # spent 27µs (17+10) within Template::Stash::XS::BEGIN@14 which was called:
#    once (17µs+10µs) by Template::Config::load at line 14 # spent    27µs making 1 call to Template::Stash::XS::BEGIN@14
# spent    10µs making 1 call to strict::import  | ||
| 15 | 2 | 23µs | # spent 16µs (10+7) within Template::Stash::XS::BEGIN@15 which was called:
#    once (10µs+7µs) by Template::Config::load at line 15 # spent    16µs making 1 call to Template::Stash::XS::BEGIN@15
# spent     7µs making 1 call to warnings::import  | ||
| 16 | 1 | 6µs | # spent 6µs within Template::Stash::XS::BEGIN@16 which was called:
#    once (6µs+0s) by Template::Config::load at line 16 # spent     6µs making 1 call to Template::Stash::XS::BEGIN@16  | ||
| 17 | 1 | 9.32ms | # spent 9.32ms (3.67+5.66) within Template::Stash::XS::BEGIN@17 which was called:
#    once (3.67ms+5.66ms) by Template::Config::load at line 17 # spent  9.32ms making 1 call to Template::Stash::XS::BEGIN@17  | ||
| 18 | |||||
| 19 | our $AUTOLOAD; | ||||
| 20 | |||||
| 21 | # spent 302µs (34+268) within Template::Stash::XS::BEGIN@21 which was called:
#    once (34µs+268µs) by Template::Config::load at line 31  | ||||
| 22 | require DynaLoader; | ||||
| 23 | @Template::Stash::XS::ISA = qw( DynaLoader Template::Stash ); | ||||
| 24 | |||||
| 25 | eval { | ||||
| 26 | 1 | 268µs |         bootstrap Template::Stash::XS $Template::VERSION;         # spent   268µs making 1 call to DynaLoader::bootstrap  | ||
| 27 | }; | ||||
| 28 | if ($@) { | ||||
| 29 | die "Couldn't load Template::Stash::XS $Template::VERSION:\n\n$@\n"; | ||||
| 30 | } | ||||
| 31 | 1 | 302µs | } # spent   302µs making 1 call to Template::Stash::XS::BEGIN@21  | ||
| 32 | |||||
| 33 | # spent 77µs within Template::Stash::XS::DESTROY which was called 44 times, avg 2µs/call:
# 36 times (70µs+0s) by Template::Context::process at line 409 of Template/Context.pm, avg 2µs/call
#  4 times (3µs+0s) by Template::Service::process at line 125 of Template/Service.pm, avg 700ns/call
#  3 times (4µs+0s) by CGI::Compile::ROOT::home_vagrant_kohaclone_errors_404_2epl::__ANON__[/home/vagrant/kohaclone/errors/404.pl:58] at line 2 of errors/404.pl, avg 1µs/call
#     once (900ns+0s) by CGI::Compile::ROOT::home_vagrant_kohaclone_mainpage_2epl::__ANON__[/home/vagrant/kohaclone/mainpage.pl:107] at line 2 of mainpage.pl  | ||||
| 34 | # no op | ||||
| 35 | 11 | 30µs | 1; | ||
| 36 | } | ||||
| 37 | |||||
| 38 | |||||
| 39 | # catch missing method calls here so perl doesn't barf | ||||
| 40 | # trying to load *.al files | ||||
| 41 | |||||
| 42 | sub AUTOLOAD { | ||||
| 43 | my ($self, @args) = @_; | ||||
| 44 | my @c = caller(0); | ||||
| 45 | my $auto = $AUTOLOAD; | ||||
| 46 | |||||
| 47 | $auto =~ s/.*:://; | ||||
| 48 | $self =~ s/=.*//; | ||||
| 49 | |||||
| 50 | die "Can't locate object method \"$auto\"" . | ||||
| 51 | " via package \"$self\" at $c[1] line $c[2]\n"; | ||||
| 52 | } | ||||
| 53 | |||||
| 54 | 1; | ||||
| 55 | |||||
| 56 | __END__ | ||||
# spent 44.1ms (1.92+42.2) within Template::Stash::XS::get which was called 366 times, avg 120µs/call:
# 40 times (373µs+18µs) by Template::Context::process at line 323 of Template/Context.pm, avg 10µs/call
# 12 times (40µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 5 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 3µs/call
# 10 times (23µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 158 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt, avg 2µs/call
#  8 times (133µs+21.6ms) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 87 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 2.72ms/call
#  8 times (87µs+17µs) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc:36] at line 24 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc, avg 13µs/call
#  8 times (20µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/intranetstylesheet.inc:28] at line 5 of koha-tmpl/intranet-tmpl/prog/en/includes/intranetstylesheet.inc, avg 3µs/call
#  6 times (17µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 178 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt, avg 3µs/call
#  4 times (75µs+16.9ms) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc:36] at line 22 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc, avg 4.24ms/call
#  4 times (150µs+230µs) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc:36] at line 2 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc, avg 95µs/call
#  4 times (61µs+102µs) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 58 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 41µs/call
#  4 times (33µs+120µs) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 80 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 38µs/call
#  4 times (48µs+100µs) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/intranetstylesheet.inc:28] at line 6 of koha-tmpl/intranet-tmpl/prog/en/includes/intranetstylesheet.inc, avg 37µs/call
#  4 times (54µs+85µs) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc:62] at line 31 of koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc, avg 35µs/call
#  4 times (38µs+14µs) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/intranet-bottom.inc:94] at line 67 of koha-tmpl/intranet-tmpl/prog/en/includes/intranet-bottom.inc, avg 13µs/call
#  4 times (33µs+15µs) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 12 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 12µs/call
#  4 times (27µs+15µs) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc:62] at line 36 of koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc, avg 11µs/call
#  4 times (22µs+6µs) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 24 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 7µs/call
#  4 times (19µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 11 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 5µs/call
#  4 times (17µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 176 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt, avg 4µs/call
#  4 times (15µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 75 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 4µs/call
#  4 times (14µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 37 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 4µs/call
#  4 times (14µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 88 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 4µs/call
#  4 times (13µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 5 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 3µs/call
#  4 times (13µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 28 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 3µs/call
#  4 times (12µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/intranetstylesheet.inc:28] at line 1 of koha-tmpl/intranet-tmpl/prog/en/includes/intranetstylesheet.inc, avg 3µs/call
#  4 times (12µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 6 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 3µs/call
#  4 times (12µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 37 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 3µs/call
#  4 times (12µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 21 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 3µs/call
#  4 times (12µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 105 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 3µs/call
#  4 times (11µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 18 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 3µs/call
#  4 times (11µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 34 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 3µs/call
#  4 times (11µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 10 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 3µs/call
#  4 times (11µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 57 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 3µs/call
#  4 times (11µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 31 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 3µs/call
#  4 times (11µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 7 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 3µs/call
#  4 times (11µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 59 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 3µs/call
#  4 times (11µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 61 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 3µs/call
#  4 times (11µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 46 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 3µs/call
#  4 times (10µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc:62] at line 50 of koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc, avg 3µs/call
#  4 times (10µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 14 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 3µs/call
#  4 times (10µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 25 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 3µs/call
#  4 times (10µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 25 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 3µs/call
#  4 times (10µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 56 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 2µs/call
#  4 times (10µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 10 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 2µs/call
#  4 times (10µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 17 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 2µs/call
#  4 times (10µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 20 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 2µs/call
#  4 times (10µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 9 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 2µs/call
#  4 times (10µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 66 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 2µs/call
#  4 times (10µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 18 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 2µs/call
#  4 times (10µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 28 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 2µs/call
#  4 times (9µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 16 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 2µs/call
#  4 times (9µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 57 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 2µs/call
#  4 times (9µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 83 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 2µs/call
#  4 times (9µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc:62] at line 23 of koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc, avg 2µs/call
#  4 times (9µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/intranetstylesheet.inc:28] at line 15 of koha-tmpl/intranet-tmpl/prog/en/includes/intranetstylesheet.inc, avg 2µs/call
#  4 times (9µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 108 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 2µs/call
#  4 times (9µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 86 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 2µs/call
#  4 times (9µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc:62] at line 47 of koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc, avg 2µs/call
#  4 times (9µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 15 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 2µs/call
#  4 times (9µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 19 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 2µs/call
#  4 times (9µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 7 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 2µs/call
#  4 times (9µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 8 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 2µs/call
#  3 times (12µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/errors/404.tt:45] at line 29 of koha-tmpl/intranet-tmpl/prog/en/modules/errors/404.tt, avg 4µs/call
#  3 times (12µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc:41] at line 15 of koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc, avg 4µs/call
#  3 times (9µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc:41] at line 2 of koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc, avg 3µs/call
#  3 times (8µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc:41] at line 27 of koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc, avg 3µs/call
#  3 times (8µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc:41] at line 24 of koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc, avg 2µs/call
#  3 times (7µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc:41] at line 29 of koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc, avg 2µs/call
#  3 times (7µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc:41] at line 28 of koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc, avg 2µs/call
#  2 times (8µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 177 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt, avg 4µs/call
#  2 times (7µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 180 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt, avg 4µs/call
#  2 times (7µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 181 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt, avg 4µs/call
#  2 times (4µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 183 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt, avg 2µs/call
#     once (25µs+2.92ms) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 174 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (11µs+4µs) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 198 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (9µs+3µs) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 25 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (4µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 4 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (4µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc:48] at line 2 of koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc
#     once (3µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc:48] at line 13 of koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc
#     once (3µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 190 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (3µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 90 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (3µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 40 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (3µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc:48] at line 30 of koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc
#     once (3µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 34 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (3µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 46 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (3µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 188 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (3µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc:48] at line 35 of koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc
#     once (2µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 62 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (2µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 103 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (2µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 97 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (2µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 56 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (2µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 77 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (2µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 84 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (2µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 167 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (2µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc:48] at line 36 of koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc
#     once (2µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc:48] at line 22 of koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc
#     once (2µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc:48] at line 33 of koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc
#     once (2µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc:48] at line 34 of koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc  | |||||
# spent 453µs within Template::Stash::XS::set which was called 112 times, avg 4µs/call:
# 40 times (171µs+0s) by Template::Context::process at line 337 of Template/Context.pm, avg 4µs/call
# 40 times (136µs+0s) by Template::Context::process at line 376 of Template/Context.pm, avg 3µs/call
#  4 times (23µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc:120] at line 2 of koha-tmpl/intranet-tmpl/prog/en/includes/header.inc, avg 6µs/call
#  4 times (21µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 4 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 5µs/call
#  4 times (19µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc:36] at line 5 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc, avg 5µs/call
#  4 times (18µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 3 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 4µs/call
#  4 times (15µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc:99] at line 2 of koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc, avg 4µs/call
#  4 times (15µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc:62] at line 2 of koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc, avg 4µs/call
#  4 times (11µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/includes/intranetstylesheet.inc:28] at line 1 of koha-tmpl/intranet-tmpl/prog/en/includes/intranetstylesheet.inc, avg 3µs/call
#     once (12µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 174 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (6µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 199 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (4µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 2 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
#     once (3µs+0s) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 189 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt  |