Home
last modified time | relevance | path

Searched refs:BadData (Results 1 – 25 of 95) sorted by relevance

1234

/dports/net-p2p/bazarr/bazarr-1.0.2/libs/itsdangerous/
H A Dexc.py5 class BadData(Exception): class
15 super(BadData, self).__init__(self, message)
28 class BadSignature(BadData):
32 BadData.__init__(self, message)
84 class BadPayload(BadData):
94 BadData.__init__(self, message)
H A Dencoding.py6 from .exc import BadData
33 raise BadData("Invalid base64-encoded data")
H A D__init__.py5 from .exc import BadData
H A Djws.py11 from .exc import BadData
83 except BadData as e:
/dports/graphics/vulkan-loader/Vulkan-Loader-1.2.203/tests/
H A Dloader_handle_validation_tests.cpp50 struct BadData { in TEST_F() struct
67 struct BadData { in TEST_F() struct
83 struct BadData { in TEST_F() struct
103 struct BadData { in TEST_F() struct
124 struct BadData { in TEST_F() struct
149 struct BadData { in TEST_F() struct
176 struct BadData { in TEST_F() struct
203 struct BadData { in TEST_F() struct
230 struct BadData { in TEST_F() struct
258 struct BadData { in TEST_F() struct
[all …]
/dports/www/py-falcon/falcon-2.0.0/tests/
H A Dtest_validators.py56 class BadData(object): class
69 Resource().request_validated(BadData(), None)
83 Resource().response_validated(GoodData(), BadData())
107 Resource().both_validated(GoodData(), BadData())
112 Resource().both_validated(BadData(), GoodData())
118 result = client.simulate_put('/test', json=BadData.media)
/dports/security/py-itsdangerous/itsdangerous-2.0.1/src/itsdangerous/
H A Dexc.py8 class BadData(Exception): class
23 class BadSignature(BadData):
93 class BadPayload(BadData):
H A D__init__.py5 from .exc import BadData as BadData unknown
H A Dencoding.py6 from .exc import BadData
38 raise BadData("Invalid base64-encoded data")
H A Djws.py13 from .exc import BadData
102 except BadData as e:
/dports/security/sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/cargo-crates/win-crypto-ng-0.2.0/src/
H A Dlib.rs37 BadData, enumerator
66 Err(Error::BadData) in check()
85 Error::BadData => ntstatus::STATUS_DATA_ERROR, in into()
/dports/security/py-sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/sop/src/
H A Derrors.rs39 BadData,
85 BadData => 41, in perform()
/dports/security/sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/sop/src/
H A Derrors.rs39 BadData, enumerator
85 BadData => 41, in from()
/dports/security/py-itsdangerous/itsdangerous-2.0.1/tests/test_itsdangerous/
H A Dtest_encoding.py8 from itsdangerous.exc import BadData
26 with pytest.raises(BadData):
H A Dtest_jws.py5 from itsdangerous.exc import BadData
57 ("ew.ab", BadData, "malformed"),
/dports/dns/dns-ui/dns-ui-0.2.7/model/
H A Dzone.php669 …if(!isset($update->actions) && !is_array($update->actions)) throw new BadData('No actions provided…
679 throw new BadData(implode(' ', $errors));
727 if(!is_object($update)) throw new BadData('Malformed update.');
728 if(!(isset($update->name) && isset($update->type))) throw new BadData('Malformed action.');
746 … if(!isset($update->records) || !is_array($update->records)) throw new BadData('Malformed action');
748 …throw new BadData('Tried to add a resource recordset that already exists: '.$update->name.' '.$upd…
753 if(!isset($update->ttl)) throw new BadData('Malformed recordset.');
757 … if(!(isset($record->content) && isset($record->enabled))) throw new BadData('Malformed record.');
779 …if(!isset($update->records) || !is_array($update->records)) throw new BadData('Malformed action.');
781 …throw new BadData('Tried to update a non-existent resource recordset: '.$update->oldname.' '.$upda…
[all …]
/dports/devel/simgear/simgear-2020.3.11/simgear/scene/util/
H A DSGProgram.cxx63 … simgear::reportFailure(simgear::LoadFailure::BadData, simgear::ErrorCode::LoadEffectsShaders, in apply()
76 … simgear::reportFailure(simgear::LoadFailure::BadData, simgear::ErrorCode::LoadEffectsShaders, in apply()
/dports/x11/squeekboard/squeekboard-d49ce45de0956432cef9b957f806d9377fee4bc0/src/data/
H A Dmod.rs49 BadData(Error), enumerator
59 BadData(e) => write!(f, "Bad data: {}", e), in fmt()
/dports/games/flightgear/flightgear-2020.3.11/src/Sound/
H A Dfg_fx.cxx139 simgear::reportFailure(simgear::LoadFailure::BadData, simgear::ErrorCode::AudioFX, in init()
158 simgear::reportFailure(simgear::LoadFailure::BadData, simgear::ErrorCode::AudioFX, in init()
/dports/games/flightgear/flightgear-2020.3.11/src/Input/
H A DFGDeviceConfigurationMap.cxx103 simgear::reportFailure(simgear::LoadFailure::BadData, simgear::ErrorCode::InputDeviceConfig, in configurationForDeviceName()
172 simgear::reportFailure(simgear::LoadFailure::BadData, simgear::ErrorCode::InputDeviceConfig, in refreshCacheForFile()
/dports/security/py-itsdangerous/itsdangerous-2.0.1/docs/
H A Dexceptions.rst6 .. autoexception:: BadData
H A Dserializer.rst47 from itsdangerous.exc import BadSignature, BadData
59 except BadData:
/dports/net-p2p/qbittorrent/qbittorrent-4.3.9/src/webui/api/
H A Dapierror.h36 BadData, enumerator
/dports/devel/simgear/simgear-2020.3.11/simgear/scene/tgdb/
H A DSGReaderWriterBTG.cxx72 simgear::reportFailure(simgear::LoadFailure::BadData, simgear::ErrorCode::BTGLoad, in readNode()
/dports/www/py-flask-wtf/Flask-WTF-0.15.1/flask_wtf/
H A Dcsrf.py10 from itsdangerous import BadData, SignatureExpired, URLSafeTimedSerializer
103 except BadData:

1234