Home
last modified time | relevance | path

Searched refs:excep (Results 26 – 50 of 936) sorted by relevance

12345678910>>...38

/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/mongodb/plugins/modules/
H A Dmongodb_maintenance.py130 except Exception as excep:
131 module.fail_json(msg='Unable to connect to MongoDB: %s' % to_native(excep))
147 except Exception as excep:
148 module.fail_json(msg='Unable to get MongoDB server version: %s' % to_native(excep))
154 except Exception as excep:
155 module.fail_json(msg='Unable to authenticate with MongoDB: %s' % to_native(excep))
185 except Exception as excep:
186 module.fail_json(msg='module encountered an error: %s' % to_native(excep))
H A Dmongodb_status.py371 except Exception as excep:
372 if hasattr(excep, 'code') and excep.code == 13:
373 raise excep
375 raise excep
389 except Exception as excep:
390 …if "not authorized on" in str(excep) or "command listDatabases requires authentication" in str(exc…
394 except Exception as excep:
395 …module.fail_json(msg='unable to connect to database: %s' % to_native(excep), exception=traceback.f…
397 …module.fail_json(msg='unable to connect to database: %s' % to_native(excep), exception=traceback.f…
399 …module.fail_json(msg='unable to connect to database: %s' % to_native(excep), exception=traceback.f…
H A Dmongodb_replicaset.py206 except ImportError as excep:
209 except ImportError as excep:
211 % to_native(excep))
250 except Exception as excep:
251 raise Exception("Some problem {0} | {1}".format(str(excep), str(conf)))
374 except Exception as excep:
375 … module.fail_json(msg='Unable to authenticate with MongoDB: %s' % to_native(excep))
/dports/math/mpsolve/mpsolve-3.2.1/src/libmps/monomial/
H A Dmonomial-threading.c29 while (!(*data->excep) && (*data->nzeros) < data->required_zeros) in mps_thread_fpolzer_worker()
38 (*data->excep) = true; in mps_thread_fpolzer_worker()
154 *excep = false; in mps_thread_fpolzer()
176 data[i].excep = excep; in mps_thread_fpolzer()
212 while (!(*data->excep) && (*data->nzeros < data->required_zeros)) in mps_thread_dpolzer_worker()
221 (*data->excep) = true; in mps_thread_dpolzer_worker()
308 *excep = false; in mps_thread_dpolzer()
340 data[i].excep = excep; in mps_thread_dpolzer()
396 (*data->excep) = true; in mps_thread_mpolzer_worker()
531 *excep = false; in mps_thread_mpolzer()
[all …]
/dports/sysutils/conan/conan-1.44.0/conans/server/rest/bottle_plugins/
H A Dreturn_handler.py37 except ConanException as excep:
38 return get_response_from_exception(excep, self.exception_mapping)
47 def get_response_from_exception(excep, exception_mapping): argument
48 status = exception_mapping.get(excep.__class__, None)
51 ret = HTTPResponse(status=status, body=str(excep))
/dports/editors/libreoffice/libreoffice-7.2.6.2/ucb/source/ucp/ftp/
H A Dftpcontent.cxx339 excep.Server = m_aFTPURL.host(); in execute()
340 aRet <<= excep; in execute()
350 aRet <<= excep; in execute()
661 MissingPropertiesException excep; in insert() local
662 excep.Properties.realloc(1); in insert()
663 excep.Properties[0] = "Title"; in insert()
671 MissingInputStreamException excep; in insert() local
692 UnsupportedNameClashException excep; in insert() local
707 throw excep; in insert()
803 InteractiveIOException excep; in setPropertyValues() local
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/ucb/source/ucp/ftp/
H A Dftpcontent.cxx335 excep.Server = m_aFTPURL.host(); in execute()
336 aRet <<= excep; in execute()
346 aRet <<= excep; in execute()
663 MissingPropertiesException excep; in insert() local
664 excep.Properties.realloc(1); in insert()
665 excep.Properties[0] = "Title"; in insert()
673 MissingInputStreamException excep; in insert() local
694 UnsupportedNameClashException excep; in insert() local
709 throw excep; in insert()
805 InteractiveIOException excep; in setPropertyValues() local
[all …]
/dports/databases/cego/cego-2.47.11/src/
H A DCegoQueryException.cc24 CegoQueryException::CegoQueryException(CegoException excep, const Chain& module, int line, const Ch… in CegoQueryException() argument
26 _excep = excep; in CegoQueryException()
29 CegoQueryException::CegoQueryException(CegoException excep, const Chain& module, int line, const Ch… in CegoQueryException() argument
31 _excep = excep; in CegoQueryException()
H A DCegoProcBlock.cc180 CegoException excep; in execute() local
182 if ( ( excep = (*pStmt)->execute() ) != NONE_EXCEP ) in execute()
184 if ( excep == RETURN_EXCEP ) in execute()
187 return excep; in execute()
192 if ( (*pException)->getException() == excep || (*pException)->getException() == ANY_EXCEP ) in execute()
198 excep = NONE_EXCEP; in execute()
203 if ( excep != NONE_EXCEP && _pParentBlock ) in execute()
206 return excep; in execute()
/dports/devel/py-oslo.vmware/oslo.vmware-3.10.0/oslo_vmware/
H A Drw_handles.py103 except Exception as excep:
110 raise exceptions.VimException(excep_msg, excep)
141 except requests.RequestException as excep:
261 except requests.RequestException as excep:
266 except Exception as excep:
273 raise exceptions.VimException(excep_msg, excep)
537 except requests.RequestException as excep:
542 except Exception as excep:
549 raise exceptions.VimException(excep_msg, excep)
624 except Exception as excep:
[all …]
/dports/www/py-webob/WebOb-1.8.7/tests/
H A Dtest_exc.py230 excep = webob_exc.WSGIHTTPException()
231 assert excep(environ, start_response) == [
253 excep = webob_exc.WSGIHTTPException()
254 excep.body = b'test'
255 assert excep(environ,start_response) == [b'test']
267 excep = webob_exc.WSGIHTTPException()
268 assert excep.wsgi_response(environ,start_response) == []
279 excep = webob_exc.WSGIHTTPException()
281 assert excep(environ,start_response) == []
292 excep = webob_exc.WSGIHTTPException()
[all …]
/dports/emulators/jzintv/jzintv-20200712-src/src/imasm/
H A DsubMakefile17 imasm/main.$(O): imasm/includes.h imasm/excep.h imasm/main.h
18 imasm/parser.$(O): imasm/includes.h imasm/excep.h imasm/main.h
19 imasm/token.$(O): imasm/includes.h imasm/excep.h imasm/main.h
20 imasm/c_wrap.$(O): imasm/includes.h imasm/excep.h imasm/main.h
21 imasm/strfifo.$(O): imasm/excep.h imasm/strfifo.h imasm/c_wrap.h
/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/cont/kokkos/internal/
H A DDeviceAdapterAlgorithmKokkos.cxx53 auto excep = vtkm::cont::ErrorExecution(deviceView.data()); in CheckForErrors() local
56 throw excep; in CheckForErrors()
68 auto excep = vtkm::cont::ErrorExecution(hostView.data()); in CheckForErrors() local
72 throw excep; in CheckForErrors()
/dports/astro/phd2/phd2-2.6.10/
H A Dcomdispatch.cpp43 wxString ExcepMsg(const EXCEPINFO& excep) in ExcepMsg() argument
45 if (excep.bstrSource || excep.bstrDescription) in ExcepMsg()
46 return wxString::Format("(%s) %s", excep.bstrSource, excep.bstrDescription); in ExcepMsg()
51 wxString ExcepMsg(const wxString& prefix, const EXCEPINFO& excep) in ExcepMsg() argument
53 return prefix + ":\n" + ExcepMsg(excep); in ExcepMsg()
96 bool DispatchClass::dispid(DISPID *ret, IDispatch *idisp, OLECHAR *wname, ExcepInfo *excep) in dispid() argument
103 excep->Assign(err, wxString::Format(_("Driver error preparing to call %s"), wname)); in dispid()
108 bool DispatchClass::dispid_cached(DISPID *ret, IDispatch *idisp, OLECHAR *wname, ExcepInfo *excep) in dispid_cached() argument
119 if (!dispid(ret, idisp, wname, excep)) in dispid_cached()
/dports/devel/swig/swig-4.0.2/Lib/modula3/
H A Dmodula3head.swg39 jclass excep;
56 excep = JCALL1(FindClass, jenv, except_ptr->java_exception);
57 if (excep)
58 JCALL2(ThrowNew, jenv, excep, msg);
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/sun/security/ssl/InputRecord/
H A DProxyTunnelServer.java72 catch (IOException excep) { in run()
73 System.out.println("ProxyServer close error: " + excep); in run()
74 excep.printStackTrace(); in run()
167 } catch (InterruptedException excep) { in run()
168 System.out.println(excep); in run()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/sun/security/ssl/InputRecord/
H A DProxyTunnelServer.java72 catch (IOException excep) { in run()
73 System.out.println("ProxyServer close error: " + excep); in run()
74 excep.printStackTrace(); in run()
167 } catch (InterruptedException excep) { in run()
168 System.out.println(excep); in run()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/sun/security/ssl/InputRecord/
H A DProxyTunnelServer.java72 catch (IOException excep) { in run()
73 System.out.println("ProxyServer close error: " + excep); in run()
74 excep.printStackTrace(); in run()
167 } catch (InterruptedException excep) { in run()
168 System.out.println(excep); in run()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/sun/security/ssl/InputRecord/
H A DProxyTunnelServer.java72 catch (IOException excep) { in run()
73 System.out.println("ProxyServer close error: " + excep); in run()
74 excep.printStackTrace(); in run()
167 } catch (InterruptedException excep) { in run()
168 System.out.println(excep); in run()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/sun/security/ssl/InputRecord/
H A DProxyTunnelServer.java72 catch (IOException excep) {
73 System.out.println("ProxyServer close error: " + excep);
74 excep.printStackTrace();
167 } catch (InterruptedException excep) {
168 System.out.println(excep);
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/sun/security/ssl/InputRecord/
H A DProxyTunnelServer.java72 catch (IOException excep) { in run()
73 System.out.println("ProxyServer close error: " + excep); in run()
74 excep.printStackTrace(); in run()
167 } catch (InterruptedException excep) { in run()
168 System.out.println(excep); in run()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/sun/security/ssl/InputRecord/
H A DProxyTunnelServer.java72 catch (IOException excep) { in run()
73 System.out.println("ProxyServer close error: " + excep); in run()
74 excep.printStackTrace(); in run()
167 } catch (InterruptedException excep) { in run()
168 System.out.println(excep); in run()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/sun/security/ssl/InputRecord/
H A DProxyTunnelServer.java72 catch (IOException excep) { in run()
73 System.out.println("ProxyServer close error: " + excep); in run()
74 excep.printStackTrace(); in run()
167 } catch (InterruptedException excep) { in run()
168 System.out.println(excep); in run()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/test/sun/security/ssl/InputRecord/
H A DProxyTunnelServer.java72 catch (IOException excep) { in run()
73 System.out.println("ProxyServer close error: " + excep); in run()
74 excep.printStackTrace(); in run()
167 } catch (InterruptedException excep) { in run()
168 System.out.println(excep); in run()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/test/sun/security/ssl/InputRecord/
H A DProxyTunnelServer.java72 catch (IOException excep) { in run()
73 System.out.println("ProxyServer close error: " + excep); in run()
74 excep.printStackTrace(); in run()
167 } catch (InterruptedException excep) { in run()
168 System.out.println(excep); in run()

12345678910>>...38