| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Profiler/ |
| D | ProfileTest.php | 18 $profile = new Profile('template', 'type', 'name'); 20 $this->assertEquals('template', $profile->getTemplate()); 21 $this->assertEquals('type', $profile->getType()); 22 $this->assertEquals('name', $profile->getName()); 27 $profile = new Profile('template', Profile::ROOT); 28 $this->assertTrue($profile->isRoot()); 30 $profile = new Profile('template', Profile::TEMPLATE); 31 $this->assertFalse($profile->isRoot()); 36 $profile = new Profile('template', Profile::TEMPLATE); 37 $this->assertTrue($profile->isTemplate()); [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/src/Profiler/Dumper/ |
| D | BaseDumper.php | 23 public function dump(Profile $profile) argument 25 return $this->dumpProfile($profile); 28 abstract protected function formatTemplate(Profile $profile, $prefix); argument 30 abstract protected function formatNonTemplate(Profile $profile, $prefix); argument 32 abstract protected function formatTime(Profile $profile, $percent); argument 34 private function dumpProfile(Profile $profile, $prefix = '', $sibling = false) argument 36 if ($profile->isRoot()) { 37 $this->root = $profile->getDuration(); 38 $start = $profile->getName(); 40 if ($profile->isTemplate()) { [all …]
|
| D | HtmlDumper.php | 30 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() * …
|
| D | BlackfireDumper.php | 23 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 62 $data[$edge]['wt'] += floor($profile->getDuration() * 1000000); 63 $data[$edge]['mu'] += $profile->getMemoryUsage(); 64 $data[$edge]['pmu'] += $profile->getPeakMemoryUsage(); 68 'wt' => floor($profile->getDuration() * 1000000), [all …]
|
| D | TextDumper.php | 23 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/test/Twig/Tests/Profiler/Dumper/ |
| D | AbstractTest.php | 18 $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); 88 $starts = new \ReflectionProperty($profile, 'starts'); 90 $starts->setValue($profile, [ 95 $ends = new \ReflectionProperty($profile, 'ends'); [all …]
|
| /plugin/combo/resources/theme/default/components/css/ |
| H A D | profile-update.css | 2 .form-profile-update { 10 .form-profile-update .form-control-row { 14 .form-profile-update .logo { 20 .form-profile-update label::first-letter { 23 .form-profile-update label { 27 .form-profile-update h1 { 35 .form-profile-update .form-floating:focus-within { 39 .form-profile-update-header { 44 .form-profile-update button { 48 .form-profile-update .login { [all …]
|
| H A D | profile-delete.css | 2 .form-profile-delete { 8 .form-profile-delete h1 { 17 .form-profile-delete .checkbox { 21 .form-profile-delete .form-floating:focus-within { 25 .form-profile-delete input[type="text"] { 32 .form-profile-delete input[type="password"] { 36 .form-profile-delete .rememberMe {
|
| /plugin/findologicxmlexport/vendor/twig/twig/src/Extension/ |
| D | ProfilerExtension.php | 21 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/galleryv1.5/inc/ |
| D | magazinelayout.class.php | 639 $profile = ''; 641 $profile .= $i['format'] == 'landscape' ? 'L' : 'P'; 662 if ($profile == 'LLL') { 674 if ($profile == 'LLLP') { 676 } elseif ($profile == 'LPPP') { 687 if ($profile == 'LLLLL') { 690 } elseif ($profile == 'LLLLP') { 693 } elseif ($profile == 'LLLPP') { 696 } elseif ($profile == 'LLPPP') { 699 } elseif ($profile == 'LPPPP') { [all …]
|
| /plugin/dokullm/doc/ |
| H A D | profiles.txt | 3 …tions. Each profile can have its own set of actions, prompts, and configurations. By default, the … 8 * [[default|default]] - The standard profile with basic actions 13 To create a new profile: 15 …amespace at ''dokullm:profiles:PROFILE_NAME'' (replace PROFILE_NAME with your desired profile name) 16 …- Create a profile definition page (similar to ''dokullm:profiles:default'') that defines the acti… 17 - Add prompt pages for each action in your profile 18 - Configure the plugin to use your new profile in the plugin settings 22 Each profile follows a specific namespace structure: 25 * ''dokullm:profiles:PROFILE_NAME:system'' - Base system prompt for the profile 31 Each profile needs a definition page (like ''dokullm:profiles:default'') that contains a table defi… [all …]
|
| /plugin/freesync/ |
| D | admin.php | 104 while($profile = each($profiles)) { 105 ptln('<option value="'.$profile['value'].'"'. 106 (($profile['value'] == $this->fshlp->getProfileName())?'selected="selected"':''). 107 '>'.$profile['value'].'</option>'); 122 $profile = $this->fshlp->getProfile(); 127 …class="edit" name="fn[save_profile][xmlrpcurl]" id="xmlrpcurl" value="'.$profile['xmlrpcurl'].'"/>… 129 …class="edit" name="fn[save_profile][namespace]" id="namespace" value="'.$profile['namespace'].'"/>… 131 …pe="text" class="edit" name="fn[save_profile][user]" id="user" value="'.$profile['user'].'"/></td>… 133 …pe="text" class="edit" name="fn[save_profile][pass]" id="pass" value="'.$profile['pass'].'"/></td>… 136 …pe="checkbox" class="edit" name="fn[save_profile][pages]" id="pages" '.($profile['pages']?'checked… [all …]
|
| D | helper.php | 56 function saveProfile($oldname, $profile) { argument 61 $profile = array_merge($this->_profile, $profile); 63 if(preg_match('/^http:\/\/([a-zA-Z0-9][a-zA-Z0-9_.]+)\//', $profile['xmlrpcurl'], $match)) { 64 $profile['name'] = $match[1]; 65 $pfFN = $this->_profilePath.'/'.$profile['name'].".ini"; 67 foreach($profile as $key => $val) { 75 $this->loadProfile($profile['name']); 77 elseif(empty($profile['xmlrpcurl']) && file_exists($oldpfFN)) 86 while($profile = readdir($dh)) { 87 if(preg_match("/^(.*).ini$/", $profile, $match))
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/DLP/ |
| D | GooglePrivacyDlpV2DataProfilePubSubMessage.php | 46 public function setProfile(GooglePrivacyDlpV2TableDataProfile $profile) argument 48 $this->profile = $profile; 55 return $this->profile;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Classroom/ |
| D | Teacher.php | 50 public function setProfile(UserProfile $profile) argument 52 $this->profile = $profile; 59 return $this->profile;
|
| D | Student.php | 52 public function setProfile(UserProfile $profile) argument 54 $this->profile = $profile; 61 return $this->profile;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Transcoder/ |
| D | Vp9CodecSettings.php | 50 public $profile; variable in Google\\Service\\Transcoder\\Vp9CodecSettings 155 public function setProfile($profile) argument 157 $this->profile = $profile; 164 return $this->profile;
|
| D | H265CodecSettings.php | 71 public $profile; variable in Google\\Service\\Transcoder\\H265CodecSettings 266 public function setProfile($profile) argument 268 $this->profile = $profile; 275 return $this->profile;
|
| D | H264CodecSettings.php | 75 public $profile; variable in Google\\Service\\Transcoder\\H264CodecSettings 284 public function setProfile($profile) argument 286 $this->profile = $profile; 293 return $this->profile;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Analytics/ |
| D | AccountTreeResponse.php | 64 public function setProfile(Profile $profile) argument 66 $this->profile = $profile; 73 return $this->profile;
|
| D | AccountTicket.php | 86 public function setProfile(Profile $profile) argument 88 $this->profile = $profile; 95 return $this->profile;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/ |
| D | SslPolicy.php | 62 public $profile; variable in Google\\Service\\Compute\\SslPolicy 199 public function setProfile($profile) argument 201 $this->profile = $profile; 208 return $this->profile;
|
| /plugin/authphpbb3/ |
| D | action.php | 125 $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/Profiler/ |
| D | Profile.php | 81 public function addProfile(self $profile) argument 83 $this->profiles[] = $profile; 96 foreach ($this->profiles as $profile) { 97 $duration += $profile->getDuration();
|
| /plugin/profiles/ |
| D | README.md | 1 dokuwiki-profile 4 Dokuwiki profile plugin
|