Home
last modified time | relevance | path

Searched refs:this (Results 7076 – 7100 of 27090) sorted by relevance

1...<<281282283284285286287288289290>>...1084

/plugin/findologicxmlexport/vendor/jms/serializer/src/Expression/
H A DExpressionEvaluator.php26 $this->expressionLanguage = $expressionLanguage;
27 $this->context = $context;
35 $this->context[$name] = $value;
43 return $this->expressionLanguage->evaluate($expression, $data + $this->context);
51 … return $this->expressionLanguage->evaluate($expression->getExpression(), $data + $this->context);
56 …return new Expression($this->expressionLanguage->parse($expression, array_merge(array_keys($this->…
/plugin/findologicxmlexport/vendor/twig/twig/src/Util/
H A DDeprecationCollector.php30 $this->twig = $twig;
49 return $this->collect(new TemplateDirIterator($iterator));
61 $this->deprecations = [];
63 set_error_handler([$this, 'errorHandler']);
67 $this->twig->parse($this->twig->tokenize(new Source($contents, $name)));
75 $deprecations = $this->deprecations;
76 $this->deprecations = [];
87 $this->deprecations[] = $msg;
/plugin/jplayer/vendor/symfony/process/Tests/
H A DPhpExecutableFinderTest.php28 $this->markTestSkipped('Should not be executed in HHVM context.');
36 $this->assertEquals($current.$args, $f->find(), '::find() returns the executable PHP');
37 $this->assertEquals($current, $f->find(false), '::find() returns the executable PHP');
46 $this->markTestSkipped('Should be executed in HHVM context.');
53 $this->assertEquals($current.' --php', $f->find(), '::find() returns the executable PHP');
54 $this->assertEquals($current, $f->find(false), '::find() returns the executable PHP');
65 … $this->assertEquals(['--php'], $f->findArguments(), '::findArguments() returns HHVM arguments');
67 … $this->assertEquals(['-qrr'], $f->findArguments(), '::findArguments() returns phpdbg arguments');
69 $this->assertEquals([], $f->findArguments(), '::findArguments() returns no arguments');
/plugin/jenkins/jenkinsapi/
H A Djenkins.php11 $this->client = curl_init();
12 $this->url = $data['protocol'].'://'.$data['user'].':'.$data['token'].'@'.$data['url'];
17 $url_srv = $this->url . $url . '/api/json';
19 $url_srv = $this->url . $url . '/lastBuild/api/json';
21 curl_setopt($this->client, CURLOPT_URL, $url_srv);
22 curl_setopt($this->client, CURLOPT_HTTPHEADER, array(
26 curl_setopt($this->client, CURLOPT_RETURNTRANSFER, true);
28 $answer = curl_exec($this->client);
46 $request = $this->request($url, true);
/plugin/findologicxmlexport/vendor/sebastian/comparator/tests/
H A DDoubleComparatorTest.php23 $this->comparator = new DoubleComparator;
89 $this->assertTrue(
90 $this->comparator->accepts($expected, $actual)
100 $this->assertFalse(
101 $this->comparator->accepts($expected, $actual)
114 $this->comparator->assertEquals($expected, $actual, $delta);
120 $this->assertNull($exception, 'Unexpected ComparisonFailure');
129 $this->setExpectedException(
132 $this->comparator->assertEquals($expected, $actual, $delta);
H A DDateTimeComparatorTest.php27 $this->comparator = new DateTimeComparator;
146 $this->assertTrue(
147 $this->comparator->accepts(
160 $this->assertFalse(
161 $this->comparator->accepts($expected, $actual)
174 $this->comparator->assertEquals($expected, $actual, $delta);
180 $this->assertNull($exception, 'Unexpected ComparisonFailure');
189 $this->setExpectedException(
193 $this->comparator->assertEquals($expected, $actual, $delta);
202 $this->assertTrue($this->comparator->accepts(new DateTime, new DateTimeImmutable));
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DBulk.php11 * Elasticsearch B.V licenses this file to you under the Apache 2.0 License or
28 * NOTE: this file is autogenerated using util/GenerateEndpoints.php
36 $this->serializer = $serializer;
41 $index = $this->index ?? null;
42 $type = $this->type ?? null;
80 return $this;
84 $this->body .= $this->serializer->serialize($item) . "\n";
87 $this->body = $body;
89 $this
[all...]
/plugin/farmer/action/
H A Dstartup.php26 $this->helper = plugin_load('helper', 'farmer');
30 * plugin should use this method to register its handlers with the DokuWiki's event controller
36 $controller->register_hook('DOKUWIKI_STARTED', 'BEFORE', $this, 'handleStartUp');
47 if ($this->helper->wasNotfound()) $this->handleNotFound();
59 $config = $this->helper->getConfig();
66 $body = $this->locale_xhtml('notfound_' . $show);
71 $body .= $this->animalList();
91 $animals = $this->helper->getAllAnimals();
93 $link = $this
[all...]
/plugin/gtime/gtlib/asn1/
H A DASN1OctetString.php47 $this->value = $value;
57 return $this->value;
69 $this->append($bytes, ASN1DER::encodeType(ASN1_TAG_OCTET_STRING));
70 $this->append($bytes, ASN1DER::encodeLength(count($this->value)));
71 $this->append($bytes, $this->value);
83 $this->value = $bytes;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DException.php42 $this->serializableTrace = $this->getTrace();
43 foreach ($this->serializableTrace as $i => $call) {
44 unset($this->serializableTrace[$i]['args']);
55 return $this->serializableTrace;
63 $string = PHPUnit_Framework_TestFailure::exceptionToString($this);
65 if ($trace = PHPUnit_Util_Filter::getFilteredStacktrace($this)) {
74 return array_keys(get_object_vars($this));
/plugin/authfacebook/lib/HttpClients/
H A DFacebookCurl.php46 $this->curl = curl_init();
57 curl_setopt($this->curl, $key, $value);
67 curl_setopt_array($this->curl, $options);
77 return curl_exec($this->curl);
87 return curl_errno($this->curl);
97 return curl_error($this->curl);
109 return curl_getinfo($this->curl, $type);
127 curl_close($this->curl);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/HangoutsChat/
H A DGoogleAppsCardV1Action.php43 $this->function = $function;
50 return $this->function;
57 $this->loadIndicator = $loadIndicator;
64 return $this->loadIndicator;
71 $this->parameters = $parameters;
78 return $this->parameters;
85 $this->persistValues = $persistValues;
92 return $this->persistValues;
/plugin/serverinfos/serverinfos/lib/
H A DInfosServer.class.php8 return $this->_osServer;
13 $this->_osServer = PHP_OS;
18 $this->setOsServer();
116 $os = $this->osServer();
195 $os = $this->osServer();
201 $tmp = $this->getWinCpu();
212 $os = $this->osServer();
234 $tmp = $this->getWinCpu();
275 $os = $this->osServer();
296 $os = $this->osServer();
[all …]
/plugin/findologicxmlexport/vendor/hoa/protocol/Test/Unit/Node/
H A DLibrary.php54 $this
56 $this->constant->WITH_COMPOSER = false,
67 $this
69 $this->constant->WITH_COMPOSER = false,
80 $this
82 $this->constant->WITH_COMPOSER = true,
93 $this
95 $this->constant->WITH_COMPOSER = true,
113 $this
115 $this->constant->WITH_COMPOSER = true,
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Generator/
H A Dreturn_type_declarations_static_method.phpt40 $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker();
50 return $this->__phpunit_getInvocationMocker()->expects($matcher);
56 $expects = $this->expects($any);
62 $this->__phpunit_originalObject = $originalObject;
67 if ($this->__phpunit_invocationMocker === null) {
68 …$this->__phpunit_invocationMocker = new PHPUnit_Framework_MockObject_InvocationMocker($this->__php…
71 return $this->__phpunit_invocationMocker;
76 return $this->__phpunit_getInvocationMocker()->hasMatchers();
81 $this->__phpunit_getInvocationMocker()->verify();
84 $this->__phpunit_invocationMocker = null;
/plugin/subjectindex/syntax/
H A Dentry.php33 $this->matcher = new SI_MatchEntry();
52 foreach ($this->matcher as $matcher) {
53 … $this->Lexer->addSpecialPattern($matcher->regex, $mode, 'plugin_subjectindex_entry');
61 if ($this->matcher->match($match) === true) {
62 $item = $this->matcher->first;
66 $sep = $this->getConf('subjectindex_display_sep');
103 $display = $this->_html_encode($display);
106 … $type = "\n(" . $item['section'] . '-' . $this->getLang($item['type'] . '_type') . ')';
109 $title = $this->getLang('no_default_target') . $type;
114 $title = $this->_html_encode($item['title']);
[all …]
/plugin/csv/_test/
H A DCSVTest.php47 $delim = $this->delimiters[$delim];
48 $enc = $this->enclosings[$enc];
49 $esc = $this->escapes[$esc];
73 $this->assertEquals($expect, $result, $file);
86 $this->assertSame(174, count($data), 'number of rows');
87 $this->assertSame(21, count($data[0]), 'number of columns');
101 $this->assertSame(59, count($data), 'number of rows');
102 $this->assertSame(21, count($data[0]), 'number of columns');
106 $this->assertSame(3, count($data), 'number of rows');
109 $this->assertEquals('Jessica Jones', $data[2][1]);
[all …]
/plugin/move/action/
H A Drename.php22 $controller->register_hook('DOKUWIKI_STARTED', 'AFTER', $this, 'handle_init');
25 $controller->register_hook('TEMPLATE_PAGETOOLS_DISPLAY', 'BEFORE', $this, 'handle_pagetools');
27 $controller->register_hook('MENU_ITEMS_ASSEMBLY', 'AFTER', $this, 'addsvgbutton', array());
28 $controller->register_hook('AJAX_CALL_UNKNOWN', 'BEFORE', $this, 'handle_ajax');
29 $controller->register_hook('AJAX_CALL_UNKNOWN', 'BEFORE', $this, 'handleAjaxMediaManager');
42 $JSINFO['move_renameokay'] = $this->renameOkay($INFO['id']);
48 $this->getConf('allowrename'),
63 if (!$this->getConf('pagetools_integration')) {
67 $newitem = '<li class="plugin_move_page"><a href=""><span>' . $this->getLang('renamepage') . '</span></a></li>';
84 !$this
[all...]
/plugin/pureldap/classes/
H A DGroupHierarchyCache.php32 $this->ldap = $ldap;
35 $this->groupHierarchy = $this->getCachedGroupList();
37 $this->groupHierarchy = $this->getGroupList();
61 $groups = $this->getGroupList();
75 $paging = $this->ldap->paging($search);
110 if (empty($this->groupHierarchy[$group][$type])) return;
112 $parents = $this->groupHierarchy[$group][$type];
114 if (in_array($parent, $data)) continue; // we did this on
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Vlv/
H A DVlvResponseControl.php9 * file that was distributed with this source code.
65 $this->offset = $offset;
66 $this->count = $count;
67 $this->result = $result;
68 $this->contextId = $contextId;
77 return $this->result;
128 $this->controlValue = Asn1::sequence(
129 Asn1::integer((int) $this->offset),
130 Asn1::integer((int) $this->count),
131 Asn1::enumerated($this
[all...]
/plugin/commonmark/vendor/league/commonmark/src/Delimiter/Processor/
H A DEmphasisDelimiterProcessor.php
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DMultipartStream.php33 $this->boundary = $boundary ?: sha1(uniqid('', true));
34 $this->stream = $this->createStream($elements);
44 return $this->boundary;
62 return "--{$this->boundary}\r\n" . trim($str) . "\r\n\r\n";
73 $this->addElement($stream, $element);
77 $stream->addStream(Utils::streamFor("--{$this->boundary}--\r\n"));
99 list($body, $headers) = $this->createElement(
106 $stream->addStream(Utils::streamFor($this->getHeaders($headers)));
117 $disposition = $this->getHeader($headers, 'content-disposition');
129 $length = $this->getHeader($headers, 'content-length');
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/
H A DMock.php20 $this->calendars = $calendars;
21 $this->calendarData = $calendarData;
45 foreach($this->calendars as $row) {
72 $this->calendars[] = array_merge([
91 foreach($this->calendars as $k=>$calendar) {
93 unset($this->calendars[$k]);
123 if (!isset($this->calendarData[$calendarId]))
126 $objects = $this->calendarData[$calendarId];
154 $object = $this->calendarData[$calendarId][$objectUri];
172 $this->calendarData[$calendarId][$objectUri] = array(
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DBasicNodeTest.php30 $this->assertEquals(0,$file->getSize());
38 $this->assertNull($file->getETag());
45 $this->assertNull($file->getContentType());
75 $this->assertTrue($compareTime < 3);
83 $this->assertTrue($file instanceof FileMock);
90 $this->assertTrue($dir->childExists('mockfile'));
97 $this->assertFalse($dir->childExists('mockfile2'));
147 $this->assertEquals($file,$file2);
171 $this->assertEquals($file,$file2);
185 $this->assertEquals(array($file),$dir->getChildren());
[all …]
/plugin/simplenavi/_test/
H A DSimplenaviTest.php

1...<<281282283284285286287288289290>>...1084