Home
last modified time | relevance | path

Searched refs:RemoteError (Results 1 – 25 of 298) sorted by relevance

12345678910>>...12

/dports/editors/xi-core/xi-editor-0.3.0/rust/rpc/src/
H A Derror.rs28 RemoteError(RemoteError), enumerator
104 pub enum RemoteError { enum
119 impl RemoteError { implementation
166 impl From<JsonError> for RemoteError { implementation
167 fn from(err: JsonError) -> RemoteError { in from() argument
172 impl From<RemoteError> for Error {
173 fn from(err: RemoteError) -> Error { in from()
174 Error::RemoteError(err) in from()
186 impl<'de> Deserialize<'de> for RemoteError { implementation
204 impl Serialize for RemoteError { implementation
[all …]
H A Dparse.rs23 use crate::error::{ReadError, RemoteError};
29 pub type Response = Result<Value, RemoteError>;
54 InvalidRequest(RequestId, RemoteError),
134 match serde_json::from_value::<RemoteError>(error) { in into_response()
241 assert_eq!(resp, Err(RemoteError::custom(420, "chill out", None))); in test_resp_err()
256 let e = serde_json::from_str::<RemoteError>(json).unwrap(); in test_err()
257 assert_eq!(e, RemoteError::InvalidRequest(None)); in test_err()
/dports/net/py-python-designateclient/python-designateclient-4.4.0/designateclient/
H A Dexceptions.py37 class RemoteError(Base): class
47 super(RemoteError, self).__init__(err_message)
63 class Unknown(RemoteError):
67 class BadRequest(RemoteError):
71 class Forbidden(RemoteError):
75 class Conflict(RemoteError):
79 class NotFound(RemoteError):
83 class OverQuota(RemoteError):
/dports/databases/timescaledb-backup/timescaledb-backup-0.1.1/vendor/github.com/docker/distribution/vendor/github.com/xenolf/lego/acme/
H A Derror.go16 type RemoteError struct { struct
22 func (e RemoteError) Error() string { argument
30 RemoteError anonMember
39 RemoteError anonMember
51 return fmt.Sprintf("%s\nError Detail:\n%s", c.RemoteError.Error(), errStr)
55 var errorDetail RemoteError
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/docker/distribution/vendor/github.com/xenolf/lego/acme/
H A Derror.go16 type RemoteError struct { struct
22 func (e RemoteError) Error() string { argument
30 RemoteError anonMember
39 RemoteError anonMember
51 return fmt.Sprintf("%s\nError Detail:\n%s", c.RemoteError.Error(), errStr)
55 var errorDetail RemoteError
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/distribution/distribution-2.7.0/vendor/github.com/xenolf/lego/acme/
H A Derror.go16 type RemoteError struct { struct
22 func (e RemoteError) Error() string { argument
30 RemoteError anonMember
39 RemoteError anonMember
51 return fmt.Sprintf("%s\nError Detail:\n%s", c.RemoteError.Error(), errStr)
55 var errorDetail RemoteError
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/docker/distribution/vendor/github.com/xenolf/lego/acme/
H A Derror.go16 type RemoteError struct { struct
22 func (e RemoteError) Error() string { argument
30 RemoteError anonMember
39 RemoteError anonMember
51 return fmt.Sprintf("%s\nError Detail:\n%s", c.RemoteError.Error(), errStr)
55 var errorDetail RemoteError
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/docker/distribution/vendor/github.com/xenolf/lego/acme/
H A Derror.go16 type RemoteError struct { struct
22 func (e RemoteError) Error() string { argument
30 RemoteError anonMember
39 RemoteError anonMember
51 return fmt.Sprintf("%s\nError Detail:\n%s", c.RemoteError.Error(), errStr)
55 var errorDetail RemoteError
/dports/security/vault/vault-1.8.2/vendor/github.com/docker/distribution/vendor/github.com/xenolf/lego/acme/
H A Derror.go16 type RemoteError struct { struct
22 func (e RemoteError) Error() string { argument
30 RemoteError anonMember
39 RemoteError anonMember
51 return fmt.Sprintf("%s\nError Detail:\n%s", c.RemoteError.Error(), errStr)
55 var errorDetail RemoteError
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/docker/distribution/vendor/github.com/xenolf/lego/acme/
H A Derror.go16 type RemoteError struct { struct
22 func (e RemoteError) Error() string { argument
30 RemoteError anonMember
39 RemoteError anonMember
51 return fmt.Sprintf("%s\nError Detail:\n%s", c.RemoteError.Error(), errStr)
55 var errorDetail RemoteError
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/docker/distribution/vendor/github.com/xenolf/lego/acme/
H A Derror.go16 type RemoteError struct { struct
22 func (e RemoteError) Error() string { argument
30 RemoteError anonMember
39 RemoteError anonMember
51 return fmt.Sprintf("%s\nError Detail:\n%s", c.RemoteError.Error(), errStr)
55 var errorDetail RemoteError
/dports/sysutils/docker-registry/distribution-2.7.1/vendor/github.com/xenolf/lego/acme/
H A Derror.go16 type RemoteError struct { struct
22 func (e RemoteError) Error() string { argument
30 RemoteError anonMember
39 RemoteError anonMember
51 return fmt.Sprintf("%s\nError Detail:\n%s", c.RemoteError.Error(), errStr)
55 var errorDetail RemoteError
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/docker/distribution/vendor/github.com/xenolf/lego/acme/
H A Derror.go16 type RemoteError struct { struct
22 func (e RemoteError) Error() string { argument
30 RemoteError anonMember
39 RemoteError anonMember
51 return fmt.Sprintf("%s\nError Detail:\n%s", c.RemoteError.Error(), errStr)
55 var errorDetail RemoteError
/dports/editors/xi-core/xi-editor-0.3.0/rust/lsp-lib/src/
H A Dtypes.rs24 use xi_rpc::RemoteError;
144 impl Into<RemoteError> for LanguageResponseError {
145 fn into(self) -> RemoteError { in into() argument
148 RemoteError::custom(0, "null response from server", None) in into()
151 RemoteError::custom(1, "fallback response from server", None) in into()
154 RemoteError::custom(2, "language server error occured", Some(Value::String(error))) in into()
156 LanguageResponseError::PluginLibError(error) => RemoteError::custom( in into()
/dports/net/py-python-designateclient/python-designateclient-4.4.0/designateclient/tests/
H A Dtest_exceptions.py33 remote_err = exceptions.RemoteError(**self.response_dict)
47 remote_err = exceptions.RemoteError(**self.response_dict)
55 remote_err = exceptions.RemoteError(**self.response_dict)
62 remote_err = exceptions.RemoteError(**self.response_dict)
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/fxa-client/src/
H A Dmigrator.rs109 ErrorKind::RemoteError { in try_migration()
112 | ErrorKind::RemoteError { code: 429, .. } in try_migration()
235 .returns_once(Err(ErrorKind::RemoteError { in test_migration_can_retry_after_network_errors()
248 assert_match!(err.kind(), ErrorKind::RemoteError { code: 500, .. }); in test_migration_can_retry_after_network_errors()
313 .returns_once(Err(ErrorKind::RemoteError { in test_migration_cannot_retry_after_other_errors()
326 assert_match!(err.kind(), ErrorKind::RemoteError { code: 400, .. }); in test_migration_cannot_retry_after_other_errors()
354 .returns_once(Err(ErrorKind::RemoteError { in test_migration_state_remembers_whether_to_copy_session_token()
367 assert_match!(err.kind(), ErrorKind::RemoteError { code: 500, .. }); in test_migration_state_remembers_whether_to_copy_session_token()
382 .returns_once(Err(ErrorKind::RemoteError { in test_migration_state_remembers_whether_to_copy_session_token()
393 assert_match!(err.kind(), ErrorKind::RemoteError { code: 500, .. }); in test_migration_state_remembers_whether_to_copy_session_token()
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/services/src/main/java/org/mozilla/gecko/fxa/login/
H A DBaseRequestDelegate.java12 import org.mozilla.gecko.fxa.login.FxAccountLoginTransition.RemoteError;
31 …delegate.handleTransition(new RemoteError(e), new Separated(state.email, state.uid, state.verified… in handleFailure()
35 …delegate.handleTransition(new RemoteError(e), new Separated(state.email, state.uid, state.verified… in handleFailure()
42 delegate.handleTransition(new RemoteError(e), state); in handleFailure()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/services/src/main/java/org/mozilla/gecko/fxa/login/
H A DBaseRequestDelegate.java12 import org.mozilla.gecko.fxa.login.FxAccountLoginTransition.RemoteError;
31 …delegate.handleTransition(new RemoteError(e), new Separated(state.email, state.uid, state.verified… in handleFailure()
35 …delegate.handleTransition(new RemoteError(e), new Separated(state.email, state.uid, state.verified… in handleFailure()
42 delegate.handleTransition(new RemoteError(e), state); in handleFailure()
/dports/multimedia/quodlibet/quodlibet-4.3.0/quodlibet/
H A Dremote.py20 class RemoteError(Exception): class
96 raise RemoteError(e)
102 raise RemoteError(e)
133 raise RemoteError(e)
139 raise RemoteError(e)
/dports/security/keybase/client-v5.7.1/go/chat/storage/
H A Derrors.go57 type RemoteError struct { struct
61 func (e RemoteError) Error() string { argument
65 func (e RemoteError) ShouldClear() bool { argument
69 func (e RemoteError) Message() string { argument
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/github.com/golang/gddo/gosrc/
H A Dclient.go31 …return &RemoteError{resp.Request.URL.Host, fmt.Errorf("%d: (%s)", resp.StatusCode, resp.Request.UR…
48 return nil, &RemoteError{req.URL.Host, err}
68 return nil, &RemoteError{req.URL.Host, err}
130 err = &RemoteError{resp.Request.URL.Host, fmt.Errorf("get %s -> %d", urls[i], resp.StatusCode)}
137 ch <- &RemoteError{resp.Request.URL.Host, err}
/dports/www/miniflux/v2-2.0.35/vendor/github.com/golang/gddo/gosrc/
H A Dclient.go31 …return &RemoteError{resp.Request.URL.Host, fmt.Errorf("%d: (%s)", resp.StatusCode, resp.Request.UR…
48 return nil, &RemoteError{req.URL.Host, err}
68 return nil, &RemoteError{req.URL.Host, err}
130 err = &RemoteError{resp.Request.URL.Host, fmt.Errorf("get %s -> %d", urls[i], resp.StatusCode)}
137 ch <- &RemoteError{resp.Request.URL.Host, err}
/dports/sysutils/jest/jest-f76bc46/vendor/github.com/golang/gddo/gosrc/
H A Dclient.go31 …return &RemoteError{resp.Request.URL.Host, fmt.Errorf("%d: (%s)", resp.StatusCode, resp.Request.UR…
48 return nil, &RemoteError{req.URL.Host, err}
68 return nil, &RemoteError{req.URL.Host, err}
130 err = &RemoteError{resp.Request.URL.Host, fmt.Errorf("get %s -> %d", urls[i], resp.StatusCode)}
137 ch <- &RemoteError{resp.Request.URL.Host, err}
/dports/sysutils/py-execnet/execnet-1.6.0/testing/
H A Dtest_channel.py17 excinfo = pytest.raises(ch.RemoteError, ch.receive)
22 pytest.raises(channel.RemoteError, channel.receive)
58 pytest.raises(channel.RemoteError, channel.receive)
68 channel.RemoteError("error"))
69 pytest.raises(channel.RemoteError, channel.waitclose, 0.01)
73 excinfo = pytest.raises(channel.RemoteError, channel.receive)
82 excinfo = pytest.raises(channel.RemoteError, channel.receive)
267 with pytest.raises(subchan.RemoteError) as excinfo:
304 pytest.raises(channel.RemoteError, channel.receive)
/dports/devel/py-ipyparallel/ipyparallel-6.3.0/ipyparallel/
H A Derror.py75 class RemoteError(KernelError): class
131 class CompositeError(RemoteError):
201 raise RemoteError(en, ev, etb, ei)
213 if isinstance(r, RemoteError):
248 err = RemoteError(content['ename'], content['evalue'],

12345678910>>...12