search for: oninit

Displaying 20 results from an estimated 24 matches for "oninit".

Did you mean: uninit
2004 Jan 22
0
Samba 3 problems
...user from the registry. This has made no difference. None of the client shares are visible to any roaming user. The client shares are visible to local users. Everything was 100% under Samba 2.x Anybody know why and can you shed some light on the problem -- Paul Watson # Oninit Ltd # Growing old is mandatory Tel: +44 1436 672201 # Growing up is optional Fax: +44 1436 678693 # Mob: +44 7818 003457 # www.oninit.com -- Paul Watson # Oninit Ltd # Growing old is mandatory Tel: +44 1436 672201 # Growing up...
2010 Dec 07
0
[LLVMdev] Arm Target
...oms you describe could be caused by any number of things, and none of them are likely to be related to LLVM. > for your reference , the two case are as shown below : > Case 1: Crash at a point when it tries to allocate memory in making an object of MyFrame in the code below. > bool MyApp::OnInit() > { > if ( !wxApp::OnInit() ) > return false; > // create the main application window > MyFrame *frame = new MyFrame(_T("Minimal wxWidgets App")); > frame->Show(true); > return true; > } &...
2010 Dec 07
3
[LLVMdev] Arm Target
Hello, We have been testing our llvm(2.8) compiled executables for arm target. It seems as if the arm target support is not so stable/mature yet. Is it so ?? We read about the same in the release notes but want a word from your side. Thanks, Sameer -------------- next part -------------- An HTML attachment was scrubbed... URL:
2010 Dec 03
2
[LLVMdev] wxGTK sample app compiled by llvm crashes on arm
...y application(wxGTK application) with a memory allocation using new in the very start, the same exe now would run successfully. For your reference I am posting both the codes: *Case 1: Crash* at a point when it tries to allocate memory in making an object of MyFrame in the code below. bool MyApp::OnInit() { if ( !wxApp::OnInit() ) return false; // create the main application window MyFrame *frame = new MyFrame(_T("Minimal wxWidgets App")); frame->Show(true); return true; } *Case 2*: The code below is same as above excep...
2003 Nov 30
0
New wxruby code is checked in
First, I eliminated all the compile warnings, at least on my system. If you get any warnings when you compile wxruby, please let me know. Next, I finally switched the last remaining MixedCaseFunction to follow the ruby_naming_convention: App#OnInit. Now, on startup, App will first try to call your on_init, but if it doesn''t find that it will try the old OnInit form. I encourage you to switch your code to use on_init, but will probably keep OnInit compatibility for quite a while. Then, I created a sample app demonstrating the new...
2024 Jan 03
0
Pre Validation failed on 192.168.3.31. Volume gv1 does not exist
...edora 37 ?gluster peer status Number of Peers: 2 Hostname: 192.168.3.18 Uuid: 7738f786-b35f-4be8-8fd9-e609c11f2b72 State: Peer in Cluster (Connected) Other names: 192.168.3.18 Hostname: 192.168.3.31 Uuid: 7e085d9f-a0f9-4ed6-a850-44b6ed991081 State: Peer in Cluster (Connected) -- Paul Watson Oninitwww.oninit.com Tel: +1 913 364 0360 Cell: +1 913 387 7529 Oninit? is a registered trademark of Oninit LLC If you want to improve, be content to be thought foolish and stupid Failure is not as frightening as regret -------------- next part -------------- An HTML attachment was scrubbed... URL: <...
2007 Mar 19
0
[898] branches/wxruby2/wxwidgets_282/swig/classes/App.i: Fix init of stock objects for Wx2.8 - was causing infinite loop +crash on OS X
...#endif&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp </span><span class="cx"> } </span><span class="cx"> </span><ins>+ // This is the method run when main_loop is called in Ruby + // wxEntry calls the C++ App::OnInit method </ins><span class="cx"> int main_loop() </span><span class="cx"> { </span><span class="cx"> static int argc = 1; </span><span class="lines">@@ -63,8 +65,6 @@ </span><span class=&q...
2003 Oct 27
5
Windows Build - Down to Run Time Errors
...row. I''m running the same app "minimal.rb" E:\Dev\RubyDev\wxruby\samples\minimal>ruby minimal.rb 18:24:27: Debug: E:\Dev\RubyDev\wxWindows-2.4.1/include\wx/datetime.h(1445): ass ert "t1.IsValid() && t2.IsValid()" failed: invalid wxDateTime minimal.rb:52:in `OnInit'': uninitialized constant RbApp::Point (NameError) from minimal.rb:59:in `initialize'' from minimal.rb:59:in `new'' from minimal.rb:59 E:\Dev\RubyDev\wxruby\samples\minimal> Curt
2003 Nov 07
6
DnD
Hi! Is drag''n''drop works currently under wxruby? I want an app, where you can drag files from a wxlistctrl to a wxtreectrl. Can anyone show a little example? Gergo -- +-[ Kontra, Gergely<kgergely@mcl.hu> PhD student Room IB113 ]---------+ | http://www.mcl.hu/~kgergely "Olyan langesz vagyok, hogy | | Mobil:(+36 20) 356 9656 ICQ: 175564914 poroltoval
2011 Feb 22
2
[LLVMdev] still failed to build the llbrowse on Debian5-32b-llvm2.8
...e.dir/lib/BrowserFrame.cpp.o [ 77%] Building CXX object CMakeFiles/llbrowse.dir/lib/DetailsView.cpp.o [ 83%] Building CXX object CMakeFiles/llbrowse.dir/lib/BrowserApp.cpp.o /steffan/a/a0/czhao/ResearchTools/LLVM/LLBrowse/llbrowse/lib/BrowserApp.cpp: In member function 'virtual bool BrowserApp::OnInit()': /steffan/a/a0/czhao/ResearchTools/LLVM/LLBrowse/llbrowse/lib/BrowserApp.cpp:29: error: 'PrintStackTraceOnErrorSignal' is not a member of 'llvm::sys' make[2]: *** [CMakeFiles/llbrowse.dir/lib/BrowserApp.cpp.o] Error 1 make[1]: *** [CMakeFiles/llbrowse.dir/all] Error 2 make: *...
2006 Apr 23
5
Re: StaticBoxSizer bug?
...us to someone with more experience > than I at hacking the wxruby2 source. > > daniel > > > ------------------------------------------------------------------------ > > #include <wx/wx.h> > > class SizerTestApp : public wxApp { > public: > virtual bool OnInit(); > }; > > class SizerTestFrame : public wxFrame { > public: > SizerTestFrame(const wxString & title); > }; > > IMPLEMENT_APP(SizerTestApp); > > bool SizerTestApp::OnInit() { > SizerTestFrame *frame = new SizerTestFrame("Test"); > > frame-...
2011 Feb 22
0
[LLVMdev] still failed to build the llbrowse on Debian5-32b-llvm2.8
...me.cpp.o > [ 77%] Building CXX object CMakeFiles/llbrowse.dir/lib/DetailsView.cpp.o > [ 83%] Building CXX object CMakeFiles/llbrowse.dir/lib/BrowserApp.cpp.o > /steffan/a/a0/czhao/ResearchTools/LLVM/LLBrowse/llbrowse/lib/BrowserApp.cpp: > In member function 'virtual bool BrowserApp::OnInit()': > /steffan/a/a0/czhao/ResearchTools/LLVM/LLBrowse/llbrowse/lib/BrowserApp.cpp:29: > error: 'PrintStackTraceOnErrorSignal' is not a member of 'llvm::sys' > make[2]: *** [CMakeFiles/llbrowse.dir/lib/BrowserApp.cpp.o] Error 1 > make[1]: *** [CMakeFiles/llbrowse.dir/...
2007 May 21
0
[1022] trunk/wxruby2/swig/classes/App.i: Memory mgmt: use Wx::App to mark still-alive Windows, set up Wx::THE_APP const
...rate, Qnil); +#ifdef __WXDEBUG__ + printf("=== App GC mark phase completed\n"); +#endif + + } + </ins><span class="cx"> // This is the method run when main_loop is called in Ruby </span><span class="cx"> // wxEntry calls the C++ App::OnInit method </span><span class="cx"> int main_loop() </span><span class="cx"> { </span><del>- static int argc = 1; - static wxChar *argv[] = {wxT("wxruby"), NULL}; </del><ins>+&nbsp&nbsp&nbsp&...
2004 Feb 02
0
the sample
...lass MyFrame < Wx::Frame def initialize(title) super(nil, -1, title) b=Button.new(self,-1,''e'') evt_button(-1) { MyImageFrame.new(self, ''yeah'',Bitmap.new(''verybigimagefile'')).show } end end class NothingApp < Wx::App def OnInit frame = MyFrame.new("Minimal wxRuby App") frame.show end end a = NothingApp.new a.main_loop()
2003 Nov 24
3
wxImageHandler type?
Hiya, I was trying to figure out how to display PNG files using wxWindows/wxRuby. Google turned up a few things, mainly discussing the wxImageHandler class and it''s children, etc, but there seems to be no mention of them in the wxRuby source. Are they there, and I missed them, or are they just not there? If there not there, is there a quick and dirty way to get them in? It seems like
2011 Feb 21
0
[LLVMdev] Looking for more LLBrowse testers / users
On Sat, Feb 19, 2011 at 12:27 PM, Talin <viridia at gmail.com> wrote: > LLBrowse - a GUI tool which allows you to inspect the contents of LLVM > modules - now runs on Linux and OS X, and it works with both LLVM 2.8 and > current LLVM head. I've updated the docs to include instructions on checking > out and building the code under several different environments, which you
2011 Feb 19
4
[LLVMdev] Looking for more LLBrowse testers / users
LLBrowse - a GUI tool which allows you to inspect the contents of LLVM modules - now runs on Linux and OS X, and it works with both LLVM 2.8 and current LLVM head. I've updated the docs to include instructions on checking out and building the code under several different environments, which you can read here: http://llvm.org/svn/llvm-project/llbrowse/trunk/doc/LLBrowse.html (the doc also
2003 Oct 20
5
wxruby - ruby-gtk2
Hi! Can anybody tell me basic differences using wxwindows and gtk2 GUI with ruby? Gergo -- +-[ Kontra, Gergely<kgergely@mcl.hu> PhD student Room IB113 ]---------+ | http://www.mcl.hu/~kgergely "Olyan langesz vagyok, hogy | | Mobil:(+36 20) 356 9656 ICQ: 175564914 poroltoval kellene jarnom" | +-- Magyar php mirror es magyar php dokumentacio: http://hu.php.net --+
2004 Jan 08
3
pictorG
...n}" if fn=~/.thumb\d+x\d+/ list << fn.gsub!(''\\'',''/'') if fn=~/\.(jpe?g|gif|png|bmp|xpm)$/i } log.kill @pic.show_list list end end #======================================================================== class MyApp < App def OnInit MyFrame.new("pictorG - PICTure ORganizer by Gregory").show end end init_all_image_handlers MyApp.new.main_loop()
2013 Feb 05
1
"Header is huge" in fts-solr
...aulted to 'solr/' (could not find system property or JNDI) 01.02.2013 18:03:54 org.apache.solr.servlet.SolrUpdateServlet init INFO: SolrUpdateServlet.init() done 2013-02-01 18:03:54.449:INFO::Started SocketConnector at 0.0.0.0:8983 01.02.2013 18:04:40 org.apache.solr.core.SolrDeletionPolicy onInit INFO: SolrDeletionPolicy.onInit: commits:num=1 commit{dir=/home/valerius/apache-solr-3.6.2/example/solr/data/index,segFN=segments_1,version=1359741540635,generation=1,filenames=[segments_1] 01.02.2013 18:04:40 org.apache.solr.core.SolrDeletionPolicy updateCommits INFO: newest commit = 135974154...