Home
last modified time | relevance | path

Searched refs:from (Results 1 – 25 of 2134) sorted by relevance

12345678910>>...86

/plugin/findologicxmlexport/vendor/sebastian/diff/tests/LCS/
H A DLongestCommonSubsequenceTest.php52 $from = array();
61 $from = array(
65 $to = $from;
89 $from = $range;
99 $from = array('A');
104 $from = array('A', 'B', 'C');
110 $from = \range(1, $size);
144 $from = \range(1, $size);
155 $from = \range(1, $size);
166 $from = \range(1, $size);
[all …]
/plugin/pgn4web/pgn4web/libs/garbochess/
H A Dgarbochess.js77 var from = move & 0xFF;
93 if (moveFrom != from &&
1939 g_pieceList[((piece & 0xF) << 4) | g_pieceIndex[from]] = from;
1982 from += inc;
2051 while (from != 0) {
2066 while (from != 0) {
2077 while (from != 0) {
2088 while (from != 0) {
2173 while (from != 0) {
2188 while (from != 0) {
[all …]
/plugin/findologicxmlexport/vendor/sebastian/diff/src/
H A DDiffer.php53 $from = $this->validateDiffInput($from);
206 if (\is_string($from)) {
208 $from = $this->splitStringByLines($from);
224 list($from, $to, $start, $end) = self::getArrayDiffParted($from, $to);
244 \reset($from);
258 \array_shift($from);
304 * @param array $from
327 * @param array $from
355 * @param array $from
379 \end($from);
[all …]
H A DDiff.php18 private $from; variable in SebastianBergmann\\Diff\\Diff
31 * @param string $from
35 public function __construct($from, $to, array $chunks = array()) argument
37 $this->from = $from;
47 return $this->from;
/plugin/amcharts/assets/amcharts/plugins/dataloader/examples/data/
H A DMSFT_events.csv5 2014-01-23,A,Analyst opinion change,Upgrade from Deutsche Bank from Hold to Buy
6 2014-01-10,A,Analyst opinion change,Upgrade from Barclays from Equal weight to Overweight
9 2013-08-13,A,Analyst opinion change,Downgrade from Stifel from Buy to Hold
11 2013-04-30,A,Analyst opinion change,Downgrade from Standpoint Research from Buy to Hold
13 2013-01-04,A,Analyst opinion change,Downgrade from Argus from Buy to Hold
15 2012-12-12,A,Analyst opinion change,Upgrade from Standpoint Research from Hold to Buy
22 2012-03-16,A,Analyst opinion change,Upgrade from Argus from Hold to Buy
45 2009-10-27,A,Analyst opinion change,Upgrade from Argus from Sell to Hold
46 2009-09-14,A,Analyst opinion change,Upgrade from Auriga U.S.A from Hold to Buy
53 2009-03-31,A,Analyst opinion change,Upgrade from Davenport from Neutral to Buy
[all …]
/plugin/struct/meta/
H A DQueryBuilder.php16 protected $from = []; variable in dokuwiki\\plugin\\struct\\meta\\QueryBuilder
39 * @param string $tablealias The table to select from
46 if (!isset($this->from[$tablealias])) {
94 if (isset($this->from[$alias])) {
97 $this->from[$alias] = "$table AS $alias";
112 if (!isset($this->from[$leftalias])) {
115 if (isset($this->from[$rightalias])) {
119 $pos = array_search($leftalias, array_keys($this->from));
121 $this->from = $this->arrayInsert($this->from, [
[all...]
H A DDateFormatConverter.php81 'z' => '', // NOT SUPPORTED The day of the year (starting from 0) 0 through 365
133 $from = array_map(
143 $date = preg_replace($from, $to, $date);
169 $from = array_keys(self::$date);
170 $from = array_map(
172 $from
177 array_unshift($from, '/%/');
181 $strftime = preg_replace($from, $to, $date);
187 $from = array_map(
191 $strftime = preg_replace($from,
[all...]
/plugin/davcal/syntax/
H A Dtable.php144 $from = $data['startdate'];
148 if($from === 'today')
150 $from = new \DateTime();
152 elseif(strpos($from, 'today-') === 0)
155 $from = new \DateTime();
158 elseif(strpos($from, 'today+') === 0)
161 $from = new \DateTime();
166 $from = new \DateTime($from);
174 $to = clone $from;
182 $toStr = $from->format('Y-m-d');
[all …]
/plugin/findologicxmlexport/vendor/sebastian/diff/src/LCS/
H A DMemoryEfficientLongestCommonSubsequenceImplementation.php21 * @param array $from
26 public function calculate(array $from, array $to) argument
28 $cFrom = \count($from);
36 if (\in_array($from[0], $to, true)) {
37 return array($from[0]);
44 $fromStart = \array_slice($from, 0, $i);
45 $fromEnd = \array_slice($from, $i);
70 * @param array $from
75 private function length(array $from, array $to) argument
78 $cFrom = \count($from);
[all …]
H A DTimeEfficientLongestCommonSubsequenceImplementation.php21 * @param array $from
26 public function calculate(array $from, array $to) argument
29 $fromLength = \count($from);
48 $from[$i - 1] === $to[$j - 1] ? $matrix[$o - $width - 1] + 1 : 0
57 if ($from[$i - 1] === $to[$j - 1]) {
58 $common[] = $from[$i - 1];
/plugin/findologicxmlexport/vendor/sebastian/diff/tests/
H A DDifferTest.php45 * @param string|array $from
51 …$this->assertEquals($expected, $this->differ->diffToArray($from, $to, new TimeEfficientImplementat…
56 * @param string $from
62 … $this->assertEquals($expected, $this->differ->diff($from, $to, new TimeEfficientImplementation));
67 * @param string|array $from
73 …$this->assertEquals($expected, $this->differ->diffToArray($from, $to, new MemoryEfficientImplement…
78 * @param string $from
84 …$this->assertEquals($expected, $this->differ->diff($from, $to, new MemoryEfficientImplementation));
366 * @param string $from
370 public function testDiffDoNotShowNonDiffLines($expected, $from, $to)
[all …]
H A DDiffTest.php24 $from = 'line1a';
26 $diff = new Diff($from, $to);
28 $this->assertSame($from, $diff->getFrom());
35 $from = 'line1b';
39 $diff = new Diff($from, $to, $chunks);
41 $this->assertSame($from, $diff->getFrom());
/plugin/ipban/ip-lib/src/
H A DFactory.php85 public static function rangeFromBoundaries($from, $to) argument
103 $result = static::rangeFromBoundaryAddresses($from, $to);
117 if ($from === null && $to === null) {
120 $result = Range\Single::fromAddress($from);
121 } elseif ($from === null) {
125 $addressType = $from->getAddressType();
127 $cmp = strcmp($from->getComparableString(), $to->getComparableString());
129 $result = Range\Single::fromAddress($from);
132 list($from, $to) = array($to, $from);
134 $fromBytes = $from->getBytes();
[all …]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
H A DRangeTransition.php14 public $from; variable in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\RangeTransition
19 public function __construct(ATNState $target, int $from, int $to) argument
23 $this->from = $from;
29 return IntervalSet::fromRange($this->from, $this->to);
34 return $symbol >= $this->from && $symbol <= $this->to;
49 && $this->from === $other->from
58 StringUtils::char($this->from),
/plugin/icalendar/
H A Dsyntax.php70 $from = time();
73 $from = mktime(0, 0, 0, $fromDate[1], $fromDate[2], $fromDate[3]);
75 $from = $params['from'];
262 * @param from unix timestamp in seconds (may be null)
269 function _parseIcs($url, $from, $to, $previewDays, $numberOfEntries, $sort_descending ) { argument
304 if ($from && $entry['endunixdate']) {
305 if ($entry['endunixdate'] < $from) { continue; }
317 if ( $to && ($from == null) )
321 } else if ( $from ) {
336 if ( $from && $sort_descending) {
[all …]
/plugin/smtp/classes/
H A DMessage.php15 protected $from; variable in splitbrain\\dokuwiki\\plugin\\smtp\\Message
20 * @param string $from Sender Address
24 public function __construct($from, $rcpt, $body) { argument
25 $this->from = $from;
36 if(preg_match('#(.*?)<(.*?)>#', $this->from, $matches)) {
40 return $this->from;
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DSendGridHandler.php39 protected $from; variable in Monolog\\Handler\\SendGridHandler
56 * @param string $from The sender of the email
60 …public function __construct(string $apiUser, string $apiKey, string $from, $to, string $subject, $… argument
69 $this->from = $from;
82 $message['from'] = $this->from;
/plugin/dokugource/
H A Dadmin.php24 var $from = -1; variable in admin_plugin_dokugource
84 …$this->from = (isset($_POST['dokugource_from']) && !empty($_POST['dokugource_from'])) ? strtotime(…
85 if($this->from === false) $this->from = 0;
107 …awl($conf['metadir'].($this->ns ? '/'.str_replace(':', '/', $this->ns) : ''), $strip, $this->from);
128 function crawl($p, $strip, $from) { argument
136 if((int)$m[1] < $from) continue;
151 if(is_dir($p.'/'.$i)) $this->crawl($p.'/'.$i, $strip, $from);
166 …xt" name="dokugource_from" value="'.date('Y-m-d H:i:s', ($this->from >= 0) ? $this->from : (time()…
/plugin/dirtylittlehelper/mermaid/editor/src/components/
H A DEditor.svelte2 import { codeStore, updateCode } from '../code-store.js';
3 import { codeErrorStore } from '../error-store.js';
4 import { onMount } from 'svelte';
5 import mermaid from '@mermaid';
6 import Error from './Error.svelte';
7 import { getResizeHandler, initEditor } from './editor-utils';
8 import * as monaco from 'monaco-editor';
9 import { watchResize } from 'svelte-watch-resize';
H A DConfig.svelte2 import { codeStore, updateConfig } from '../code-store.js';
3 import { configErrorStore } from '../error-store.js';
4 import { onMount } from 'svelte';
5 import Error from './Error.svelte';
6 import { getResizeHandler, initEditor } from './editor-utils';
7 import { watchResize } from 'svelte-watch-resize';
8 import * as monaco from 'monaco-editor/esm/vs/editor/editor.api.js';
/plugin/authgooglesheets/vendor/google/apiclient-services/src/IdentityToolkit/
H A DEmailTemplate.php33 public $from; variable in Google\\Service\\IdentityToolkit\\EmailTemplate
78 public function setFrom($from) argument
80 $this->from = $from;
87 return $this->from;
/plugin/schedule/
H A Dschedule.class.php18 var $from; // event begining date variable in schedule
50 if ($a->from == $b->from) {
55 return ($a->from < $b->from) ? -1 : 1;
/plugin/webcode/_test/data/pages/
H A Ddisplay.txt11 The ''display="none"'' syntax comes from the [[https://www.dokuwiki.org/syntax_highlighting|advance…
20 console.log("A log from the cached block");
32 console.log("A log from the cached block.");
36 console.log("A log from the visible block");
38 …* In the result, we should see two log line (one from the cached block and one from the visible on…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Gmail/
H A DFilterCriteria.php29 public $from; variable in Google\\Service\\Gmail\\FilterCriteria
76 public function setFrom($from) argument
78 $this->from = $from;
85 return $this->from;
/plugin/epub/lang/en/
H A Dadmin_header.txt2 …his tool, you can delete entries from the epub cache and, if you choose, you can also delete the a…
3 …es. If you click the **Cache Only** button, those titles will be removed from the cache. If you …
4 titles will be removed from the cache and their associated ebooks will be deleted from the media di…

12345678910>>...86