Home
last modified time | relevance | path

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

123456

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/Paging/
H A DPagingResponse.php31 private $remaining; variable in FreeDSx\\Ldap\\Server\\Paging\\PagingResponse
41 * @param int $remaining
46 int $remaining = 0 argument
50 $this->remaining = $remaining;
66 return $this->remaining;
81 * @param int $remaining The number of entries left (if known)
86 int $remaining = 0 argument
91 $remaining
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AnalyticsData/
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/
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/
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/
DPumpStream.php117 $remaining = $length - $readLen;
119 if ($remaining) {
120 $this->pump($remaining);
121 $data .= $this->buffer->read($remaining);
DAppendStream.php177 $remaining = $length;
179 while ($remaining > 0) {
187 $buffer .= $this->streams[$this->current]->read($remaining);
188 $remaining = $length - strlen($buffer);
DCachingStream.php71 $remaining = $length - strlen($data);
74 if ($remaining) {
80 $remaining + $this->skipReadBytes
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/
DPumpStream.php126 $remaining = $length - $readLen;
128 if ($remaining) {
129 $this->pump($remaining);
130 $data .= $this->buffer->read($remaining);
DAppendStream.php191 $remaining = $length;
194 while ($remaining > 0) {
205 $result = $this->streams[$this->current]->read($remaining);
214 $remaining = $length - strlen($buffer);
DLimitStream.php148 $remaining = ($this->offset + $this->limit) - $this->stream->tell();
149 if ($remaining > 0) {
152 return $this->stream->read(min($remaining, $length));
DCachingStream.php88 $remaining = $length - strlen($data);
91 if ($remaining) {
97 $remaining + $this->skipReadBytes
DUtils.php58 $remaining = $maxLen;
59 while ($remaining > 0 && !$source->eof()) {
60 $buf = $source->read(min($bufferSize, $remaining));
65 $remaining -= $len;
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/
DPumpStream.php131 $remaining = $length - $readLen;
133 if ($remaining) {
134 $this->pump($remaining);
135 $data .= $this->buffer->read($remaining);
DAppendStream.php192 $remaining = $length;
195 while ($remaining > 0) {
205 $result = $this->streams[$this->current]->read($remaining);
213 $remaining = $length - strlen($buffer);
DLimitStream.php148 $remaining = ($this->offset + $this->limit) - $this->stream->tell();
149 if ($remaining > 0) {
152 return $this->stream->read(min($remaining, $length));
DCachingStream.php93 $remaining = $length - strlen($data);
96 if ($remaining) {
102 $remaining + $this->skipReadBytes
DUtils.php58 $remaining = $maxLen;
59 while ($remaining > 0 && !$source->eof()) {
60 $buf = $source->read(min($bufferSize, $remaining));
65 $remaining -= $len;
/plugin/recommend/helper/
Dassignment.php27 $remaining = array_filter($assignments, function($data) use ($assignment) {
36 if (count($remaining) < count($assignments)) {
37 … return (bool)file_put_contents(self::$confFile, json_encode($remaining, JSON_PRETTY_PRINT));
/plugin/asciidocjs/node_modules/lodash/
D_shortOut.js23 remaining = HOT_SPAN - (stamp - lastCalled);
26 if (remaining > 0) {
/plugin/findologicxmlexport/vendor/sebastian/comparator/src/
DArrayComparator.php49 $remaining = $actual;
54 unset($remaining[$key]);
103 foreach ($remaining as $key => $value) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
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/
DDisallowSpaceIndentSniff.php171 $remaining = ($numSpaces % $this->_tabWidth);
173 $padding .= str_repeat(' ', $remaining);
/plugin/asciidocjs/node_modules/promise/setimmediate/
Des6-extensions.js54 var remaining = args.length;
79 if (--remaining === 0) {

123456