Home
last modified time | relevance | path

Searched refs:FetchError (Results 1 – 25 of 99) sorted by relevance

1234

/dports/editors/libreoffice/libreoffice-7.2.6.2/ucb/source/cacher/
H A Dcachedcontentresultsetstub.cxx197 aRet.FetchError = FetchError::SUCCESS; /*ENDOFDATA, EXCEPTION*/ in impl_fetchHelper()
204 aRet.FetchError = FetchError::EXCEPTION; in impl_fetchHelper()
208 aRet.FetchError = FetchError::EXCEPTION; in impl_fetchHelper()
219 aRet.FetchError = FetchError::EXCEPTION; in impl_fetchHelper()
240 aRet.FetchError = FetchError::EXCEPTION; in impl_fetchHelper()
246 aRet.FetchError = FetchError::EXCEPTION; in impl_fetchHelper()
269 aRet.FetchError = FetchError::ENDOFDATA; in impl_fetchHelper()
278 aRet.FetchError = FetchError::ENDOFDATA; in impl_fetchHelper()
288 aRet.FetchError = FetchError::EXCEPTION; in impl_fetchHelper()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/ucb/source/cacher/
H A Dcachedcontentresultsetstub.cxx197 aRet.FetchError = FetchError::SUCCESS; /*ENDOFDATA, EXCEPTION*/ in impl_fetchHelper()
204 aRet.FetchError = FetchError::EXCEPTION; in impl_fetchHelper()
208 aRet.FetchError = FetchError::EXCEPTION; in impl_fetchHelper()
219 aRet.FetchError = FetchError::EXCEPTION; in impl_fetchHelper()
240 aRet.FetchError = FetchError::EXCEPTION; in impl_fetchHelper()
246 aRet.FetchError = FetchError::EXCEPTION; in impl_fetchHelper()
269 aRet.FetchError = FetchError::ENDOFDATA; in impl_fetchHelper()
278 aRet.FetchError = FetchError::ENDOFDATA; in impl_fetchHelper()
288 aRet.FetchError = FetchError::EXCEPTION; in impl_fetchHelper()
/dports/lang/ruby26/ruby-2.6.9/lib/rubygems/
H A Dremote_fetcher.rb21 class FetchError < Gem::Exception class in RemoteFetcher
49 class UnknownHostError < FetchError
231 raise FetchError.new('too many redirects', uri) if depth > 10
234 raise FetchError.new("redirecting but no redirect location was given", uri)
239 raise FetchError.new("redirecting to non-https resource: #{location}", uri)
244 raise FetchError.new("bad response #{response.message} #{response.code}", uri)
268 raise FetchError.new("server did not return a valid file", uri.to_s)
273 rescue FetchError
282 raise FetchError.new("#{e.class}: #{e}", uri.to_s)
394 raise FetchError.new("no s3_source key exists in .gemrc", "s3://#{host}") unless s3_source
[all …]
/dports/net/concourse-fly/concourse-6.7.1/web/elm/src/Dashboard/
H A DModels.elm5 , FetchError(..)
38 , jobsError : Maybe FetchError
39 , teamsError : Maybe FetchError
40 , resourcesError : Maybe FetchError
41 , pipelinesError : Maybe FetchError
51 type FetchError type
/dports/misc/concourse/concourse-6.7.2/web/elm/src/Dashboard/
H A DModels.elm5 , FetchError(..)
38 , jobsError : Maybe FetchError
39 , teamsError : Maybe FetchError
40 , resourcesError : Maybe FetchError
41 , pipelinesError : Maybe FetchError
51 type FetchError type
/dports/www/grafana8/grafana-8.3.6/packages/grafana-runtime/src/utils/
H A DqueryResponse.test.ts2 import { FetchError, FetchResponse } from 'src/services';
339 …ult = toTestingStatus({ status: 500, data: { message: 'message', error: 'error' } } as FetchError);
356 } as FetchError);
364 toTestingStatus({ status: 503, data: 'Fatal Error' } as FetchError);
368 toTestingStatus({ status: 503, data: {} } as FetchError);
372 toTestingStatus({ status: 503 } as FetchError);
H A DqueryResponse.ts16 import { FetchError, FetchResponse } from '../services';
142 export function toTestingStatus(err: FetchError): any {
/dports/www/grafana8/grafana-8.3.6/public/app/core/services/
H A Dbackend_srv.ts15 import { BackendSrv as BackendService, BackendSrvRequest, FetchError, FetchResponse } from '@grafan…
44 …private inspectorStream: Subject<FetchResponse | FetchError> = new Subject<FetchResponse | FetchEr…
130 catchError((err: FetchError) => throwError(this.processRequestError(options, err))),
216 const fetchErrorResponse: FetchError = { status, statusText, data, config: options };
256 showApplicationErrorAlert(err: FetchError) {}
280 showErrorAlert<T>(config: BackendSrvRequest, err: FetchError) {
314 …processRequestError(options: BackendSrvRequest, err: FetchError): FetchError<{ message: string; er…
379 getInspectorStream(): Observable<FetchResponse<any> | FetchError> {
/dports/devel/coursier/coursier-1.1.0-M12/modules/coursier/jvm/src/main/scala/coursier/error/
H A DFetchError.scala6 sealed abstract class FetchError(message: String, cause: Throwable = null) extends CoursierError(me… class
8 object FetchError { object
10 final class DownloadingArtifacts(val errors: Seq[(Artifact, ArtifactError)]) extends FetchError(
/dports/www/larbin/larbin-2.6.3/src/interf/
H A Doutput.h14 void fetchFail (url *u, FetchError reason, bool interesting=false);
19 void endOfLoad (html *parser, FetchError err);
H A Doutput.cc24 void fetchFail (url *u, FetchError err, bool interesting=false) { in fetchFail()
38 void endOfLoad (html *parser, FetchError err) { in endOfLoad()
H A Duseroutput.h26 void failure (url *u, FetchError reason);
/dports/www/grafana8/grafana-8.3.6/public/app/plugins/datasource/cloudwatch/utils/
H A DlogsRetry.ts2 import { FetchError, toDataQueryResponse } from '@grafana/runtime';
60 error(error: FetchError<{ results?: Record<string, Result> }> | string) {
142 function splitErrorData(error: FetchError<{ results?: Record<string, Result> }>) {
/dports/devel/coursier/coursier-1.1.0-M12/modules/coursier/jvm/src/main/scala/coursier/
H A DArtifacts.scala8 import coursier.error.FetchError
90 …def either()(implicit ec: ExecutionContext = artifacts.params.cache.ec): Either[FetchError, Seq[(A…
95 .handle { case ex: FetchError => Left(ex) }
235 S.fromAttempt(Left(new FetchError.DownloadingArtifacts(errors.toList)))
/dports/www/larbin/larbin-2.6.3/src/fetch/
H A Dsite.h76 void forgetUrl (url *u, FetchError reason);
120 void robotsResult (FetchError res);
H A DfetchPipe.cc155 conn->err = (FetchError) errno; in pipeRead()
186 conn->err = (FetchError) errno; in pipeRead()
/dports/www/varnish6/varnish-cache-varnish-6.6.2/bin/varnishtest/tests/
H A Dr03502.vtc41 # Ensure the FetchError is in vbf_beresp2obj()
44 expect 0 = FetchError {^Could not get storage}
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/dashboard/dashboard/sheriff_config/
H A Dluci_config.py28 class FetchError(Error): class
31 super(FetchError,
59 raise FetchError(e)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/devtools-frontend/src/node_modules/node-fetch/lib/
H A Dindex.mjs124 * FetchError interface for operational errors
128 * Create FetchError instance
133 * @return FetchError
135 function FetchError(message, type, systemError) { class
150 FetchError.prototype = Object.create(Error.prototype);
151 FetchError.prototype.constructor = FetchError;
152 FetchError.prototype.name = 'FetchError';
404 reject(new FetchError(`content size at ${_this4.url} over limit: ${_this4.size}`, 'max-size'));
1448 reject(new FetchError(`network timeout at: ${request.url}`, 'request-timeout'));
1498 reject(new FetchError(`maximum redirect reached at: ${request.url}`, 'max-redirect'));
[all …]
/dports/textproc/kibana6/kibana-6.8.16-darwin-x86_64/node_modules/x-pack/node_modules/node-fetch/lib/
H A Dindex.mjs124 * FetchError interface for operational errors
128 * Create FetchError instance
133 * @return FetchError
135 function FetchError(message, type, systemError) { class
150 FetchError.prototype = Object.create(Error.prototype);
151 FetchError.prototype.constructor = FetchError;
152 FetchError.prototype.name = 'FetchError';
404 reject(new FetchError(`content size at ${_this4.url} over limit: ${_this4.size}`, 'max-size'));
1448 reject(new FetchError(`network timeout at: ${request.url}`, 'request-timeout'));
1498 reject(new FetchError(`maximum redirect reached at: ${request.url}`, 'max-redirect'));
[all …]
/dports/textproc/kibana7/kibana-7.16.2-darwin-x86_64/node_modules/node-fetch/lib/
H A Dindex.mjs124 * FetchError interface for operational errors
128 * Create FetchError instance
133 * @return FetchError
135 function FetchError(message, type, systemError) { class
150 FetchError.prototype = Object.create(Error.prototype);
151 FetchError.prototype.constructor = FetchError;
152 FetchError.prototype.name = 'FetchError';
404 reject(new FetchError(`content size at ${_this4.url} over limit: ${_this4.size}`, 'max-size'));
1448 reject(new FetchError(`network timeout at: ${request.url}`, 'request-timeout'));
1498 reject(new FetchError(`maximum redirect reached at: ${request.url}`, 'max-redirect'));
[all …]
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/node_modules/node-fetch/lib/
H A Dindex.mjs124 * FetchError interface for operational errors
128 * Create FetchError instance
133 * @return FetchError
135 function FetchError(message, type, systemError) { class
150 FetchError.prototype = Object.create(Error.prototype);
151 FetchError.prototype.constructor = FetchError;
152 FetchError.prototype.name = 'FetchError';
404 reject(new FetchError(`content size at ${_this4.url} over limit: ${_this4.size}`, 'max-size'));
1448 reject(new FetchError(`network timeout at: ${request.url}`, 'request-timeout'));
1498 reject(new FetchError(`maximum redirect reached at: ${request.url}`, 'max-redirect'));
[all …]
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/reportsDashboards/node_modules/node-fetch/lib/
H A Dindex.mjs124 * FetchError interface for operational errors
128 * Create FetchError instance
133 * @return FetchError
135 function FetchError(message, type, systemError) { class
150 FetchError.prototype = Object.create(Error.prototype);
151 FetchError.prototype.constructor = FetchError;
152 FetchError.prototype.name = 'FetchError';
404 reject(new FetchError(`content size at ${_this4.url} over limit: ${_this4.size}`, 'max-size'));
1448 reject(new FetchError(`network timeout at: ${request.url}`, 'request-timeout'));
1498 reject(new FetchError(`maximum redirect reached at: ${request.url}`, 'max-redirect'));
[all …]
/dports/biology/py-pyfaidx/pyfaidx-0.5.9.5/pyfaidx/
H A D__init__.py51 class FetchError(IndexError): class
400 raise FetchError(
625 except FetchError:
652 raise FetchError("Requested rname {0} does not exist! "
656 raise FetchError(
669 raise FetchError("Requested coordinates start={0:n} end={1:n} are "
672 raise FetchError("Requested end coordinate {0:n} outside of {1}. "
827 except FetchError:
969 except (FetchError, IOError):
/dports/www/grafana8/grafana-8.3.6/public/app/features/alerting/unified/utils/
H A Dredux.ts3 import { FetchError } from '@grafana/runtime';
142 export function messageFromError(e: Error | FetchError | SerializedError): string {

1234