Home
last modified time | relevance | path

Searched refs:count (Results 151 – 175 of 2539) sorted by path

12345678910>>...102

/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DMockHandler.php173 public function count() function in GuzzleHttp\\Handler\\MockHandler
175 return count($this->queue);
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DHandlerStack.php248 } elseif ($idx === count($this->stack) - 1) {
H A Dfunctions.php47 return 'array(' . count($input) . ')';
/plugin/authgooglesheets/vendor/guzzlehttp/promises/src/
H A DAggregateException.php14 sprintf('%s; %d rejected promises', $msg, count($reasons))
H A DEachPromise.php143 ? call_user_func($this->concurrency, count($this->pending))
145 $concurrency = max($concurrency - count($this->pending), 0);
H A DUtils.php194 * @param int $count Total number of promises.
199 public static function some($count, $promises) argument
206 function ($value, $idx, PromiseInterface $p) use (&$results, $count) {
211 if (count($results) >= $count) {
219 function () use (&$results, &$rejections, $count) {
220 if (count($results) !== $count) {
H A Dfunctions.php193 * @param int $count Total number of promises.
200 function some($count, $promises) argument
202 return Utils::some($count, $promises);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DAppendStream.php139 ($this->current >= count($this->streams) - 1 &&
190 $total = count($this->streams) - 1;
H A DMessage.php128 if ($messageParts === false || count($messageParts) !== 2) {
136 if ($headerParts === false || count($headerParts) !== 2) {
148 $count = preg_match_all(Rfc7230::HEADER_REGEX, $rawHeaders, $headerLines, PREG_SET_ORDER);
151 if ($count !== substr_count($rawHeaders, "\n")) {
H A DMessageTrait.php171 if (count($value) === 0) {
H A DStreamWrapper.php86 public function stream_read($count) argument
88 return $this->stream->read($count);
H A DUriResolver.php199 $relativePath = str_repeat('../', count($sourceSegments)) . implode('/', $targetSegments);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DChromePHPFormatter.php58 if (count($message) === 1) {
H A DJsonFormatter.php168 $count = 1;
170 if ($count++ > $this->maxNormalizeItemCount) {
171 …$normalized['...'] = 'Over '.$this->maxNormalizeItemCount.' items ('.count($data).' total), aborti…
H A DNormalizerFormatter.php152 $count = 1;
154 if ($count++ > $this->maxNormalizeItemCount) {
155 …$normalized['...'] = 'Over ' . $this->maxNormalizeItemCount . ' items ('.count($data).' total), ab…
H A DWildfireFormatter.php84 if (count($message) === 1) {
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DBrowserConsoleHandler.php18 use function count; alias
83 if (count(static::$records)) {
227 $labels[$string] = $colors[count($labels) % count($colors)];
H A DChromePHPHandler.php165 … self::$json['rows'][count(self::$json['rows']) - 1] = $this->getFormatter()->format($record);
H A DDeduplicationHandler.php128 for ($i = count($store) - 1; $i >= 0; $i--) {
H A DFilterHandler.php150 if (count($filtered) > 0) {
151 $this->getHandler($filtered[count($filtered) - 1])->handleBatch($filtered);
H A DFingersCrossedHandler.php140 if ($this->bufferSize > 0 && count($this->buffer) > $this->bufferSize) {
195 if (count($this->buffer) > 0) {
H A DRotatingFileHandler.php148 if ($this->maxFiles >= count($logFiles)) {
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/Slack/
H A DSlackRecord.php231 $hasSecondDimension = count(array_filter($normalized, 'is_array'));
232 $hasNonNumericKeys = !count(array_filter(array_keys($normalized), 'is_numeric'));
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Processor/
H A DMercurialProcessor.php68 if (count($result) >= 3) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/
H A DStrings.php169 if (strlen($format) != count($elements)) {
244 for ($i = 1; $i < count($parts); $i += 2) {

12345678910>>...102