Home
last modified time | relevance | path

Searched refs:error (Results 126 – 150 of 1814) sorted by relevance

12345678910>>...73

/plugin/sentry/
H A DEvent.php154 * @param array $error
156 protected function setError($error) argument
159 if (isset($error['trace'])) {
160 $trace = $error['trace'];
162 $trace = [$error];
170 'type' => $this->errorTypeToString($error['type']),
171 'value' => $error['message'],
178 $this->setLogLevel($this->errorTypeToSeverity($error['type']));
414 * @param array $error
417 public static function fromError($error) argument
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ArtifactRegistry/
H A DImportAptArtifactsErrorInfo.php30 public function setError(Status $error) argument
32 $this->error = $error;
39 return $this->error;
H A DImportYumArtifactsErrorInfo.php30 public function setError(Status $error) argument
32 $this->error = $error;
39 return $this->error;
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DElasticsearchHandler.php179 * @param mixed[] $error
181 protected function createExceptionFromError(array $error): ElasticsearchRuntimeException argument
183 …$previous = isset($error['caused_by']) ? $this->createExceptionFromError($error['caused_by']) : nu…
185 … return new ElasticsearchRuntimeException($error['type'] . ': ' . $error['reason'], 0, $previous);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Strings/
H A DUnnecessaryStringConcatSniff.php47 public $error = true; variable in Generic_Sniffs_Strings_UnnecessaryStringConcatSniff
126 $error = 'String concat is not required here; use a single string instead';
127 if ($this->error === true) {
128 $phpcsFile->addError($error, $stackPtr, 'Found');
130 $phpcsFile->addWarning($error, $stackPtr, 'Found');
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleCloudApigeeV1Export.php37 public $error; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1Export
104 public function setError($error) argument
106 $this->error = $error;
113 return $this->error;
/plugin/farm/
H A Danimalmanager.class.php45 $this->manager->error('system_errors', 'system_badtoken_failure');
58 $this->manager->error('animal_new_errors', 'animal_new_noname_failure');
66 $this->manager->error('animal_errors', 'animal_noid_failure');
87 $this->manager->error('system_errors', 'system_badtoken_failure');
112 $this->manager->error('animal_users_errors', 'postparametermissing_failure');
140 }else $this->manager->error('animal_users_errors', 'animal_users_add_create_failure');
150 }else $this->manager->error('animal_users_errors', 'animal_users_delete_failure');
159 }else $this->manager->error('animal_editfile_errors', 'animal_editfile_delete_failure');
163 }else $this->manager->error('animal_editfile_errors', 'animal_editfile_save_failure');
164 }else $this->manager->error('animal_editfile_errors', 'animal_editfile_save_failure');
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/
H A DControlSignatureSniff.php93 $error = 'Expected 1 space after %s keyword; %s found';
99 $fix = $phpcsFile->addFixableError($error, $stackPtr, 'SpaceAfterKeyword', $data);
118 $error = 'Expected 1 space after closing parenthesis; found %s';
125 … $fix = $phpcsFile->addFixableError($error, $closer, 'SpaceAfterCloseParenthesis', array($found));
185 $error = 'Newline required after opening brace';
186 $fix = $phpcsFile->addFixableError($error, $opener, 'NewlineAfterOpenBrace');
215 $error = 'Expected 0 spaces before semicolon; %s found';
217 … $fix = $phpcsFile->addFixableError($error, $closer, 'SpaceBeforeSemicolon', $data);
264 $error = 'Expected 1 space after closing brace; %s found';
266 $fix = $phpcsFile->addFixableError($error, $closer, 'SpaceAfterCloseBrace', $data);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Script/
H A DOperation.php50 public function setError(Status $error) argument
52 $this->error = $error;
59 return $this->error;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/HangoutsChat/
H A DChatAppLogEntry.php64 public function setError(Status $error) argument
66 $this->error = $error;
73 return $this->error;
H A DDynamiteIntegrationLogEntry.php64 public function setError(Status $error) argument
66 $this->error = $error;
73 return $this->error;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/YouTubeAnalytics/
H A DErrors.php51 public function setError($error) argument
53 $this->error = $error;
60 return $this->error;
/plugin/zip/pear/File/Archive/Reader/
H A DZip.php92 if (PEAR::isError($error)) {
93 return $error;
162 if (PEAR::isError($error)) {
163 return $error;
216 $error = $this->uncompressData();
217 if (PEAR::isError($error)) {
218 return $error;
319 if (PEAR::isError($error)) {
320 return $error;
397 if (PEAR::isError($error)) {
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/NamingConventions/
H A DValidFunctionNameSniff.php59 …$error = 'Function name "%s" is invalid; only PHP magic methods should be prefixed with a double u…
60 $phpcsFile->addError($error, $stackPtr, 'DoubleUnderscore', $errorData);
65 $error = 'Function name "%s" is not in camel caps format';
66 $phpcsFile->addError($error, $stackPtr, 'NotCamelCaps', $errorData);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Operators/
H A DIncrementDecrementUsageSniff.php105 $error = 'Increment and decrement operators cannot be used in an arithmetic operation';
106 $phpcsFile->addError($error, $stackPtr, 'NotAllowed');
117 … $error = 'Increment and decrement operators must be bracketed when used in string concatenation';
118 $phpcsFile->addError($error, $stackPtr, 'NoBrackets');
227 $error = 'Increment';
229 $error = 'Decrement';
232 … $error .= " operators should be used where possible; found \"$found\" but expected \"$expected\"";
233 $phpcsFile->addError($error, $stackPtr, 'Found');
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/
H A DFunctionCommentThrowTagSniff.php19 $error = 'Class PHP_CodeSniffer_Standards_AbstractScopeSniff not found'; variable
20 throw new PHP_CodeSniffer_Exception($error);
230 $error = 'Missing @throws tag in function comment';
231 $phpcsFile->addError($error, $commentEnd, 'Missing');
244 $error = 'Expected %s @throws tag(s) in function comment; %s found';
249 $phpcsFile->addError($error, $commentEnd, 'WrongNumber', $data);
255 $error = 'Missing @throws tag for "%s" exception';
257 $phpcsFile->addError($error, $commentEnd, 'Missing', $data);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudAsset/
H A DMoveAnalysis.php62 public function setError(Status $error) argument
64 $this->error = $error;
71 return $this->error;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Monitoring/
H A DCollectdPayloadError.php35 public function setError(Status $error) argument
37 $this->error = $error;
44 return $this->error;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudVideoIntelligence/
H A DGoogleCloudVideointelligenceV1p3beta1StreamingAnnotateVideoResponse.php62 public function setError(GoogleRpcStatus $error) argument
64 $this->error = $error;
71 return $this->error;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/
H A DInstanceManagedByIgmError.php34 public function setError(InstanceManagedByIgmErrorManagedInstanceError $error) argument
36 $this->error = $error;
43 return $this->error;
/plugin/diagramsnet/lib/
H A DelectronFilesWorker.js19 postMessage({error: true, msg: 'empty data', reqId: reqId});
30 postMessage({error: true, msg: 'saving failed', e: e, reqId: reqId});
38 postMessage({error: true, msg: 'stat failed', e: e2, reqId: reqId});
56 postMessage({error: true, msg: 'all saving trials failed', e: e, reqId: reqId});
101 postMessage({error: true, msg: 'conflict', e: {isConflicted: true}, reqId: reqId});
105 postMessage({error: true, msg: 'stat failed', e: err, reqId: reqId});
/plugin/s5reloaded/ui/effects_support/
H A Dunittest.js276 error: function(error) { method in Test.Unit.Assertions
278 this.messages.push(error.name + ": "+ error.message + "(" + Test.Unit.inspect(error) +")");
289 catch(e) { this.error(e); }
296 catch(e) { this.error(e); }
303 catch(e) { this.error(e); }
311 catch(e) { this.error(e); }
317 catch(e) { this.error(e); }
337 catch(e) { this.error(e); }
344 catch(e) { this.error(e); }
360 catch(e) { this.error(e); }
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/
H A DDeprecatedFunctionsSniff.php83 $error = 'Function %s() has been deprecated';
86 if ($this->error === true) {
87 $phpcsFile->addError($error, $stackPtr, $type, $data);
89 $phpcsFile->addWarning($error, $stackPtr, $type, $data);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/
H A DFunctionSpacingSniff.php105 $error = 'Expected %s blank line';
107 $error .= 's';
110 $error .= ' after function; %s found';
116 $fix = $phpcsFile->addFixableError($error, $closer, 'After', $data);
204 $error = 'Expected %s blank line';
206 $error .= 's';
209 $error .= ' before function; %s found';
215 $fix = $phpcsFile->addFixableError($error, $stackPtr, 'Before', $data);
/plugin/bpmnio/vendor/dmn-js/dist/assets/
H A Ddmn-js-drd.css5 --dmn-definitions-error-color: var(--color-red-360-100-45);
6 --dmn-definitions-error-border-color: var(--color-red-360-100-45);
7 --dmn-definitions-error-background-color: var(--color-red-360-100-97);
67 .dmn-definitions .dmn-definitions-error-message {
68 color: var(--dmn-definitions-error-color);
74 .dmn-definitions .dmn-definitions-id.dmn-definitions-error {
75 border-color: var(--dmn-definitions-error-border-color);
76 background-color: var(--dmn-definitions-error-background-color);

12345678910>>...73