Home
last modified time | relevance | path

Searched refs:profile (Results 51 – 75 of 100) sorted by last modified time

1234

/plugin/revealjs/css/theme/
H A Dmoon.css11 color-profile: sRGB;
H A Dsolarized.css11 color-profile: sRGB;
/plugin/revealjs/css/theme/source/
H A Dsolarized.scss23 color-profile: sRGB;
/plugin/pdfjs/pdfjs/build/
H A Dpdf.worker.js.map1profile not supported');\n }\n break;\n case 0x6A703263: // 'jp2c'\…
/plugin/securelogin/
H A DREADME.md9 …entered, it is automagically encrypted by this plugin, be it on the login, profile, or admin pages.
17 And instead has the login/profile/admin page submit the password as:
99 This same process happens during the add user, modify user, and edit profile options. This is what …
102 do:profile
/plugin/icons/assets/material-design-icons/css/
H A Dmaterialdesignicons.min.css1 …fore{content:"\FD4C"}.mdi-face-outline::before{content:"\FB72"}.mdi-face-profile::before{content:"…
/plugin/sequencediagram/bower_components/lodash/doc/
H A DREADME.md3538 var saves = ['profile', 'settings'];
/plugin/sequencediagram/bower_components/lodash/vendor/firebug-lite/skin/xp/
H A Dfirebug-1.3a2.css608 .objectLink-profile {
H A Dfirebug.css1320 .objectLink-profile {
1343 .objectLink-profile {
1431 .logRow-profile > .logRow > .objectBox-text {
1436 .logRow-profile > .logRow > .objectBox-text:last-child {
1441 .logRow-profile.opened > .logRow {
2929 .objectLink-profile {
/plugin/sequencediagram/bower_components/lodash/vendor/firebug-lite/src/
H A Dfirebug-lite-debug.js23182 this.profile = function(title) method in AnonymousFunction7f0ac55722f00.FirebugConsoleHandler
/plugin/authphpbb3/
H A Dauth.php248 … * array['phpbb_profile'] string User's link to profile.
H A Daction.php125 $profile = '<a href="%s" class="interwiki iw_user" rel="nofollow" target="_blank">%s</a>';
142 $profile = sprintf($profile, $data['phpbb_profile'], $data['name']);
144 $profile = sprintf($profile, '#', $event->data['name']);
150 'userlink' => $profile,
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DProfilerExtension.php21 public function __construct(Profile $profile) argument
23 $this->actives[] = $profile;
26 public function enter(Profile $profile) argument
28 $this->actives[0]->addProfile($profile);
29 array_unshift($this->actives, $profile);
32 public function leave(Profile $profile) argument
34 $profile->leave();
/plugin/findologicxmlexport/vendor/twig/twig/src/Profiler/Dumper/
H A DBaseDumper.php23 public function dump(Profile $profile) argument
25 return $this->dumpProfile($profile);
36 if ($profile->isRoot()) {
37 $this->root = $profile->getDuration();
38 $start = $profile->getName();
40 if ($profile->isTemplate()) {
41 $start = $this->formatTemplate($profile, $prefix);
43 $start = $this->formatNonTemplate($profile, $prefix);
50 if ($profile->getDuration() * 1000 < 1) {
56 $nCount = \count($profile->getProfiles());
[all …]
H A DBlackfireDumper.php23 public function dump(Profile $profile) argument
26 $this->dumpProfile('main()', $profile, $data);
27 $this->dumpChildren('main()', $profile, $data);
45 private function dumpChildren($parent, Profile $profile, &$data) argument
47 foreach ($profile as $p) {
58 private function dumpProfile($edge, Profile $profile, &$data) argument
63 $data[$edge]['mu'] += $profile->getMemoryUsage();
64 $data[$edge]['pmu'] += $profile->getPeakMemoryUsage();
68 'wt' => floor($profile->getDuration() * 1000000),
69 'mu' => $profile->getMemoryUsage(),
[all …]
H A DHtmlDumper.php30 public function dump(Profile $profile) argument
32 return '<pre>'.parent::dump($profile).'</pre>';
35 protected function formatTemplate(Profile $profile, $prefix) argument
37 …le="background-color: %s">%s</span>', $prefix, self::$colors['template'], $profile->getTemplate());
40 protected function formatNonTemplate(Profile $profile, $prefix) argument
42 …ix, $profile->getTemplate(), $profile->getType(), isset(self::$colors[$profile->getType()]) ? self…
45 protected function formatTime(Profile $profile, $percent) argument
47 …">%.2fms/%.0f%%</span>', $percent > 20 ? self::$colors['big'] : 'auto', $profile->getDuration() * …
H A DTextDumper.php23 protected function formatTemplate(Profile $profile, $prefix) argument
25 return sprintf('%s└ %s', $prefix, $profile->getTemplate());
28 protected function formatNonTemplate(Profile $profile, $prefix) argument
30 …return sprintf('%s└ %s::%s(%s)', $prefix, $profile->getTemplate(), $profile->getType(), $profile->…
33 protected function formatTime(Profile $profile, $percent) argument
35 return sprintf('%.2fms/%.0f%%', $profile->getDuration() * 1000, $percent);
/plugin/findologicxmlexport/vendor/twig/twig/src/Profiler/
H A DProfile.php81 public function addProfile(self $profile) argument
83 $this->profiles[] = $profile;
96 foreach ($this->profiles as $profile) {
97 $duration += $profile->getDuration();
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md996 - Serialization profile/definition builder [\#68](https://github.com/schmittjoh/serializer/issues/6…
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dapi.rst524 $profile = new \Twig\Profiler\Profile();
525 $twig->addExtension(new \Twig\Extension\ProfilerExtension($profile));
528 echo $dumper->dump($profile);
530 A profile contains information about time and memory consumption for template,
537 file_put_contents('/path/to/profile.prof', $dumper->dump($profile));
539 Upload the profile to visualize it (create a `free account
544 blackfire --slot=7 upload /path/to/profile.prof
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/
H A DAbstractTest.php18 $profile = new Profile('main');
38 $p = new \ReflectionProperty($profile, 'profiles');
40 $p->setValue($profile, $subProfiles);
42 return $profile;
82 $profile = new Profile($templateName, $type, $name);
84 $p = new \ReflectionProperty($profile, 'profiles');
86 $p->setValue($profile, $subProfiles);
90 $starts->setValue($profile, [
95 $ends = new \ReflectionProperty($profile, 'ends');
97 $ends->setValue($profile, [
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Profiler/
H A DProfileTest.php28 $this->assertTrue($profile->isRoot());
31 $this->assertFalse($profile->isRoot());
63 $profile = new Profile();
73 $profile = new Profile();
75 $profile->leave();
84 $profile->addProfile($profile1);
85 $profile->leave();
89 $profiles = $profile->getProfiles();
105 $profile = new Profile();
107 $profile->leave();
[all …]
/plugin/authsplit/
H A DREADME80 also review his or her user profile.
/plugin/vbsso/
H A DREADME.md7 … that WordPress can use the vBulletin user database to manage authentication and user profile data.
8 …s an interface for authenticating, controlling access, and managing user profile data. The second …
/plugin/wikistats/
H A DREADME.md56 <?php tpl_button('profile')?>

1234