Home
last modified time | relevance | path

Searched refs:ConfigError (Results 1 – 25 of 581) sorted by relevance

12345678910>>...24

/dports/net-mgmt/py-arouteserver/arouteserver-1.12.0/pierky/arouteserver/config/
H A Dvalidators.py18 from ..errors import ConfigError
55 except ConfigError:
73 raise ConfigError()
95 except ConfigError as e:
140 raise ConfigError()
152 except ConfigError:
165 raise ConfigError(
376 raise ConfigError(
393 raise ConfigError(
427 raise ConfigError(
[all …]
H A Dclients.py161 raise ConfigError()
242 raise ConfigError()
249 raise ConfigError(
257 raise ConfigError(
263 raise ConfigError(
271 raise ConfigError(
276 raise ConfigError(
298 raise ConfigError(
320 except ConfigError as e:
321 raise ConfigError(
[all …]
/dports/devel/py-flit/flit-3.5.1/flit_core/flit_core/
H A Dconfig.py16 class ConfigError(ValueError): class
88 raise ConfigError(
92 raise ConfigError(
105 raise ConfigError(
118 raise ConfigError(
134 raise ConfigError(
194 raise ConfigError(
388 raise ConfigError(
396 raise ConfigError(
595 raise ConfigError(
[all …]
/dports/devel/py-flit-core/flit_core-3.5.1/flit_core/
H A Dconfig.py16 class ConfigError(ValueError): class
88 raise ConfigError(
92 raise ConfigError(
105 raise ConfigError(
118 raise ConfigError(
134 raise ConfigError(
194 raise ConfigError(
388 raise ConfigError(
396 raise ConfigError(
595 raise ConfigError(
[all …]
/dports/security/arti/arti-9d0ede26801cdb182daa85c3eb5f0058dc178eb6/cargo-crates/config-0.11.0/src/
H A Derror.rs36 pub enum ConfigError { enum
82 impl ConfigError { implementation
90 ConfigError::Type { in invalid_type()
102 ConfigError::Type { in extend_with_key()
129 ConfigError::Type { in prepend()
140 ConfigError::NotFound(key) => ConfigError::NotFound(concat(Some(key))), in prepend()
158 impl fmt::Debug for ConfigError { implementation
179 ConfigError::Type { in fmt()
211 impl Error for ConfigError {} implementation
213 impl de::Error for ConfigError { implementation
[all …]
H A Dvalue.rs172 s => Err(ConfigError::invalid_type( in into_bool()
181 ValueKind::Nil => Err(ConfigError::invalid_type( in into_bool()
186 ValueKind::Table(_) => Err(ConfigError::invalid_type( in into_bool()
191 ValueKind::Array(_) => Err(ConfigError::invalid_type( in into_bool()
212 ConfigError::invalid_type( in into_int()
226 ValueKind::Nil => Err(ConfigError::invalid_type( in into_int()
257 ConfigError::invalid_type( in into_float()
271 ValueKind::Nil => Err(ConfigError::invalid_type( in into_float()
300 ValueKind::Nil => Err(ConfigError::invalid_type( in into_str()
345 ValueKind::Nil => Err(ConfigError::invalid_type( in into_array()
[all …]
H A Dser.rs85 type Error = ConfigError;
263 type Error = ConfigError;
281 type Error = ConfigError;
299 type Error = ConfigError;
317 type Error = ConfigError;
336 type Error = ConfigError;
364 type Error = ConfigError;
383 type Error = ConfigError;
405 type Error = ConfigError;
579 type Error = ConfigError;
[all …]
/dports/sysutils/py-tarsnapper/tarsnapper-0.4/tests/
H A Dtest_config.py1 from tarsnapper.config import load_config, ConfigError
6 assert_raises(ConfigError, load_config, """
10 assert_raises(ConfigError, load_config, """
60 assert_raises(ConfigError, load_config, """
108 assert_raises(ConfigError, load_config, """
127 assert_raises(ConfigError, load_config, """
134 assert_raises(ConfigError, load_config, """
160 assert_raises(ConfigError, load_config, """
182 assert_raises(ConfigError, load_config, """
195 assert_raises(ConfigError, load_config, """
[all …]
/dports/finance/quickfix/quickfix-1.15.1/src/C++/
H A DDataDictionary.cpp47 throw( ConfigError ) in DataDictionary()
55 throw( ConfigError ) in DataDictionary()
206 throw( ConfigError ) in readFromURL()
217 catch( ConfigError& e ) in readFromURL()
219 throw ConfigError( url + ": " + e.what() ); in readFromURL()
224 throw( ConfigError ) in readFromStream()
235 throw( ConfigError ) in readFromDocument()
512 throw ConfigError("No name given to field"); in lookupXMLFieldNumber()
535 throw ConfigError("No name given to component"); in addXMLComponentFields()
551 throw ConfigError("No name given to field"); in addXMLComponentFields()
[all …]
H A DSessionFactory.cpp46 throw ConfigError( "Invalid ConnectionType" ); in create()
60 throw ConfigError("ApplVerID is required for FIXT transport"); in create()
89 catch( ConfigError & ) {} in create()
90 catch( FieldConvertError & e ) { throw ConfigError( e.what() ); } in create()
101 catch ( FieldConvertError & e ) { throw ConfigError( e.what() ); } in create()
112 throw ConfigError( "StartDay used without EndDay" ); in create()
114 throw ConfigError( "EndDay used without StartDay" ); in create()
137 catch( ConfigError & ) {} in create()
138 catch( FieldConvertError & e ) { throw ConfigError( e.what() ); } in create()
147 catch( ConfigError & ) {} in create()
[all …]
H A DDictionary.cpp33 throw( ConfigError, FieldConvertError ) in getString()
36 if ( i == m_data.end() ) throw ConfigError( key + " not defined" ); in getString()
46 throw( ConfigError, FieldConvertError ) in getInt()
54 throw ConfigError( "Illegal value " + getString(key) + " for " + key ); in getInt()
59 throw( ConfigError, FieldConvertError ) in getDouble()
67 throw ConfigError( "Illegal value " + getString(key) + " for " + key ); in getDouble()
72 throw( ConfigError, FieldConvertError ) in getBool()
80 throw ConfigError( "Illegal value " + getString(key) + " for " + key ); in getBool()
85 throw( ConfigError, FieldConvertError ) in getDay()
103 throw ConfigError( "Illegal value " + getString(key) + " for " + key ); in getDay()
H A DSessionSettings.cpp34 throw( ConfigError ) in SessionSettings()
41 throw( ConfigError ) in SessionSettings()
46 throw ConfigError( ( "File " + file + " not found" ).c_str() ); in SessionSettings()
51 throw( ConfigError ) in operator >>()
128 throw( ConfigError ) in get()
132 if ( i == m_settings.end() ) throw ConfigError( "Session not found" ); in get()
138 throw( ConfigError ) in set()
141 throw ConfigError( "Duplicate Session " + sessionID.toString() ); in set()
152 void SessionSettings::set( const Dictionary& defaults ) throw( ConfigError ) in set()
170 throw( ConfigError ) in validate()
[all …]
H A DAcceptor.h53 const SessionSettings& ) throw( ConfigError );
55 const SessionSettings&, LogFactory& ) throw( ConfigError );
66 void start() throw ( ConfigError, RuntimeError );
68 void block() throw ( ConfigError, RuntimeError );
70 bool poll( double timeout = 0.0 ) throw ( ConfigError, RuntimeError );
94 void initialize() throw ( ConfigError );
97 virtual void onConfigure( const SessionSettings& ) throw ( ConfigError ) {}; in onConfigure()
H A DSessionSettings.h224 SessionSettings( std::istream& stream, bool resolveEnvVars = false ) throw( ConfigError );
225 SessionSettings( const std::string& file, bool resolveEnvVars = false ) throw( ConfigError );
231 const Dictionary& get( const SessionID& ) const throw( ConfigError );
233 void set( const SessionID&, Dictionary ) throw( ConfigError );
238 void set( const Dictionary& defaults ) throw( ConfigError );
247 void validate( const Dictionary& ) const throw( ConfigError );
253 friend std::istream& operator>>( std::istream&, SessionSettings& ) throw( ConfigError );
259 throw( ConfigError );
/dports/sysutils/py-tarsnapper/tarsnapper-0.4/tarsnapper/
H A Dconfig.py50 class ConfigError(Exception): class
80 raise ConfigError(('%s must make use of the following '
112 raise ConfigError('Not a valid delta: %s' % e)
115 raise ConfigError('At least two deltas are required')
123 raise ConfigError(('%s: No deltas specified') % name)
158 raise ConfigError(('%s: Use either the "alias" or "aliases" '+
174 raise ConfigError(('%s: Use either the "deltas" or "delta" '+
179 raise ConfigError(('%s: Named delta "%s" not defined')
197 raise ConfigError('%s does not have a target name' % job_name)
209 raise ConfigError('%s: duplicated job name' % job_name)
[all …]
/dports/biology/py-ete3/ete3-3.1.2/ete3/tools/ete_build_lib/
H A Dconfigcheck.py45 from .errors import ConfigError
56 raise ConfigError("Invalid supermatrix workflow: %s" %wname)
73 raise ConfigError("Invalid genetree workflow: %s" %wname)
245 raise ConfigError("Not valid file")
251 raise ConfigError("Not valid file")
263 raise ConfigError("[%s] not in the range (%s,%s)" %
305 raise ConfigError("[%s] is not a list" %value)
329 raise ConfigError('[%s] is not a boolean value' %(value))
356 except ConfigError:
363 except ConfigError:
[all …]
/dports/net/krill/krill-0.9.4/src/daemon/
H A Dconfig.rs791 return Err(ConfigError::other( in verify()
798 return Err(ConfigError::other( in verify()
991 pub enum ConfigError { enum
998 impl fmt::Display for ConfigError { implementation
1009 impl ConfigError { implementation
1011 ConfigError::Other(s.to_string()) in other()
1015 impl From<KrillIoError> for ConfigError { implementation
1017 ConfigError::IoError(e) in from()
1023 ConfigError::TomlError(e) in from()
1027 impl From<uri::Error> for ConfigError { implementation
[all …]
/dports/net/kea/kea-2.0.1/src/hooks/dhcp/high_availability/
H A Dha_config_parser.cc72 } catch (const ConfigError& ex) { in parse()
76 isc_throw(ConfigError, ex.what()); in parse()
85 isc_throw(ConfigError, "HA configuration must not be null"); in parseInternal()
91 isc_throw(ConfigError, "HA configuration must be a list"); in parseInternal()
127 isc_throw(ConfigError, "'peers' parameter must be a list"); in parseInternal()
135 isc_throw(ConfigError, "'state-machine' parameter must be a map"); in parseInternal()
140 isc_throw(ConfigError, "'states' parameter must be a list"); in parseInternal()
193 isc_throw(ConfigError, "multi-threading configuration must be a map"); in parseInternal()
239 isc_throw(ConfigError, "peer configuration must be a map"); in parseInternal()
304 isc_throw(ConfigError, "state configuration must be a map"); in parseInternal()
[all …]
/dports/net-im/py-matrix-synapse/synapse-1.50.2/synapse/logging/
H A D_structured.py19 from synapse.config._base import ConfigError
52 raise ConfigError("Logging drains require a 'type' key.")
57 raise ConfigError(
83 raise ConfigError(
99 raise ConfigError(
105 raise ConfigError(
130 raise ConfigError(
144 raise ConfigError("The logging configuration requires a list of drains.")
/dports/www/py-weboob/weboob-2.0/weboob/tools/config/
H A Ddbmconfig.py23 from .iconfig import ConfigError, IConfig
60 raise ConfigError()
62 raise ConfigError()
71 raise ConfigError()
73 raise ConfigError()
80 raise ConfigError()
82 raise ConfigError()
/dports/net-im/py-matrix-synapse/synapse-1.50.2/synapse/config/
H A Dtls.py24 from synapse.config._base import Config, ConfigError
39 raise ConfigError(
44 raise ConfigError(
60 raise ConfigError(
68 raise ConfigError(
86 raise ConfigError(
104 raise ConfigError(
119 raise ConfigError(
158 raise ConfigError(
H A Dworkers.py23 ConfigError,
190 raise ConfigError(
224 raise ConfigError(
230 raise ConfigError(
235 raise ConfigError(
240 raise ConfigError(
245 raise ConfigError(
250 raise ConfigError("Must specify at least one instance to handle `events`.")
253 raise ConfigError(
279 raise ConfigError(_PUSHER_WITH_START_PUSHERS_ENABLED_ERROR)
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/installer/mac/signing/
H A Dconfig.py10 class ConfigError(Exception): class
77 raise ConfigError('is_chrome_branded')
117 raise ConfigError('app_product')
128 raise ConfigError('product')
133 raise ConfigError('version')
140 raise ConfigError('base_bundle_id')
163 raise ConfigError('provisioning_profile_basename')
/dports/security/vault/vault-1.8.2/internalshared/configutil/
H A Dlint.go12 type ConfigError struct { struct
17 func (c *ConfigError) String() string { argument
22 Validate() []ConfigError
26 func ValidateUnusedFields(unusedKeyPositions UnusedKeyMap, sourceFilePath string) []ConfigError {
30 var errors []ConfigError
37 errors = append(errors, ConfigError{
/dports/comms/libsdr/libsdr-0.1.0/src/
H A Dexception.hh24 class ConfigError : public SDRError { class
27 ConfigError(): SDRError() {} in ConfigError() function in sdr::ConfigError
29 ConfigError(const ConfigError &other): SDRError(other) {} in ConfigError() function in sdr::ConfigError
31 virtual ~ConfigError() throw() { } in ~ConfigError()

12345678910>>...24