Home
last modified time | relevance | path

Searched refs:_exceptions (Results 1 – 25 of 652) sorted by relevance

12345678910>>...27

/dports/devel/py-oslo.utils/oslo.utils-4.12.0/oslo_utils/tests/
H A Dtest_excutils.py168 self._exceptions = []
174 while self._exceptions:
175 raise self._exceptions.pop(0)
181 self._exceptions = [
188 self.assertEqual([], self._exceptions)
200 self._exceptions = [
228 self._exceptions = [
259 self._exceptions = [
312 self._exceptions = [
355 self._exceptions = [
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DExceptionListImpl.java47 private Vector _exceptions; field in ExceptionListImpl
50 _exceptions = new Vector(INITIAL_CAPACITY, CAPACITY_INCREMENT); in ExceptionListImpl()
55 return _exceptions.size(); in count()
60 _exceptions.addElement(tc); in add()
67 return (TypeCode) _exceptions.elementAt(index); in item()
77 _exceptions.removeElementAt(index); in remove()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DExceptionListImpl.java47 private Vector _exceptions; field in ExceptionListImpl
50 _exceptions = new Vector(INITIAL_CAPACITY, CAPACITY_INCREMENT); in ExceptionListImpl()
55 return _exceptions.size(); in count()
60 _exceptions.addElement(tc); in add()
67 return (TypeCode) _exceptions.elementAt(index); in item()
77 _exceptions.removeElementAt(index); in remove()
/dports/net/google-cloud-sdk/google-cloud-sdk/platform/bq/third_party/absl/flags/
H A D__init__.py41 from absl.flags import _exceptions
94 Error = _exceptions.Error
95 CantOpenFlagFileError = _exceptions.CantOpenFlagFileError
96 DuplicateFlagError = _exceptions.DuplicateFlagError
97 IllegalFlagValueError = _exceptions.IllegalFlagValueError
98 UnrecognizedFlagError = _exceptions.UnrecognizedFlagError
99 UnparsedFlagAccessError = _exceptions.UnparsedFlagAccessError
100 ValidationError = _exceptions.ValidationError
101 FlagNameConflictsWithMethodError = _exceptions.FlagNameConflictsWithMethodError
H A D_flagvalues.py31 from absl.flags import _exceptions
379 raise _exceptions.IllegalFlagValueError(
383 raise _exceptions.UnrecognizedFlagError(name, value)
400 except _exceptions.DuplicateFlagError:
401 raise _exceptions.DuplicateFlagError.from_flag(
418 raise _exceptions.IllegalFlagValueError(flag)
551 except _exceptions.ValidationError as e:
654 raise _exceptions.UnrecognizedFlagError(
1084 raise _exceptions.CantOpenFlagFileError(
1161 raise _exceptions.IllegalFlagValueError(
[all …]
/dports/devel/py-absl-py/absl-py-0.15.0/absl/flags/
H A D__init__.py41 from absl.flags import _exceptions
94 Error = _exceptions.Error
95 CantOpenFlagFileError = _exceptions.CantOpenFlagFileError
96 DuplicateFlagError = _exceptions.DuplicateFlagError
97 IllegalFlagValueError = _exceptions.IllegalFlagValueError
98 UnrecognizedFlagError = _exceptions.UnrecognizedFlagError
99 UnparsedFlagAccessError = _exceptions.UnparsedFlagAccessError
100 ValidationError = _exceptions.ValidationError
101 FlagNameConflictsWithMethodError = _exceptions.FlagNameConflictsWithMethodError
H A D_flagvalues.py31 from absl.flags import _exceptions
380 raise _exceptions.IllegalFlagValueError(
384 raise _exceptions.UnrecognizedFlagError(name, value)
401 except _exceptions.DuplicateFlagError:
402 raise _exceptions.DuplicateFlagError.from_flag(
419 raise _exceptions.IllegalFlagValueError(flag)
560 except _exceptions.ValidationError as e:
669 raise _exceptions.UnrecognizedFlagError(
1099 raise _exceptions.CantOpenFlagFileError(
1176 raise _exceptions.IllegalFlagValueError(
[all …]
/dports/devel/py-absl/absl-py-0.7.1/absl/flags/
H A D__init__.py42 from absl.flags import _exceptions
98 Error = _exceptions.Error
99 CantOpenFlagFileError = _exceptions.CantOpenFlagFileError
100 DuplicateFlagError = _exceptions.DuplicateFlagError
101 IllegalFlagValueError = _exceptions.IllegalFlagValueError
102 UnrecognizedFlagError = _exceptions.UnrecognizedFlagError
103 UnparsedFlagAccessError = _exceptions.UnparsedFlagAccessError
104 ValidationError = _exceptions.ValidationError
105 FlagNameConflictsWithMethodError = _exceptions.FlagNameConflictsWithMethodError
H A D_flagvalues.py32 from absl.flags import _exceptions
371 raise _exceptions.IllegalFlagValueError(
375 raise _exceptions.UnrecognizedFlagError(name, value)
392 except _exceptions.DuplicateFlagError:
393 raise _exceptions.DuplicateFlagError.from_flag(
410 raise _exceptions.IllegalFlagValueError(flag)
529 except _exceptions.ValidationError as e:
632 raise _exceptions.UnrecognizedFlagError(
1018 raise _exceptions.Error(
1059 raise _exceptions.CantOpenFlagFileError(
[all …]
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stubs/mysqlclient/MySQLdb/
H A D_mysql.pyi4 import MySQLdb._exceptions
8 class DataError(MySQLdb._exceptions.DatabaseError): ...
9 class DatabaseError(MySQLdb._exceptions.Error): ...
10 class Error(MySQLdb._exceptions.MySQLError): ...
11 class IntegrityError(MySQLdb._exceptions.DatabaseError): ...
12 class InterfaceError(MySQLdb._exceptions.Error): ...
13 class InternalError(MySQLdb._exceptions.DatabaseError): ...
15 class NotSupportedError(MySQLdb._exceptions.DatabaseError): ...
16 class OperationalError(MySQLdb._exceptions.DatabaseError): ...
17 class ProgrammingError(MySQLdb._exceptions.DatabaseError): ...
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/reflection/
H A Dreflectiontypeloadexception.cs30 private Exception[] _exceptions; field in System.Reflection.ReflectionTypeLoadException
46 _exceptions = exceptions; in ReflectionTypeLoadException()
53 _exceptions = exceptions; in ReflectionTypeLoadException()
59 _exceptions = (Exception[])(info.GetValue("Exceptions", typeof(Exception[]))); in ReflectionTypeLoadException()
67 get {return _exceptions;}
78 info.AddValue("Exceptions", _exceptions, typeof(Exception[])); in GetObjectData()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Threading.Tasks.Dataflow/src/Internal/
H A DSpscTargetCore.cs57 private volatile List<Exception> _exceptions; field in System.Threading.Tasks.Dataflow.Internal.SpscTargetCore
216 _exceptions == null && in ProcessMessagesLoopCore()
239 … if (!_messages.IsEmpty && _exceptions == null && (messagesProcessed < maxMessagesToProcess)) in ProcessMessagesLoopCore()
248 if ((wasDecliningPermanently && _messages.IsEmpty) || _exceptions != null) in ProcessMessagesLoopCore()
272 _exceptions != null) // exceptions/completion to be processed in ProcessMessagesLoopCore()
316 lock (LazyInitializer.EnsureInitialized(ref _exceptions, () => new List<Exception>())) in StoreException()
318 _exceptions.Add(exception); in StoreException()
335 if (_exceptions != null) in CompleteBlockOncePossible()
338 lock (_exceptions) exceptions = _exceptions.ToArray(); in CompleteBlockOncePossible()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Threading.Tasks.Dataflow/CoreFxSources/Internal/
H A DSpscTargetCore.cs57 private volatile List<Exception> _exceptions; field in System.Threading.Tasks.Dataflow.Internal.SpscTargetCore
216 _exceptions == null && in ProcessMessagesLoopCore()
239 … if (!_messages.IsEmpty && _exceptions == null && (messagesProcessed < maxMessagesToProcess)) in ProcessMessagesLoopCore()
248 if ((wasDecliningPermanently && _messages.IsEmpty) || _exceptions != null) in ProcessMessagesLoopCore()
272 _exceptions != null) // exceptions/completion to be processed in ProcessMessagesLoopCore()
316 lock (LazyInitializer.EnsureInitialized(ref _exceptions, () => new List<Exception>())) in StoreException()
318 _exceptions.Add(exception); in StoreException()
335 if (_exceptions != null) in CompleteBlockOncePossible()
338 lock (_exceptions) exceptions = _exceptions.ToArray(); in CompleteBlockOncePossible()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.SqlClient/tests/StressTests/System.Data.StressRunner/
H A DRecordedExceptions.cs21 …urrentDictionary<string, ConcurrentDictionary<string, ExceptionCount>> _exceptions = new Concurren… field in DPStressHarness.RecordedExceptions
33 …ConcurrentDictionary<string, ExceptionCount> exceptionsForTest = _exceptions.GetOrAdd(testName, _ … in Record()
68 foreach (string testName in _exceptions.Keys) in TraceAllExceptions()
70 … ConcurrentDictionary<string, ExceptionCount> exceptionsForTest = _exceptions[testName]; in TraceAllExceptions()
94 foreach (string testName in _exceptions.Keys) in GetExceptionsCount()
96 … ConcurrentDictionary<string, ExceptionCount> exceptionsForTest = _exceptions[testName]; in GetExceptionsCount()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DMethodEntry.java60 _exceptions = (Vector)that._exceptions.clone (); in MethodEntry()
109 _exceptions.addElement (exception); in addException()
115 return _exceptions; in exceptions()
190 private Vector _exceptions = new Vector (); field in MethodEntry
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DMethodEntry.java60 _exceptions = (Vector)that._exceptions.clone (); in MethodEntry()
109 _exceptions.addElement (exception); in addException()
115 return _exceptions; in exceptions()
190 private Vector _exceptions = new Vector (); field in MethodEntry
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/vendor/Zend/Controller/Response/
H A DAbstract.php44 protected $_exceptions = array(); variable in Zend_Controller_Response_Abstract
593 $this->_exceptions[] = $e;
604 return $this->_exceptions;
614 return !empty($this->_exceptions);
625 foreach ($this->_exceptions as $e) {
642 foreach ($this->_exceptions as $e) {
660 foreach ($this->_exceptions as $e) {
678 foreach ($this->_exceptions as $e) {
700 foreach ($this->_exceptions as $e) {
723 foreach ($this->_exceptions as $e) {
/dports/devel/p5-Module-Pluggable/Module-Pluggable-5.2/lib/Module/Pluggable/
H A DObject.pm143 $self->{_exceptions}->{only_hash} = \%only;
144 $self->{_exceptions}->{only} = $only;
145 $self->{_exceptions}->{except_hash} = \%except;
146 $self->{_exceptions}->{except} = $except;
153 my %only = %{$self->{_exceptions}->{only_hash}||{}};
154 my %except = %{$self->{_exceptions}->{except_hash}||{}};
155 my $only = $self->{_exceptions}->{only};
156 my $except = $self->{_exceptions}->{except};
/dports/devel/p5-CPANPLUS/CPANPLUS-0.9912/inc/bundle/Module/Pluggable/
H A DObject.pm143 $self->{_exceptions}->{only_hash} = \%only;
144 $self->{_exceptions}->{only} = $only;
145 $self->{_exceptions}->{except_hash} = \%except;
146 $self->{_exceptions}->{except} = $except;
153 my %only = %{$self->{_exceptions}->{only_hash}||{}};
154 my %except = %{$self->{_exceptions}->{except_hash}||{}};
155 my $only = $self->{_exceptions}->{only};
156 my $except = $self->{_exceptions}->{except};
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/vendor/Zend/TimeSync/
H A DException.php41 protected $_exceptions; variable in Zend_TimeSync_Exception
51 $this->_exceptions[] = $exception;
61 return $this->_exceptions;
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/websocket/tests/
H A Dtest_abnf.py48 …self.assertRaises(ws._exceptions.WebSocketProtocolException, a_invalid_ping.validate, skip_utf8_va…
50 …self.assertRaises(ws._exceptions.WebSocketProtocolException, a_bad_rsv_value.validate, skip_utf8_v…
52 …self.assertRaises(ws._exceptions.WebSocketProtocolException, a_bad_opcode.validate, skip_utf8_vali…
54 …self.assertRaises(ws._exceptions.WebSocketProtocolException, a_bad_close_frame.validate, skip_utf8…
56 …self.assertRaises(ws._exceptions.WebSocketProtocolException, a_bad_close_frame_2.validate, skip_ut…
58 …self.assertRaises(ws._exceptions.WebSocketProtocolException, a_bad_close_frame_3.validate, skip_ut…
/dports/multimedia/tautulli/Tautulli-2.8.0/lib/websocket/tests/
H A Dtest_abnf.py46 …self.assertRaises(ws._exceptions.WebSocketProtocolException, a_invalid_ping.validate, skip_utf8_va…
48 …self.assertRaises(ws._exceptions.WebSocketProtocolException, a_bad_rsv_value.validate, skip_utf8_v…
50 …self.assertRaises(ws._exceptions.WebSocketProtocolException, a_bad_opcode.validate, skip_utf8_vali…
52 …self.assertRaises(ws._exceptions.WebSocketProtocolException, a_bad_close_frame.validate, skip_utf8…
54 …self.assertRaises(ws._exceptions.WebSocketProtocolException, a_bad_close_frame_2.validate, skip_ut…
56 …self.assertRaises(ws._exceptions.WebSocketProtocolException, a_bad_close_frame_3.validate, skip_ut…
/dports/databases/pgfouine/pgfouine-1.2/tests/simpletest/
H A Dscorer.php20 var $_exceptions; variable in SimpleScorer
30 $this->_exceptions = 0;
61 if ($this->_exceptions + $this->_fails > 0) {
151 $this->_exceptions++;
179 return $this->_exceptions;
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/storage/innobase/xtrabackup/test/python/testtools/
H A Druntest.py60 self._exceptions = []
99 self._exceptions = []
101 if self._exceptions:
104 e = self._exceptions.pop()
198 self._exceptions.append(e)
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/storage/innobase/xtrabackup/test/python/testtools/
H A Druntest.py60 self._exceptions = []
99 self._exceptions = []
101 if self._exceptions:
104 e = self._exceptions.pop()
198 self._exceptions.append(e)

12345678910>>...27