Search results for "module:Devel::Size"

Devel::Size - Perl extension for finding the memory usage of Perl variables River stage three • 17 direct dependents • 327 total dependents

This module figures out the real size of Perl variables in bytes, as accurately as possible. Call functions with a reference to the variable you want the size of. If the variable is a plain scalar it returns the size of this scalar. If the variable i...

NWCLARK/Devel-Size-0.83 - 23 Apr 2019 17:19:03 UTC

Devel::Size::Report - generate a size report for all elements in a structure River stage zero No dependents

Devel::Size can only report the size of a single element or the total size of a structure (array, hash etc). This module enhances Devel::Size by giving you the ability to generate a full size report for each element in a structure. You have full cont...

TELS/Devel-Size-Report-0.13 - 06 Apr 2008 17:43:02 UTC

Devel::Events::Filter::Size - Add Devel::Size info to event data. River stage zero No dependents

This class uses Devel::Size and optionally Devel::Size::Report to provide size information for data found inside events. Typical usage would be to apply it to the "object" field in conjunction with Devel::Events::Objects....

NUFFIN/Devel-Events-Filter-Size-0.03 - 20 Sep 2007 15:43:40 UTC

Log::Log4perl::AutoCategorize - extended Log::Log4perl logging River stage zero No dependents

Before diving in, a few notes: This is not intended to document Log4perl (also l4p, abbrev for Log::Log4perl); that documentation is a good tutorial, and is quite thorough and complete. In this document, I use Logger as the *official* shorthand for L...

JCROMIE/Log-Log4perl-AutoCategorize-0.03 - 05 Nov 2003 19:00:25 UTC

Devel::SizeMe - Extension for extracting detailed memory usage information River stage zero No dependents

NOTE: This is all rather alpha and anything may change. The functions traverse memory structures and return the total memory size in bytes. See Devel::Size for more information. If the "SIZEME" env var is set then the functions also stream out detail...

TIMB/Devel-SizeMe-0.19 - 05 Sep 2013 20:58:51 UTC

Devel::InterpreterSize - Get rough sizes for the memory useage of perl River stage zero No dependents

Gives you back some simple figures for how much memory your perl us using, in kilobytes....

BOBTFISH/Devel-InterpreterSize-0.01 - 07 Jun 2012 22:47:03 UTC

Devel::SizeMe::Core - Guts of Devel::SizeMe River stage zero No dependents

NOTE: This is all rather alpha and anything may change. The functions traverse memory structures and return the total memory size in bytes. See Devel::Size for more information....

TIMB/Devel-SizeMe-0.19 - 05 Sep 2013 20:58:51 UTC

lib/Devel/SizeMe/Graph.pm River stage zero No dependents

TIMB/Devel-SizeMe-0.19 - 05 Sep 2013 20:58:51 UTC

Devel::PDB - A simple Curses-based Perl DeBugger River stage zero No dependents

PerlDeBugger is a Curses-based Perl debugger with most of the essential functions such as monitoring windows for paddlist, call stack, custom watch expressions, etc. Suitable for debugging or tracing complicated Perl applications on the spot. FUNCTIO...

KOCEASY/Devel-PDB-1.6 - 28 Dec 2015 21:29:11 UTC

Devel::Kit - Handy toolbox of things to ease development/debugging. River stage zero No dependents

From one line data dumping sanity checks to debug print statements in a large body of code I often found myself reinventing these basic solutions. Hence this module was born to help give a host of functions/functionality with a minimum of typing/effo...

DMUEY/Devel-Kit-0.82 - 23 Oct 2020 17:11:22 UTC

Devel::Peek - A data debugging tool for the XS programmer River stage five • 11292 direct dependents • 32664 total dependents

Devel::Peek contains functions which allows raw Perl datatypes to be manipulated from a Perl script. This is used by those who do XS programming to check that the data they are sending from C to Perl looks as they think it should look. The trick, the...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

Devel::Peek - A data debugging tool for the XS programmer River stage five • 11292 direct dependents • 32664 total dependents

Devel::Peek contains functions which allows raw Perl datatypes to be manipulated from a Perl script. This is used by those who do XS programming to check that the data they are sending from C to Perl looks as they think it should look. The trick, the...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

Devel::Malloc - Low-level memory and atomic operations for real-time inter-thread communication. River stage zero No dependents

The _malloc() function allocates size bytes and returns memory address to the allocated memory. You can store bytes to memory using _memset() and retrieve them using _memget(). The _free() function deallocates memory. Memory address returned by _mall...

YURY/Devel-Malloc-0.03 - 14 Jun 2012 12:30:55 UTC

Devel::Arena - Perl extension for inspecting the core's arena structures River stage zero No dependents

Inspect the arena structures that perl uses for SV allocation. HARNESS_PERL_SWITCHES=-MDevel::Arena=write_stats_at_END make test EXPORT None by default. * sv_stats [DONT_SHARE] Returns a hashref giving stats derived from inspecting the SV heads via t...

NWCLARK/Devel-Arena-0.23 - 27 Feb 2006 18:34:41 UTC

Devel::Optic - Production safe data inspector River stage one • 1 direct dependent • 1 total dependent

Devel::Optic is a fiberscope <https://en.wikipedia.org/wiki/Fiberscope> for Perl programs. Just like a real fiberscope, it provides 'nondestructive inspection' of your variables. In other words: use this in your production environment to figure out w...

BTYLER/Devel-Optic-0.015 - 13 Jan 2020 20:30:29 UTC

Devel::FindGlobals - Find global variables and their size River stage zero No dependents

This module just runs around and over the symbol table, finds global variables, gets their sizes with Devel::Size, and then prints them out. find_globals() just finds the globals (and returns a hashref), and find_globals_sizes() returns the globals a...

CNANDOR/Devel-FindGlobals-0.03 - 08 Oct 2004 23:18:34 UTC

Devel::ptkdb - Perl debugger using a Tk GUI River stage one • 1 direct dependent • 2 total dependents

ptkdb is a debugger for perl that uses perlTk for a user interface. Features include: Hot Variable Inspection Breakpoint Control Panel Expression List Subroutine Tree...

AEPAGE/Devel-ptkdb-1.1091 - 26 Apr 2004 17:06:19 UTC

Devel::Events - Extensible instrumentation framework River stage one • 5 direct dependents • 6 total dependents

Devel::Events is an event generation, filtering and analaysis framework for instrumenting and auditing perl code. The design's purpose is to decouple the mechanics of code instrumentation from the analysis, making it easier to write debugging/profili...

ETHER/Devel-Events-0.09 - 27 Mar 2018 01:02:58 UTC

Devel::DProf - a DEPRECATED Perl code profiler River stage one • 3 direct dependents • 4 total dependents

The Devel::DProf package is a Perl code profiler. This will collect information on the execution time of a Perl script and of the subs in that script. This information can be used to determine which subroutines are using the most time and which subro...

FLORA/Devel-DProf-20110802.00 - 02 Aug 2011 13:30:00 UTC

Devel::DumpSizes - Dump the name and size in bytes (in increasing order) of variables that are available at a give point in a script. River stage zero No dependents

This module allows us to print the names and sizes of variables that are available at a give point in a script. This module was written while debugging a huge long running script. The main use being to understand how variable sizes were fluctuating d...

CGAUTAM/Devel-DumpSizes-0.01 - 10 Jul 2006 14:37:07 UTC
48 results (0.04 seconds)