← Index
NYTProf Performance Profile   « line view »
For script/ponapi
  Run on Wed Feb 10 15:51:26 2016
Reported on Thu Feb 11 09:43:09 2016

Filename/home/mickey/git_tree/PONAPI/Server/lib/PONAPI/CLI/Command/manual.pm
StatementsExecuted 9 statements in 1.05ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1118.94ms12.3msPONAPI::CLI::Command::manual::::BEGIN@9PONAPI::CLI::Command::manual::BEGIN@9
11118µs200µsPONAPI::CLI::Command::manual::::BEGIN@4PONAPI::CLI::Command::manual::BEGIN@4
1118µs13µsPONAPI::CLI::Command::manual::::BEGIN@7PONAPI::CLI::Command::manual::BEGIN@7
1116µs18µsPONAPI::CLI::Command::manual::::BEGIN@6PONAPI::CLI::Command::manual::BEGIN@6
0000s0sPONAPI::CLI::Command::manual::::abstractPONAPI::CLI::Command::manual::abstract
0000s0sPONAPI::CLI::Command::manual::::descriptionPONAPI::CLI::Command::manual::description
0000s0sPONAPI::CLI::Command::manual::::executePONAPI::CLI::Command::manual::execute
0000s0sPONAPI::CLI::Command::manual::::opt_specPONAPI::CLI::Command::manual::opt_spec
0000s0sPONAPI::CLI::Command::manual::::validate_argsPONAPI::CLI::Command::manual::validate_args
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1# ABSTRACT: ponapi manual
2package PONAPI::CLI::Command::manual;
3
4228µs2382µs
# spent 200µs (18+182) within PONAPI::CLI::Command::manual::BEGIN@4 which was called: # once (18µs+182µs) by Module::Runtime::require_module at line 4
use PONAPI::CLI -command;
# spent 200µs making 1 call to PONAPI::CLI::Command::manual::BEGIN@4 # spent 182µs making 1 call to Sub::Exporter::__ANON__[Sub/Exporter.pm:337]
5
6220µs229µs
# spent 18µs (6+12) within PONAPI::CLI::Command::manual::BEGIN@6 which was called: # once (6µs+12µs) by Module::Runtime::require_module at line 6
use strict;
# spent 18µs making 1 call to PONAPI::CLI::Command::manual::BEGIN@6 # spent 12µs making 1 call to strict::import
7219µs217µs
# spent 13µs (8+5) within PONAPI::CLI::Command::manual::BEGIN@7 which was called: # once (8µs+5µs) by Module::Runtime::require_module at line 7
use warnings;
# spent 13µs making 1 call to PONAPI::CLI::Command::manual::BEGIN@7 # spent 5µs making 1 call to warnings::import
8
92977µs112.3ms
# spent 12.3ms (8.94+3.33) within PONAPI::CLI::Command::manual::BEGIN@9 which was called: # once (8.94ms+3.33ms) by Module::Runtime::require_module at line 9
use Pod::Perldoc;
# spent 12.3ms making 1 call to PONAPI::CLI::Command::manual::BEGIN@9
10
11sub abstract { "Show the PONAPI server manual" }
12sub description { "This tool will run perldoc PONAPI::Manual" }
13sub opt_spec {}
14sub validate_args {}
15
16sub execute {
17 local $ARGV[0] = "PONAPI::Manual";
18 Pod::Perldoc->run()
19}
20
2112µs1;