Home
last modified time | relevance | path

Searched refs:diff (Results 51 – 75 of 261) sorted by last modified time

1234567891011

/plugin/snippets/lang/fr/
H A Dinfo.txt1 Cet outil devrait réconcilier les différences entre les métafichiers, les pages et la base de donné…
/plugin/ckgedit/ckeditor/
H A Dcontents.css.unc103 /* same font stack should be used for ".dokuwiki table.diff td" in _diff.css */
/plugin/publish/_test/
H A Dmail.unit.test.php25 …ink = 'http://wiki.example.com' . DOKU_BASE . 'doku.php?id=wiki:syntax&do=diff&rev2[0]=1&rev2[1]=2…
/plugin/sync/lang/fr/
H A Dnochange.txt3 Aucune différence n'a été constatée entre votre wiki local et le wiki distant. Pas besoin de synchr…
H A Dlist.txt3 Une liste des fichiers qui diffèrent entre vos fichiers locaux et le wiki distant est indiqué ci-de…
/plugin/tos/
H A Dstyle.less2 .tos-diff,
12 // this checkbox controls if the diff or the content shall be shown
17 .tos-diff {
21 #plugin__tos_showdiff:checked + .tos-diff {
25 #plugin__tos_showdiff:checked + .tos-diff + .tos-content {
H A Daction.php177 $diff = new Diff(explode("\n", $old), explode("\n", $new));
182 $html .= html_insert_softbreaks($formatter->format($diff));
/plugin/dokucrypt2/
H A DOLDER_VERSIONS.md15 ```diff
/plugin/dokucrypt2/patches/
H A Dpatch1.diff13 diff --git a/lib/scripts/edit.js b/lib/scripts/edit.js
/plugin/davcal/vendor/sabre/http/
H A D.travis.yml26 - ./bin/sabre-cs-fixer fix . --dry-run --diff
/plugin/davcal/fullcalendar-3.10.5/
H A Dfullcalendar.js234 var diff;
242 return diff;
530 days: a.clone().stripTime().diff(b.clone().stripTime(), 'days'),
538 days: a.clone().stripTime().diff(b.clone().stripTime(), 'days')
581 return end.diff(start, unit, true);
587 return start.end.diff(start.start, unit, true);
598 return end.diff(start, 'months', true) / months;
600 return end.diff(start, 'days', true) / dur.asDays();
6730 var dayOffset = date.diff(this.dayDates[0], 'days');
10564 return dayRange.end.diff(dayRange.start, 'days') > 1;
[all …]
H A Dmoment.js492 function pastFuture (diff, output) { argument
2831 var res, diff;
3161 var diff = myMoment.diff(now, 'days', true);
3162 return diff < -6 ? 'sameElse' :
3163 diff < -1 ? 'lastWeek' :
3164 diff < 0 ? 'lastDay' :
3165 diff < 1 ? 'sameDay' :
3166 diff < 2 ? 'nextDay' :
3167 diff < 7 ? 'nextWeek' : 'sameElse';
3241 function diff (input, units, asFloat) { function
[all …]
/plugin/davcal/vendor/sabre/dav/
H A D.travis.yml33 - ./bin/sabre-cs-fixer fix lib/ --dry-run --diff
/plugin/davcal/vendor/sabre/event/
H A D.travis.yml16 - ./bin/sabre-cs-fixer fix . --dry-run --diff
/plugin/davcal/
H A Djstz.js85 diff = january_offset - june_offset;
87 if (diff < 0) {
89 } else if (diff > 0) {
/plugin/davcal/vendor/sabre/xml/
H A D.travis.yml20 - ./bin/sabre-cs-fixer fix . --dry-run --diff
/plugin/davcal/vendor/sabre/uri/
H A D.travis.yml16 - ./bin/sabre-cs-fixer fix lib/ --dry-run --diff
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/
H A DBase64.php254 $diff = 0x41;
257 $diff += ((25 - $src) >> 8) & 6;
260 $diff -= ((51 - $src) >> 8) & 75;
263 $diff -= ((61 - $src) >> 8) & 15;
266 $diff += ((62 - $src) >> 8) & 3;
268 return \pack('C', $src + $diff);
H A DBase32.php158 $diff = 0x61;
161 $diff -= ((25 - $src) >> 8) & 73;
163 return \pack('C', $src + $diff);
177 $diff = 0x41;
180 $diff -= ((25 - $src) >> 8) & 41;
182 return \pack('C', $src + $diff);
H A DBase64UrlSafe.php79 $diff = 0x41;
82 $diff += ((25 - $src) >> 8) & 6;
85 $diff -= ((51 - $src) >> 8) & 75;
88 $diff -= ((61 - $src) >> 8) & 13;
91 $diff += ((62 - $src) >> 8) & 49;
93 return \pack('C', $src + $diff);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DCachingStream.php69 $diff = $byte - $this->stream->getSize();
71 if ($diff > 0) {
74 while ($diff > 0 && !$this->remoteStream->eof()) {
75 $this->read($diff);
76 $diff = $byte - $this->stream->getSize();
H A DFnStream.php82 foreach (array_diff(self::$slots, array_keys($methods)) as $diff) {
83 $methods[$diff] = [$stream, $diff];
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/
H A DREADME.md93 php-cs-fixer fix --config=build/php-cs-fixer.php --diff --dry-run --using-cache=no
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP.php340 $diff = self::compareHelper($x_value, $x_negative, $y_value, $y_negative);
342 if (!$diff) {
350 if ((!$x_negative && $diff < 0) || ($x_negative && $diff > 0)) {
557 $diff = $x->compare($y);
559 if (!$diff) {
566 if ($diff < 0) {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PolicySimulator/
H A DGoogleCloudPolicysimulatorV1ReplayResult.php56 public function setDiff(GoogleCloudPolicysimulatorV1ReplayDiff $diff) argument
58 $this->diff = $diff;
65 return $this->diff;

1234567891011