Home
last modified time | relevance | path

Searched refs:remaining (Results 1 – 25 of 103) sorted by relevance

12345

/plugin/authgooglesheets/vendor/google/apiclient-services/src/AnalyticsData/
H A DQuotaStatus.php29 public $remaining; variable in Google\\Service\\AnalyticsData\\QuotaStatus
48 public function setRemaining($remaining) argument
50 $this->remaining = $remaining;
57 return $this->remaining;
/plugin/siteexport/syntax/
H A Dtoctools.php108 $remaining = substr( $renderer->doc, $lastPos + strlen($lastDiv) );
109 $remaining = strip_tags( $remaining );
110 $remaining = trim($remaining);
111 if ( strlen( $remaining ) == 0 ) {
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DPropPatch.php186 $remaining = [];
189 $remaining[] = $propertyName;
193 return $remaining;
206 $remaining = [];
209 $remaining[$propertyName] = $propValue;
213 return $remaining;
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DPropPatch.php179 $remaining = [];
182 $remaining[] = $propertyName;
186 return $remaining;
199 $remaining = [];
202 $remaining[$propertyName] = $propValue;
206 return $remaining;
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DPumpStream.php117 $remaining = $length - $readLen;
119 if ($remaining) {
120 $this->pump($remaining);
121 $data .= $this->buffer->read($remaining);
H A DAppendStream.php177 $remaining = $length;
179 while ($remaining > 0) {
187 $buffer .= $this->streams[$this->current]->read($remaining);
188 $remaining = $length - strlen($buffer);
H A DCachingStream.php71 $remaining = $length - strlen($data);
74 if ($remaining) {
80 $remaining + $this->skipReadBytes
H A DLimitStream.php152 $remaining = ($this->offset + $this->limit) - $this->stream->tell();
153 if ($remaining > 0) {
156 return $this->stream->read(min($remaining, $length));
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DPumpStream.php126 $remaining = $length - $readLen;
128 if ($remaining) {
129 $this->pump($remaining);
130 $data .= $this->buffer->read($remaining);
H A DAppendStream.php191 $remaining = $length;
194 while ($remaining > 0) {
205 $result = $this->streams[$this->current]->read($remaining);
214 $remaining = $length - strlen($buffer);
H A DLimitStream.php148 $remaining = ($this->offset + $this->limit) - $this->stream->tell();
149 if ($remaining > 0) {
152 return $this->stream->read(min($remaining, $length));
H A DCachingStream.php88 $remaining = $length - strlen($data);
91 if ($remaining) {
97 $remaining + $this->skipReadBytes
H A DUtils.php58 $remaining = $maxLen;
59 while ($remaining > 0 && !$source->eof()) {
60 $buf = $source->read(min($bufferSize, $remaining));
65 $remaining -= $len;
/plugin/recommend/helper/
H A Dassignment.php26 $remaining = array_filter($assignments, function($data) use ($assignment) {
35 if (count($remaining) < count($assignments)) {
36 … return (bool)file_put_contents(self::$confFile, json_encode($remaining, JSON_PRETTY_PRINT));
/plugin/findologicxmlexport/vendor/sebastian/comparator/src/
H A DArrayComparator.php49 $remaining = $actual;
54 unset($remaining[$key]);
103 foreach ($remaining as $key => $value) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP.php1263 $remaining = static::BASE - $overflow;
1264 $tempsplit = $split - $remaining;
1277 $digit[$j] = ($digit[$j] >> $overflow) | ($newbits << $remaining);
1307 $remaining = static::BASE;
1312 $remaining -= $split;
1313 $overflow = $split <= $remaining ? 0 : $split - $remaining;
1315 if (!$remaining) {
1317 $remaining = static::BASE;
1322 $digit |= ($val[$i] & $tempmask) << $remaining;
1324 $remaining = static::BASE - $overflow;
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/WhiteSpace/
H A DDisallowSpaceIndentSniff.php171 $remaining = ($numSpaces % $this->_tabWidth);
173 $padding .= str_repeat(' ', $remaining);
/plugin/vimeo/
H A Dsyntax.php174 $remainingRateLimit = $http->resp_headers['x-ratelimit-remaining'];
177 … $errors[] = 'The remaining Vimeo rate-limit is very low. Please check back in 15min or later';
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dtitle.rst5 start with uppercase letters, all remaining characters are lowercase:
/plugin/amcharts/assets/amcharts/plugins/dataloader/
H A Ddataloader.min.js1remaining++,c.percentLoaded[b]=0,void 0!==g.progress&&"function"==typeof g.progress&&void 0===g._p…
H A Ddataloader.js63 l.remaining = 0;
190 l.remaining++;
279 l.remaining--;
282 if ( 0 === l.remaining ) {
/plugin/jcapture/src/com/hammurapi/jcapture/
H A DMappedImage.java83 ret = new byte[buffer.remaining()]; in getImageBytes()
/plugin/countdown/
H A DChangeLog14 * syntax.php: Corrected a "one day remaining" bug as notified in wikipage.
/plugin/s5reloaded/ui/thesis/
H A Dslides.js180 remaining: 0 property in countdown
1055 countdown.remaining = startFrom * 60000; // convert to msecs
1057 countdown.end = countdown.start + countdown.remaining;
1059 var timeLeft = formatTime(countdown.remaining);
1068 countdown.remaining = countdown.end - now;
1072 if (countdown.remaining >= 0) {
1073 var timeLeft = formatTime(countdown.remaining);
1075 if (countdown.remaining < 300000) {
1080 var timeLeft = '-' + formatTime(-countdown.remaining);
1093 countdown.end = countdown.start + countdown.remaining;
[all …]
/plugin/upgrade/vendor/splitbrain/php-cli/
H A DREADME.md69 - ``$options->getArgs()`` returns the remaining arguments after removing the options
120 When mixing fixed and percentage widths, percentages refer to the remaining space after all fixed columns have been

12345