Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
wiki.bernardino.org /
includes /
profiler /
Delete
Unzip
Name
Size
Permission
Date
Action
output
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
ProfileSection.php
1.45
KB
-rw-r--r--
2016-11-28 20:20
Profiler.php
7.96
KB
-rw-r--r--
2016-11-28 20:20
ProfilerFunctions.php
1.76
KB
-rw-r--r--
2016-11-28 20:20
ProfilerSectionOnly.php
2.97
KB
-rw-r--r--
2016-11-28 20:20
ProfilerSimple.php
3.43
KB
-rw-r--r--
2011-09-29 23:10
ProfilerSimpleText.php
1.4
KB
-rw-r--r--
2011-07-14 00:59
ProfilerSimpleTrace.php
1.9
KB
-rw-r--r--
2011-06-01 01:50
ProfilerSimpleUDP.php
1.13
KB
-rw-r--r--
2011-09-20 12:04
ProfilerStub.php
1.18
KB
-rw-r--r--
2016-11-28 20:20
ProfilerXhprof.php
6.76
KB
-rw-r--r--
2016-11-28 20:20
SectionProfiler.php
14.41
KB
-rw-r--r--
2016-11-28 20:20
Save
Rename
<?php /** * @file * @ingroup Profiler */ /** * Simple profiler base class. * @todo document methods (?) * @ingroup Profiler */ class ProfilerSimple extends Profiler { var $mMinimumTime = 0; var $zeroEntry = array('cpu'=> 0.0, 'cpu_sq' => 0.0, 'real' => 0.0, 'real_sq' => 0.0, 'count' => 0); var $errorEntry; function __construct( $params ) { global $wgRequestTime, $wgRUstart; parent::__construct( $params ); $this->errorEntry = $this->zeroEntry; $this->errorEntry['count'] = 1; if (!empty($wgRequestTime) && !empty($wgRUstart)) { # Remove the -total entry from parent::__construct $this->mWorkStack = array(); $this->mWorkStack[] = array( '-total', 0, $wgRequestTime,$this->getCpuTime($wgRUstart)); $elapsedcpu = $this->getCpuTime() - $this->getCpuTime($wgRUstart); $elapsedreal = microtime(true) - $wgRequestTime; $entry =& $this->mCollated["-setup"]; if (!is_array($entry)) { $entry = $this->zeroEntry; $this->mCollated["-setup"] =& $entry; } $entry['cpu'] += $elapsedcpu; $entry['cpu_sq'] += $elapsedcpu*$elapsedcpu; $entry['real'] += $elapsedreal; $entry['real_sq'] += $elapsedreal*$elapsedreal; $entry['count']++; } } function setMinimum( $min ) { $this->mMinimumTime = $min; } function profileIn($functionname) { global $wgDebugFunctionEntry; if ($wgDebugFunctionEntry) { $this->debug(str_repeat(' ', count($this->mWorkStack)).'Entering '.$functionname."\n"); } $this->mWorkStack[] = array($functionname, count( $this->mWorkStack ), microtime(true), $this->getCpuTime()); } function profileOut($functionname) { global $wgDebugFunctionEntry; if ($wgDebugFunctionEntry) { $this->debug(str_repeat(' ', count($this->mWorkStack) - 1).'Exiting '.$functionname."\n"); } list($ofname, /* $ocount */ ,$ortime,$octime) = array_pop($this->mWorkStack); if (!$ofname) { $this->debug("Profiling error: $functionname\n"); } else { if ($functionname == 'close') { $message = "Profile section ended by close(): {$ofname}"; $functionname = $ofname; $this->debug( "$message\n" ); $this->mCollated[$message] = $this->errorEntry; } elseif ($ofname != $functionname) { $message = "Profiling error: in({$ofname}), out($functionname)"; $this->debug( "$message\n" ); $this->mCollated[$message] = $this->errorEntry; } $entry =& $this->mCollated[$functionname]; $elapsedcpu = $this->getCpuTime() - $octime; $elapsedreal = microtime(true) - $ortime; if (!is_array($entry)) { $entry = $this->zeroEntry; $this->mCollated[$functionname] =& $entry; } $entry['cpu'] += $elapsedcpu; $entry['cpu_sq'] += $elapsedcpu*$elapsedcpu; $entry['real'] += $elapsedreal; $entry['real_sq'] += $elapsedreal*$elapsedreal; $entry['count']++; } } public function getFunctionReport() { /* Implement in output subclasses */ return ''; } public function logData() { /* Implement in subclasses */ } function getCpuTime($ru=null) { if ( function_exists( 'getrusage' ) ) { if ( $ru == null ) { $ru = getrusage(); } return ($ru['ru_utime.tv_sec'] + $ru['ru_stime.tv_sec'] + ($ru['ru_utime.tv_usec'] + $ru['ru_stime.tv_usec']) * 1e-6); } else { return 0; } } /* If argument is passed, it assumes that it is dual-format time string, returns proper float time value */ function getTime($time=null) { if ($time==null) { return microtime(true); } list($a,$b)=explode(" ",$time); return (float)($a+$b); } }