Home
last modified time | relevance | path

Searched refs:source (Results 176 – 200 of 1655) sorted by relevance

12345678910>>...67

/plugin/aichat/
H A Daction.php59 foreach ($result['sources'] as $source) {
60 /** @var Chunk $source */
61 if (isset($sources[$source->getPage()])) continue; // only show the first occurrence per page
62 $sources[$source->getPage()] = [
63 'page' => $source->getPage(),
64 'url' => wl($source->getPage()),
65 'title' => p_get_first_heading($source->getPage()) ?: $source->getPage(),
66 'score' => sprintf("%.2f%%", $source->getScore() * 100),
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DRollupNamespace.asciidoc37 [source,php]
51 [source,php]
65 [source,php]
79 [source,php]
93 [source,php]
107 [source,php]
123 [source,php]
141 [source,php]
155 [source,php]
H A DIndicesNamespace.asciidoc83 [source,php]
102 [source,php]
116 [source,php]
136 [source,php]
139 $params['index'] = (string) The name of the source index to clone
153 [source,php]
172 [source,php]
186 [source,php]
199 [source,php]
212 [source,ph
[all...]
H A DTransformNamespace.asciidoc35 [source,php]
49 [source,php]
66 [source,php]
82 [source,php]
94 [source,php]
107 [source,php]
121 [source,php]
139 [source,php]
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DTemplate.php32 protected $source = ''; variable in Handlebars\\Template
44 * @param string $source Handlebars source
46 public function __construct(Handlebars $engine, $tree, $source) argument
50 $this->source = $source;
65 * Get current source
71 return $this->source;
232 $source = substr(
238 $source
[all...]
/plugin/sequencediagram/bower_components/lodash/dist/
H A Dlodash.core.js890 return baseSlice(source, 0, source.length);
988 ? customizer(object[key], source[key], key, object, source)
1023 if (source) {
3088 copyObject(source, nativeKeys(source), object);
3123 copyObject(source, nativeKeysIn(source), object);
3522 function matches(source) { argument
3568 options = source;
3569 source = object;
3571 methodNames = baseFunctions(source, keys(source));
3786 var source = {};
[all …]
/plugin/directions/syntax/
H A Dcommon.php39 $source = '';
45 $source = trim($path[1]);
58 …if ((!page_exists(str_replace('/',':',$source))) || (!page_exists(str_replace('/',':',$target)))) …
62 if (strcmp($source, $target) == 0) {
73 if ((strcmp($source,$lastmove[$user]['source']) != 0) ||
76 $step = trim($source).'->'.trim($target);
84 $lastmove[$user]['source'] = $source;
/plugin/odt/ODT/
H A Dstyleset.php27 abstract public function import($source); argument
73 * @param null $source
163 * @param null $source
171 * @param null $source
179 * @param null $source
187 * @param null $source
303 * @param null $source
H A DODTExport.php165 $source = $params->document->getStyle($params->document->getStyleName('first page'));
168 if (isset($source) && isset($dest)) {
169 $dest->setProperty('width', $source->getProperty('width'));
170 $dest->setProperty('height', $source->getProperty('height'));
171 $dest->setProperty('margin-top', $source->getProperty('margin-top'));
172 $dest->setProperty('margin-right', $source->getProperty('margin-right'));
173 $dest->setProperty('margin-bottom', $source->getProperty('margin-bottom'));
174 $dest->setProperty('margin-left', $source->getProperty('margin-left'));
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DLexer.php41 private $source; variable in Twig\\Lexer
86 $this->source = new Source($code, $name);
88 $this->source = $code;
102 $this->code = str_replace(["\r\n", "\r"], "\n", $this->source->getCode());
103 $this->filename = $this->source->getName();
147 throw new SyntaxError(sprintf('Unclosed "%s".', $expect), $lineno, $this->source);
154 return new TokenStream($this->tokens, $this->source);
279 … throw new SyntaxError(sprintf('Unclosed "%s".', $expect), $lineno, $this->source);
310 …Error(sprintf('Unexpected end of file: Unclosed "%s" block.', $tag), $this->lineno, $this->source);
326 throw new SyntaxError('Unclosed comment.', $this->lineno, $this->source);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceControl/
H A DAttributeContext.php143 public function setSource(Peer $source) argument
145 $this->source = $source;
152 return $this->source;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DANSI.php217 * @param string $source
220 public function loadString($source) argument
223 $this->appendString($source);
229 * @param string $source
232 public function appendString($source) argument
235 for ($i = 0; $i < strlen($source); $i++) {
237 $this->ansi .= $source[$i];
238 $chr = ord($source[$i]);
381 switch ($source[$i]) {
394 $source[$i],
[all …]
/plugin/userhomepage/
H A Daction.php53 … $source = DOKU_CONF.'../'.$this->getConf('templates_path').'/userhomepage_private.txt';
56 $source = $this->getConf('templatepath');
60 $source = 'lib/plugins/userhomepage/lang/'.$conf['lang'].'/userhomepage_private.default';
62 $source = 'lib/plugins/userhomepage/lang/en/userhomepage_private.default';
65 $this->copyFile($source, $dest, 'userhomepage_private.txt');
74 $source = 'lib/plugins/userhomepage/lang/'.$conf['lang'].'/userhomepage_public.default';
76 $source = 'lib/plugins/userhomepage/lang/en/userhomepage_public.default';
79 $this->copyFile($source, $dest, 'userhomepage_public.txt');
89 $this->copyFile($source, $dest, 'userhomepage_publicspace.txt');
368 function copyFile($source = null, $target_dir = null, $target_file = null) { argument
[all …]
/plugin/git/lib/
H A DGit.php40 public static function &create($repo_path, $source = null) { argument
41 return GitRepo::create_new($repo_path, $source);
117 public static function &create_new($repo_path, $source = null) { argument
122 if (is_string($source))
123 $repo->clone_from($source);
436 public function clone_from($source) { argument
440 $cmd = "clone -q $source \"".$this->repo_path."\"";
461 public function clone_remote($source) { argument
462 return $this->run("clone $source ".$this->repo_path);
/plugin/webdav/vendor/sabre/dav/lib/DAV/PropertyStorage/
H A DPlugin.php135 * @param string $source
139 function afterMove($source, $destination) { argument
142 if ($pathFilter && !$pathFilter($source)) return;
147 $this->backend->move($source, $destination);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/NetworkManagement/
H A DConnectivityTest.php191 public function setSource(Endpoint $source) argument
193 $this->source = $source;
200 return $this->source;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Sheets/
H A DPivotTable.php133 public function setSource(GridRange $source) argument
135 $this->source = $source;
142 return $this->source;
/plugin/davcal/vendor/sabre/dav/lib/DAV/PropertyStorage/
H A DPlugin.php130 * @param string $source
134 function afterMove($source, $destination) { argument
137 if ($pathFilter && !$pathFilter($source)) return;
142 $this->backend->move($source, $destination);
/plugin/combo/
H A Dcomposer.lock12 "source": {
56 "source": "https://github.com/antlr/antlr-php-runtime/tree/0.5.1"
63 "source": {
99 "source": "https://github.com/ThomasWeinert/PhpCss/tree/2.0.0"
106 "source": {
146 "source": "https://github.com/dragonmantank/cron-expression/tree/v1.2.0"
153 "source": {
203 "source": "https://github.com/hidehalo/nanoid-php/tree/1.1.8"
210 "source": {
253 "source"
[all...]
/plugin/authgoogle/google/contrib/
H A DGoogle_BooksService.php1452 public $source; variable in Google_BooksLayerDictDataDict
1457 $this->source = $source;
1523 $this->source = $source;
1536 $this->source = $source;
1572 $this->source = $source;
1652 $this->source = $source;
1715 $this->source = $source;
1768 $this->source = $source;
2164 $this->source = $source;
2257 $this->source = $source;
[all …]
/plugin/farmsync/
H A Dadmin.php98 $source = $options['source']; // ToDo: validate thath source exists
103 … $updaters[] = new \dokuwiki\plugin\farmsync\meta\PageUpdates($source, $targets, $pages);
104 … $updaters[] = new \dokuwiki\plugin\farmsync\meta\TemplateUpdates($source, $targets, $pages);
107 … $updaters[] = new \dokuwiki\plugin\farmsync\meta\MediaUpdates($source, $targets, $media);
110 … $updaters[] = new \dokuwiki\plugin\farmsync\meta\StructUpdates($source, $targets, $struct);
/plugin/blogtng/db/
H A Dupdate0004.sql5 source, field
15 SELECT cid, pid, source, name, mail, web, avatar, created, text, status
23 source, field
38 SELECT cid, pid, source, name, mail, web, avatar, created, text, status, null
/plugin/zip/pear/File/Archive/Reader/
H A DGzip.php80 $dataFilename = $this->source->getDataFilename();
91 $this->source->sendData($dest);
108 $name = $this->source->getFilename();
256 $this->source->rewind();
257 $innerWriter = $this->source->makeWriterRemoveBlocks(array()); //Truncate the source
258 unset($this->source);
/plugin/syntaxhighlighter3/sxh3/build/
H A Dtasks.coffee12 compressCss = (source, callback) ->
14 parser.parse source, (err, tree) ->
17 compressJs = (source, callback) ->
18 {code, map} = uglify.minify source, fromString: true
108 compressJs readFile(file), (err, source) ->
109 writeFile path.join(outputJsDir, path.basename(addMinExt file)), source
112 compressCss readFile(file), (err, source) ->
113 writeFile file, source
/plugin/jplayer/vendor/robloach/component-installer/src/ComponentInstaller/Process/
H A DBuildJsProcess.php50 $source = $packageDir.DIRECTORY_SEPARATOR.$componentName.'-built.js';
53 if (file_exists($source)) {
55 $content = file_get_contents($source);

12345678910>>...67