Home
last modified time | relevance | path

Searched refs:message (Results 226 – 250 of 1663) sorted by last modified time

12345678910>>...67

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A Dfa2fe60f570bd930d2891778c6efbfe6.asciidoc9 'message' => 'this is a test',
H A Db0eaf67e5cce24ef8889bf20951ccec1.asciidoc17 'message' => 'brown fox',
H A D048d8abd42d094bbdcf4452a58ccb35b.asciidoc11 'message' => 'trying out Elasticsearch',
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DBREAKING_CHANGES.md5 deprecation message).
H A DCHANGELOG.md69 - Improved message of JSON errors using `json_last_error_msg()`
85 - Fixes JsonErrorException with code instead of message
87 - Better exception message for Could not parse URI
134 Using the `@` operator is still possible to intercept the deprecation message using
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DTextStructureNamespace.asciidoc32 $params['line_merge_size_limit'] = (int) Maximum number of characters permitted in a single message when lines are merged to create messages. (Default = 10000)
H A DMlNamespace.asciidoc308 $params['line_merge_size_limit'] = (int) Maximum number of characters permitted in a single message when lines are merged to create messages. (Default = 10000)
/plugin/elasticsearch/vendor/ruflin/elastica/src/Exception/Connection/
H A DHttpException.php17 * Error code / message.
19 * @var int Error code / message
32 $message = $this->getErrorMessage($this->getError());
33 parent::__construct($message, $request, $response);
37 * Returns the error message corresponding to the error code
42 * @return string Error message
67 * Return Error code / message.
69 * @return int Error code / message
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DResponse.php75 * Error message.
77 * @return string Error message
93 $message = $rootError['reason'];
95 $message .= ' [index: '.$rootError['index'].']';
99 $message .= ' [reason: '.$error['reason'].']';
102 return $message;
362 $response = ['message' => $response];
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlFactory.php116 $message = isset($response['err_message'])
126 ? new ConnectException($message)
127 : new RingException($message);
H A DStreamHandler.php129 $message = $e->getMessage();
132 if (strpos($message, 'getaddrinfo') // DNS lookup failed
133 || strpos($message, 'Connection refused')
160 'message' => $msg,
171 $message = 'Error creating resource: ';
174 $message .= "[$key] $value" . PHP_EOL;
177 throw new RingException(trim($message));
345 static $args = ['severity', 'message', 'message_code',
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/
H A DCore.php32 * Gets an array of header line values from a message for a specific header
34 * This method searches through the "headers" key of a message for a header
37 * @param array $message Request or response hash.
42 public static function headerLines($message, $header) argument
46 if (!empty($message['headers'])) {
47 foreach ($message['headers'] as $name => $value) {
58 * Gets a header value from a message as a string or null
60 * This method searches through the "headers" key of a message for a header
64 * @param array $message Request or response hash.
69 public static function header($message, argument
85 firstHeader($message, $header) global() argument
108 hasHeader($message, $header) global() argument
150 removeHeader(array $message, $header) global() argument
172 setHeader(array $message, $header, array $value) global() argument
226 body($message) global() argument
260 rewindBody($message) global() argument
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Common/
H A DEmptyLogger.php35 public function log($level, $message, array $context = []) argument
/plugin/elasticsearch/vendor/nyholm/dsn/src/Exception/
H A DInvalidDsnException.php19 public function __construct(string $dsn, string $message) argument
22 parent::__construct(sprintf('%s (%s)', $message, $dsn));
H A DFunctionNotSupportedException.php19 public function __construct(string $dsn, string $function, ?string $message = null) argument
21 parent::__construct($dsn, $message ?? sprintf('Function "%s" is not supported', $function));
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dbreaking-changes.asciidoc15 operator suppresses the error message, however, it is still possible to catch it
24 @trigger_error('Deprecation message here', E_USER_DEPRECATED);
H A Drelease-notes.asciidoc143 * Improved message of JSON errors using `json_last_error_msg()`
165 * Fixes JsonErrorException with code instead of message
167 * Better exception message for Could not parse URI
231 Using the `@` operator is still possible to intercept the deprecation message
/plugin/elasticsearch/vendor/psr/log/Psr/Log/
H A DAbstractLogger.php17 * @param string $message
22 public function emergency($message, array $context = array()) argument
24 $this->log(LogLevel::EMERGENCY, $message, $context);
33 * @param string $message
38 public function alert($message, array $context = array()) argument
40 $this->log(LogLevel::ALERT, $message, $context);
48 * @param string $message
53 public function critical($message, array $context = array()) argument
55 $this->log(LogLevel::CRITICAL, $message, $context);
62 * @param string $message
67 error($message, array $context = array()) global() argument
83 warning($message, array $context = array()) global() argument
96 notice($message, array $context = array()) global() argument
111 info($message, array $context = array()) global() argument
124 debug($message, array $context = array()) global() argument
[all...]
H A DLoggerInterface.php8 * The message MUST be a string or object implementing __toString().
10 * The message MAY contain placeholders in the form: {foo} where foo
25 * @param string $message
30 public function emergency($message, array $context = array()); argument
38 * @param string $message
43 public function alert($message, array $context = array()); argument
50 * @param string $message
55 public function critical($message, array $context = array()); argument
61 * @param string $message
66 public function error($message, arra argument
79 warning($message, array $context = array()) global() argument
89 notice($message, array $context = array()) global() argument
101 info($message, array $context = array()) global() argument
111 debug($message, array $context = array()) global() argument
124 log($level, $message, array $context = array()) global() argument
[all...]
H A DLoggerTrait.php18 * @param string $message
23 public function emergency($message, array $context = array()) argument
25 $this->log(LogLevel::EMERGENCY, $message, $context);
34 * @param string $message
39 public function alert($message, array $context = array()) argument
41 $this->log(LogLevel::ALERT, $message, $context);
49 * @param string $message
54 public function critical($message, array $context = array()) argument
56 $this->log(LogLevel::CRITICAL, $message, $context);
63 * @param string $message
68 error($message, array $context = array()) global() argument
84 warning($message, array $context = array()) global() argument
97 notice($message, array $context = array()) global() argument
112 info($message, array $context = array()) global() argument
125 debug($message, array $context = array()) global() argument
141 log($level, $message, array $context = array()) global() argument
[all...]
H A DNullLogger.php19 * @param string $message
26 public function log($level, $message, array $context = array()) argument
/plugin/elasticsearch/vendor/react/promise/src/
H A DUnhandledRejectionException.php22 $message = \sprintf('Unhandled Rejection: %s', \json_encode($reason));
24 parent::__construct($message, 0);
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md683 - `\Elastica\JSON` throws exception with readable message instead of errno
1668 if use Elastica\Log outside we need use as(https://github.com/php-fig/log) for example Elastica\Log::info($message) or Elastica\Log::log(LogLevel::INFO,$message)
/plugin/elasticsearch/vendor/psr/log/Psr/Log/Test/
H A DLoggerInterfaceTest.php41 public function testLogsAtAllLevels($level, $message) argument
44 $logger->{$level}($message, array('user' => 'Bob'));
45 $logger->log($level, $message, array('user' => 'Bob'));
48 $level.' message of level '.$level.' with context: Bob',
49 $level.' message of level '.$level.' with context: Bob',
57 LogLevel::EMERGENCY => array(LogLevel::EMERGENCY, 'message of level emergency with context: {user}'),
58 LogLevel::ALERT => array(LogLevel::ALERT, 'message of level alert with context: {user}'),
59 LogLevel::CRITICAL => array(LogLevel::CRITICAL, 'message of level critical with context: {user}'),
60 LogLevel::ERROR => array(LogLevel::ERROR, 'message of level error with context: {user}'),
61 LogLevel::WARNING => array(LogLevel::WARNING, 'message o
[all...]
H A DTestLogger.php30 * @method bool hasEmergencyThatContains($message)
31 * @method bool hasAlertThatContains($message)
32 * @method bool hasCriticalThatContains($message)
33 * @method bool hasErrorThatContains($message)
34 * @method bool hasWarningThatContains($message)
35 * @method bool hasNoticeThatContains($message)
36 * @method bool hasInfoThatContains($message)
37 * @method bool hasDebugThatContains($message)
39 * @method bool hasEmergencyThatMatches($message)
40 * @method bool hasAlertThatMatches($message)
69 log($level, $message, array $context = []) global() argument
102 hasRecordThatContains($message, $level) global() argument
[all...]

12345678910>>...67