Home
last modified time | relevance | path

Searched refs:message (Results 1 – 25 of 150) sorted by relevance

123456

/template/strap/vendor/php-webdriver/webdriver/lib/Exception/
H A DWebDriverException.php15 * @param string $message
18 public function __construct($message, $results = null) argument
20 parent::__construct($message);
36 * @param string $message
87 public static function throwException($status_code, $message, $results) argument
93 throw new ElementClickInterceptedException($message, $results);
95 throw new ElementNotInteractableException($message, $results);
97 throw new InsecureCertificateException($message, $results);
99 throw new InvalidArgumentException($message, $results);
101 throw new InvalidCookieDomainException($message, $results);
[all …]
/template/strap/ComboStrap/
H A DLogUtility.php76 * @param string $message
81 …public static function msg(string $message, int $level = self::LVL_MSG_ERROR, string $canonical = … argument
85 self::messageNotEmpty($message);
93 self::log2FrontEnd($message, $level, $canonical);
108 self::log2file($message, $level, $canonical, $e);
114 self::throwErrorIfTest($level, $message, $e);
170 …public static function log2FrontEnd($message, $level, string $canonical = self::SUPPORT_CANONICAL,… argument
174 self::messageNotEmpty($message);
176 $message = $e->getMessage();
202 echo "$message\n";
[all …]
H A DPipelineUtility.php53 $message = null;
58 $message = substr($processedExpression, 0, $secondQuoteChar);
65 if ($message == null) {
68 $message = substr($processedExpression, 0, $pipeCharPosition);
71 if ($message == null) {
74 $message = $processedExpression;
85 $message = trim(substr($processedExpression, 0, $firstPipeChar));
101 …$message = \syntax_plugin_combo_variable::replaceVariablesWithValuesFromContext($message, $context…
130 $message = self::replace($commandArgs, $message);
133 $message = self::head($commandArgs, $message);
[all …]
H A DMessage.php45 $message = new Message(self::TYPE_INFO);
47 $message->addPlainTextContent($plainText);
49 return $message;
54 $message = new Message(self::TYPE_WARNING);
56 $message->addPlainTextContent($plainText);
58 return $message;
63 function addContent($message, $mime): Message argument
68 $this->content[$mime][] = $message;
74 $message = new Message(self::TYPE_ERROR);
76 $message->addPlainTextContent($plainText);
[all …]
H A DQualityTag.php73 …$message = "<p>The page has a " . PluginUtility::getDocumentationHyperLink("quality:score", "quali…
81 …$message .= "<div class='alert alert-warning'>This is a {$lqPageUrl} because it has failed the fol…
82 $message .= "<ul style='margin-bottom: 0'>";
91 …$message .= "<li>" . PluginUtility::getDocumentationHyperLink("quality:rule#list", $mandatoryFaile…
94 $message .= "</ul>";
95 $message .= "</div>";
97 $message .= "<p>You can still win a couple of points.</p>";
98 $message .= "<ul>";
100 $message .= "<li>$qualityInfo</li>";
102 $message .= "</ul>";
[all …]
H A DCacheTag.php31 $message = "No markup executing. Cache expiration date could not be set";
32 LogUtility::error($message, self::MARKUP);
35 PluginUtility::EXIT_MESSAGE => $message
49 … $message = "Internal Error: The cache expiration date could not be stored: {$e->getMessage()}";
50 LogUtility::error($message, self::MARKUP, $e);
52 $returnedArray[PluginUtility::EXIT_MESSAGE] = $message;
68 $message = $data[PluginUtility::EXIT_MESSAGE];
69 LogUtility::error($message, CacheExpirationFrequency::PROPERTY_NAME);
H A DExceptionCompile.php21 … public function __construct($message = "", $canonical = "", $code = 0, Throwable $previous = null) argument
24 parent::__construct($message, $code, $previous);
35 public static function withMessageAndError(string $message, Throwable $previous) argument
38 return new $calledClass($message, "support", 1, $previous);
H A DExceptionRuntime.php23 … public function __construct($message = "", $canonical = "", $code = 0, Throwable $previous = null) argument
26 parent::__construct($message, $code, $previous);
36 public static function withMessageAndError(string $message, Throwable $previous) argument
39 return new $calledClass($message, "support", 1, $previous);
H A DExceptionNotEquals.php19 … public function __construct($message = "", $canonical = "", $code = 0, Throwable $previous = null) argument
21 parent::__construct($message, $canonical, $code, $previous);
24 public static function create(string $message, $left, $right): ExceptionNotEquals argument
26 return (new ExceptionNotEquals($message))
H A DCacheLog.php28 …public static function deleteCacheIfExistsAndLog(IFetcher $fetcher, string $event, string $message) argument
48 $message
58 … public static function renderCacheAndLog(IFetcherSource $fetcher, string $event, string $message) argument
71 $message
82 …tion logCacheEvent(string $event, string $path, string $format, string $operation, string $message) argument
92 self::MESSAGE_ATT => $message
H A DSqliteRequest.php109 $message = $this->getErrorMessage();
110 throw new ExceptionCompile("Error in the $requestType. Message: {$message}");
114 $message = $this->getErrorMessage();
115 …uestType`. res is not a PDOStatement but as the value ($res). Message: {$message}, Query: {$queryE…
139 $message = "";
142 $message = ("No rows were deleted or updated");
145 return "$message. : {$errorInfoAsString}";
H A DLowQualityCalculatedIndicator.php67 $message = "Error while reading the json analytics. {$e->getMessage()}";
68 LogUtility::internalError($message, self::CANONICAL);
69 throw new ExceptionNotFound($message);
/template/strap/ComboStrap/Tag/
H A DFollowTag.php44 …$message = "The brand button does not have any follow url. You need to set at minimum the `$handle…
45 return self::returnErrorString($message, $state);
54 $message = "The brand button creation returns an error ({$e->getMessage()}";
55 return self::returnErrorString($message, $state);
65 …$message = "The style of the share button ($brand) could not be determined. Error: {$e->getMessage…
66 return self::returnErrorString($message, $state);
80 …$message = "The brand button creation returns an error when creating the link ({$e->getMessage()}";
81 return self::returnErrorString($message, $state);
91 … $message = "Getting the icon for the brand ($brand) returns an error ({$e->getMessage()}";
92 return self::returnErrorString($message,$state);
[all …]
/template/strap/vendor/symfony/yaml/Exception/
H A DParseException.php27 * @param string $message The error message
32 …public function __construct(string $message, int $parsedLine = -1, string $snippet = null, string … argument
37 $this->rawMessage = $message;
41 parent::__construct($this->message, 0, $previous);
108 $this->message = $this->rawMessage;
111 if ('.' === substr($this->message, -1)) {
112 $this->message = substr($this->message, 0, -1);
117 …$this->message .= sprintf(' in %s', json_encode($this->parsedFile, \JSON_UNESCAPED_SLASHES | \JSON…
121 $this->message .= sprintf(' at line %d', $this->parsedLine);
125 $this->message .= sprintf(' (near "%s")', $this->snippet);
[all …]
/template/strap/action/
H A Droutermessage.php107 $message = Message::createInfoMessage()
112 $message = Message::createWarningMessage()
116 $message = Message::createWarningMessage()
120 $message = Message::createWarningMessage()
124 $message = Message::createWarningMessage()
129 $message = Message::createWarningMessage()
134 $message = Message::createInfoMessage()
139 $message = Message::createInfoMessage()
146 $message = Message::createInfoMessage()
160 $this->addToMessagePagesWithSameName($message, $pageOrigin);
[all …]
/template/strap/resources/snippet/js/
H A Dsubscribe.js26 let message;
29 message = data.message;
36 if (typeof message === 'undefined') {
37 message = "Sorry. The server seems to be down.";
46 message = form.getAttribute("data-success-content");
47 if (message === null) {
48message = "A validation email has been send. <br>Check your mailbox and click on the validation li…
52 .addBody(message)
/template/twigstarter/vendor/twig/twig/src/Error/
DError.php53 * @param string $message The error message
58 …public function __construct(string $message, int $lineno = -1, $source = null, \Exception $previou… argument
75 $this->rawMessage = $message;
151 $this->message = $this->rawMessage;
161 if ('.' === substr($this->message, -1)) {
162 $this->message = substr($this->message, 0, -1);
167 if ('?' === substr($this->message, -1)) {
168 $this->message = substr($this->message, 0, -1);
178 $this->message .= sprintf(' in %s', $name);
182 $this->message .= sprintf(' at line %d', $this->lineno);
[all …]
/template/strap/vendor/php-webdriver/webdriver/lib/Remote/
H A DRemoteStatus.php15 protected $message; variable in Facebook\\WebDriver\\Remote\\RemoteStatus
21 * @param string $message
23 protected function __construct($isReady, $message, array $meta = []) argument
26 $this->message = (string) $message;
61 return $this->message;
/template/twigstarter/vendor/twig/twig/src/Test/
DIntegrationTestCase.php80 …public function testIntegration($file, $message, $condition, $templates, $exception, $outputs, $de… argument
82 …$this->doIntegrationTest($file, $message, $condition, $templates, $exception, $outputs, $deprecati…
89 …public function testLegacyIntegration($file, $message, $condition, $templates, $exception, $output… argument
91 …$this->doIntegrationTest($file, $message, $condition, $templates, $exception, $outputs, $deprecati…
111 $message = $match[1];
118 $message = $match[1];
128 …$tests[] = [str_replace($fixturesDir.'/', '', $file), $message, $condition, $templates, $exception…
144 …protected function doIntegrationTest($file, $message, $condition, $templates, $exception, $outputs… argument
206 $message = $e->getMessage();
207 … $this->assertSame(trim($exception), trim(sprintf('%s: %s', \get_class($e), $message)));
[all …]
/template/strap/vendor/symfony/deprecation-contracts/
H A Dfunction.php18 * @param string $message The message of the deprecation
23 function trigger_deprecation(string $package, string $version, string $message, ...$args): void argument
25 …version ? "Since $package $version: " : '').($args ? vsprintf($message, $args) : $message), \E_USE…
/template/strap/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/
H A DFailedPredicateException.php27 public function __construct(Parser $recognizer, string $predicate, ?string $message = null) argument
33 $this->formatMessage($predicate, $message)
73 public function formatMessage(string $predicate, ?string $message = null) : string argument
75 if ($message !== null) {
76 return $message;
/template/strap/vendor/php-webdriver/webdriver/lib/
H A DWebDriverWait.php39 * @param string $message
46 public function until($func_or_ec, $message = '') argument
71 throw new TimeoutException($message);
/template/strap/ComboStrap/Xml/
H A DXmlDocument.php182 if (!in_array($error->message, self::KNOWN_HTML_LOADING_ERRORS)) {
187 … strpos($error->message, "htmlParseEntityRef: expecting ';' in Entity") !== false
189 $error->message == "EntityRef: expecting ';'\n"
191 …$message = "There is big probability that there is an ampersand alone `&`. ie You forgot to call h…
193 $message = "Error while loading HTML";
198 … if (strpos($error->message, "Specification mandates value for attribute") !== false) {
199 …$message = "Xml does not allow boolean attribute (ie without any value). If you skip this error, y…
202 $message .= "Error: " . $error->message . ", Loaded text: " . $text;
213 throw new ExceptionBadSyntax($message, self::CANONICAL);
/template/dokubootstrapsimplified/
Dtpl_functions.php218 function dw($message) { argument
220 if (is_array($message)) {
221 print_r($message);
223 print $message;
/template/strap/ComboStrap/Api/
H A DQualityMessageHandler.php75 $message = QualityTag::createQualityReport($markupPath);
76 $status = $message->getStatus();
83 ->setBody($message->getContent(), Mime::getHtml())

123456