← Index
NYTProf Performance Profile   « block view • line view • sub view »
For xt/tapper-mcp-scheduler-with-db-longrun.t
  Run on Tue May 22 17:18:39 2012
Reported on Tue May 22 17:23:09 2012

Filename/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3/Tapper/Schema/TestrunDB/Result/Preconditiontype.pm
StatementsExecuted 18 statements in 229µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11110µs10µsTapper::Schema::TestrunDB::Result::Preconditiontype::::BEGIN@2Tapper::Schema::TestrunDB::Result::Preconditiontype::BEGIN@2
11110µs24µsTapper::Schema::TestrunDB::Result::Preconditiontype::::BEGIN@10Tapper::Schema::TestrunDB::Result::Preconditiontype::BEGIN@10
1119µs41µsTapper::Schema::TestrunDB::Result::Preconditiontype::::BEGIN@25Tapper::Schema::TestrunDB::Result::Preconditiontype::BEGIN@25
1118µs13µsTapper::Schema::TestrunDB::Result::Preconditiontype::::BEGIN@9Tapper::Schema::TestrunDB::Result::Preconditiontype::BEGIN@9
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Tapper::Schema::TestrunDB::Result::Preconditiontype;
2
# spent 10µs within Tapper::Schema::TestrunDB::Result::Preconditiontype::BEGIN@2 which was called: # once (10µs+0s) by Class::C3::Componentised::ensure_class_loaded at line 4
BEGIN {
314µs $Tapper::Schema::TestrunDB::Result::Preconditiontype::AUTHORITY = 'cpan:AMD';
4125µs110µs}
5{
62900ns $Tapper::Schema::TestrunDB::Result::Preconditiontype::VERSION = '0.001';
7}
8
9319µs217µs
# spent 13µs (8+4) within Tapper::Schema::TestrunDB::Result::Preconditiontype::BEGIN@9 which was called: # once (8µs+4µs) by Class::C3::Componentised::ensure_class_loaded at line 9
use strict;
# spent 13µs making 1 call to Tapper::Schema::TestrunDB::Result::Preconditiontype::BEGIN@9 # spent 4µs making 1 call to strict::import
10348µs239µs
# spent 24µs (10+15) within Tapper::Schema::TestrunDB::Result::Preconditiontype::BEGIN@10 which was called: # once (10µs+15µs) by Class::C3::Componentised::ensure_class_loaded at line 10
use warnings;
# spent 24µs making 1 call to Tapper::Schema::TestrunDB::Result::Preconditiontype::BEGIN@10 # spent 15µs making 1 call to warnings::import
11
1216µsour %preconditiontype_description =
13 (
14 package => 'a package, might be a kernel, eg. .tgz, .rpm, ...',
15 image => 'a complete os image, .tgz, .iso, ...',
16 subdir => 'a subdir that can just be copied/rsynced',
17 xen => 'a setup description for a Xen based host+guests',
18 kvm => 'a setup description for a KVM based host+guests',
19 dist_xen => 'Xen environment of a particular distribution',
20 dist_kvm => 'KVM environment of a particular distribution',
21 distribution => 'a particular whole distribution',
22 description => 'just a description, no actual file and not a particular other type. can be used for meta packges or dependency trees',
23 );
24
25360µs274µs
# spent 41µs (9+33) within Tapper::Schema::TestrunDB::Result::Preconditiontype::BEGIN@25 which was called: # once (9µs+33µs) by Class::C3::Componentised::ensure_class_loaded at line 25
use parent 'DBIx::Class';
# spent 41µs making 1 call to Tapper::Schema::TestrunDB::Result::Preconditiontype::BEGIN@25 # spent 33µs making 1 call to parent::import
26
2719µs1218µs__PACKAGE__->load_components("Core");
# spent 218µs making 1 call to Class::C3::Componentised::load_components
28116µs1400µs__PACKAGE__->table("preconditiontype");
# spent 400µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
29117µs1223µs__PACKAGE__->add_columns
# spent 223µs making 1 call to DBIx::Class::ResultSourceProxy::add_columns
30 (
31 "name", { data_type => "VARCHAR", default_value => undef, is_nullable => 0, size => 20, },
32 "description", { data_type => "TEXT", default_value => "", is_nullable => 0, },
33 );
34113µs150µs__PACKAGE__->set_primary_key("name");
35
36
37111µs1;
38
39
40__END__