Home
last modified time | relevance | path

Searched refs:message (Results 626 – 650 of 1663) sorted by relevance

1...<<21222324252627282930>>...67

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/
H A DTeamCity.php323 $message = '';
327 $message = $message . $e->getClassName();
330 if (strlen($message) != 0 && strlen($e->getMessage()) != 0) {
331 $message = $message . ' : ';
335 return $message . $e->getMessage();
/plugin/commonmark/vendor/league/commonmark/bin/
H A Dcommonmark
/plugin/combo/ComboStrap/
H A DLowQualityCalculatedIndicator.php67 $message = "Error while reading the json analytics. {$e->getMessage()}";
68 LogUtility::internalError($message, self::CANONICAL);
69 throw new ExceptionNotFound($message);
H A DLogException.php22 public function __construct($message = "", $code = 0, Throwable $previous = null) argument
24 parent::__construct($message, $code, $previous);
/plugin/upgrade/HTTP/
H A DHTTPClient.php435 * If a message is received with both a Transfer-Encoding header field and a Content-Length
440 // for keep alive we need to read the whole message to clean up the socket for the next read
575 * @param string $message Description of what is being read
580 protected function sendData($socket, $data, $message) { argument
588 throw new HTTPClientException(sprintf('Timeout while sending %s (%.3fs)',$message, $time_used), -100);
590 throw new HTTPClientException("Socket disconnected while writing $message");
605 throw new HTTPClientException("Failed writing to socket while sending $message", -100);
618 * @param string $message Description of what is being read
625 protected function readData($socket, $nbytes, $message, $ignore_eof = false) { argument
634 sprintf('Timeout while reading %s after %d bytes (%.3fs)', $message,
675 readLine($socket, $message) global() argument
[all...]
/plugin/smtp/subtree/txtthinking/Mailer/src/Mailer/Exceptions/
H A DSMTPException.php30 public function __construct($message) argument
32 parent::__construct($message);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/
H A DPrivateKey.php82 * @param string $message
85 public function sign($message) argument
91 … $result = openssl_sign($message, $signature, $this->toString('PKCS8'), $this->hash->getHash());
104 $h = $this->hash->hash($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/keywords/action/
H A Dkeywords.php125 …Logger::error( "An error occurred during the Chat GPT call", $data->error->message, __FILE__, __LI…
129 if ( $data->choices[0]->message->function_call->name == "keywords_for_text" ) {
130 $arguments = json_decode( $data->choices[0]->message->function_call->arguments );
134 … Logger::debug( "INVALID Chat GPT response", $data->choices[0]->message, __FILE__, __LINE__ );
/plugin/webdav/vendor/psr/log/Psr/Log/
H A DNullLogger.php19 * @param string $message
26 public function log($level, $message, array $context = array()) argument
/plugin/authgooglesheets/vendor/psr/log/Psr/Log/
H A DNullLogger.php19 * @param string $message
26 public function log($level, $message, array $context = array()) argument
/plugin/elasticsearch/vendor/psr/log/Psr/Log/
H A DNullLogger.php19 * @param string $message
26 public function log($level, $message, array $context = array()) argument
/plugin/smtp/subtree/php-fig/log/Psr/Log/
H A DNullLogger.php19 * @param string $message
24 public function log($level, $message, array $context = array()) argument
/plugin/dw2pdf/vendor/psr/log/Psr/Log/
H A DNullLogger.php19 * @param string $message
26 public function log($level, $message, array $context = array()) argument
/plugin/swiftmail/Swift/
H A DException.php27 public function __construct($message, $code = 0) argument
29 parent::__construct($message, $code);
/plugin/strata/driver/
H A Ddriver.php219 * @param message string message to report when executing the query fails
222 public function query($query, $message=false) { argument
225 if($message === false) {
226 $message = $this->util->getLang('driver_query_failed_default');
232 msg(sprintf($this->utiutil->getLang('driver_query_failed'), $message, hsc($query), hsc($error[2])),-1);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ClientProtocolHandler/
H A DClientBasicHandler.php57 $message = $context->messageToSend();
58 $queue->sendMessage($message);
60 return $queue->getMessage($message->getMessageId());
/plugin/strata/lib/
H A Dstrata_exception.php16 * Constructor with message and data.
18 public function __construct($message, $data) { argument
19 parent::__construct($message);
/plugin/wikistyle2html/
H A Daction.php20 …$message = '<b>[IMPORTANT]</b> The plugin ID wikistyle2html, has been renamed to wikiformatstyling…
21 if (auth_ismanager()) msg($message);
/plugin/sequencediagram/bower_components/js-sequence-diagrams/src/
H A Dtheme.js44 function AssertException(message) { this.message = message; } argument
46 return 'AssertException: ' + this.message;
49 function assert(exp, message) { argument
51 throw new AssertException(message);
190 title.message = diagram.title;
236 var bb = this.textBBox(s.message, font);
335 this.drawTextBox(title, title.message, TITLE_MARGIN, TITLE_PADDING, this.font_, ALIGN_LEFT);
390 this.drawText(x, y, signal.message, this.font_, ALIGN_LEFT);
410 this.drawText(x, y, signal.message, this.font_, ALIGN_CENTER);
441 return this.drawTextBox(note, note.message, NOTE_MARGIN, NOTE_PADDING, this.font_, ALIGN_LEFT);
/plugin/git/lib/
H A DGit.php386 public function commit($message = "blank") { argument
400 $cmd = "commit -a -m \"".$message."\"";
620 * @param string $message
623 public function add_tag($tag, $message = null) argument
625 if ($message === null) {
626 $message = $tag;
628 return $this->run("tag -a $tag -m $message");
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/
H A DPrivateKey.php89 * @param string $message
92 public function sign($message) argument
109 … $result = sodium_crypto_sign_detached($message, $this->withPassword()->toString('libsodium'));
130 $r = $hash->hash($dom . $secret . $message);
136 $k = $hash->hash($dom . $R . $A . $message);
153 …$result = openssl_sign($message, $signature, $this->toString('PKCS8', ['namedCurve' => false]), $t…
166 $e = $this->hash->hash($message);
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Node/
H A DTrans.php53 $message = trim($this->getNode('notes')->getAttribute('data'));
56 $message = str_replace(array("\n", "\r"), ' ', $message);
57 $compiler->write("// notes: {$message}\n");
/plugin/webdav/vendor/sabre/http/lib/Auth/
H A DAWS.php213 * @param string $message
216 private function hmacsha1($key, $message) { argument
219 return hash_hmac('sha1', $message, $key, true);
229 $hmac = pack('H*', sha1(($key ^ $opad) . pack('H*', sha1(($key ^ $ipad) . $message))));
/plugin/davcal/vendor/sabre/http/lib/Auth/
H A DAWS.php213 * @param string $message
216 private function hmacsha1($key, $message) { argument
219 return hash_hmac('sha1', $message, $key, true);
229 $hmac = pack('H*', sha1(($key ^ $opad) . pack('H*', sha1(($key ^ $ipad) . $message))));

1...<<21222324252627282930>>...67