search for: nbio

Displaying 18 results from an estimated 18 matches for "nbio".

Did you mean: bio
2003 Jul 07
1
installed samba,enabled nbios,shares, failing
Hi, I've installed Samba. And smbstatus shows no locked files. enabled netbios. I Can't seem to find the network on either windows xp nor on rhl 9. Mounting times out. And Network not found error comes on WindowsxP. i don't know if i need to add a share or what. i just changed the workgroup name in the configuration file. That's all no other changes, do i need to ? =====
2007 Dec 14
4
Error when loading backgroundrb
I''m getting the following error (when doing script/backgroundrb start) on my local machine, which is running os x 10.4.11. However, it works just fine on my linux server. RAILS_ROOT/vendor/plugins/backgroundrb/lib/../framework/nbio.rb:64:in `dump_object'': undefined method `write_nonblock'' for #<UNIXSocket: 0x135b5f4> (NoMethodError) I just grabbed the latest (r274) from the repository, and my Packet gems are identical. I also deleted the backgroundrb script and re- ran rake backgroundrb:setup....
2007 Dec 25
6
error: no marshal_dump is defined for class Thread
...or (I don''t really know how to determine if the jobs are getting threaded successfully, but they are running, that I am sure of). Here''s the dump: no marshal_dump is defined for class Thread /var/www/apps/rpg/releases/20071224050255/vendor/plugins/backgroundrb/lib/../framework/nbio.rb:55:in `dump'' /var/www/apps/rpg/releases/20071224050255/vendor/plugins/backgroundrb/lib/../framework/nbio.rb:55:in `dump_object'' /var/www/apps/rpg/releases/20071224050255/vendor/plugins/backgroundrb/framework/worker.rb:32:in `send_data'' /var/www/apps/rpg/releases/200...
2007 Dec 06
10
Feedback on RC2
I tried to upgrade my existing application to RC2 last night. Like many, I use this mostly for running scheduled tasks. For the moment, I''ve abandoned the effort, but am looking forward to being able to use this. Feedback below: First, the reason I was looking forward to this upgrade was to use the threaded scheduler. I have an application with long-running tasks. I found that
2008 Jan 29
4
Setting up release-1.0.1
...ckgroundrb/framework/packet_master.rb:19:in `run'' from RAILS_HOME/vendor/plugins/backgroundrb/server/master_worker.rb:163:in `initialize'' from ./script/backgroundrb:62:in `new'' from ./script/backgroundrb:62 RAILS_HOME/vendor/plugins/backgroundrb/lib/../framework/nbio.rb:23:in `read_data'': Packet::DisconnectError (Packet::DisconnectError) from RAILS_HOME/vendor/plugins/backgroundrb/framework/worker.rb:47:in `handle_internal_messages'' from RAILS_HOME/vendor/plugins/backgroundrb/framework/core.rb:158:in `start_reactor'' from RAIL...
2010 Jul 15
1
Scatterplot_row match
Dear all, I would like to make a scatter plot using "plot" function. I have two sample 1c and 2c, the 1st and 3rd are the ID of each gene, the 2nd and 3rd are the values. But as you can see some genes are not in the same row, i.e: ENSMUSG00000001020 is in the 4th row in sample 2c and 7th row of the sample 1c. But I have nearly 1000 genes, I can not edit the data manually to fit
2008 Jan 11
18
getting started
Hey all, Been reading through all the old posts (and the docs) to familiarize myself but I still feel a bit lost. I''m on trunk and am having a bit of a hard time knowing where to start with the particular I''m trying to solve. So far, I''ve downloaded backgroundrb, done the basic rails setup, created my worker and started it using `script/backgroundrb start`.
2010 Apr 29
1
R Anova Analysis
Dear all, I have a quite basic questions about anova analysis in R, sorry for this, but I have no clue how to explain this result. I have two datasets which are named: nmda123, nmda456. Each dataset has three samples which were measured three times. And I would like to compare means of them with Posthoc test using R, following please see the output: (CREB, mCREB and No virus are the name of
2004 Aug 29
3
starting/stopping Dovecot
http://www.dovecot.org/doc/INSTALL > Once everything is configured, there's two ways to start Dovecot: > > 1) Run "dovecot" binary which does everything. > > 2) Start it via inetd or similiar by executing "imap-login" or "pop3-login" > binaries. If you're listening in SSL port, add --ssl parameter. What are the pros and cons of using
2010 May 31
3
How to delete the previously saved workspace restored
Dear all, I am a new user of R, here I have a question about remove the previous restored workspace. I saved the workspace last time, but R always automatically load the workspace when I open it. I try to remove the object and then close R without saving. But next time when I open R, it always load the previous workspace. I want to delete the .RData in the directory, but I have no clue
2007 Nov 02
10
pre-release version of backgroundrb available now from svn
Hi, A pre-release version of backgroundrb is available now from svn. Download it from here: http://svn.devjavu.com/backgroundrb/branches/version099/ Since this release marks significant migration from existing practices, i intend to keep trunk untouched for a while. There are no install scripts, but you should copy "backgroundrb" file from script directory of plugin to script
2012 Aug 16
0
[RFC v1 3/5] VBD: enlarge max segment per request in blkfront
...struct phys_req preq; - struct seg_buf seg[BLKIF_MAX_SEGMENTS_PER_REQUEST]; + struct seg_buf *seg = pending_req->seg; unsigned int nseg; struct bio *bio = NULL; - struct bio *biolist[BLKIF_MAX_SEGMENTS_PER_REQUEST]; + struct bio **biolist = pending_req->biolist; int i, nbio = 0; int operation; struct blk_plug plug; @@ -616,7 +670,7 @@ static int dispatch_rw_block_io(struct xen_blkif *blkif, nseg = req->u.rw.nr_segments; if (unlikely(nseg == 0 && operation != WRITE_FLUSH) || - unlikely(nseg > BLKIF_MAX_SEGMENTS_PER_REQUEST)) { +...
2008 Jan 22
11
Unable to load Models which reference plugins?
I''m using a plugin which adds a method to ActiveRecord::Base http://similetimelinerailshelper.googlecode.com/svn/trunk/simile_timeline/ This adds an "acts_as" type declaration to the Models, via the file in vendor/plugins/simile_timeline/lib/simile_timeline.rb Rails is working with these declarations, and they are being used successfully in ''regular
2008 May 20
7
Problems sending large results with backgroundrb
...rch results gets sufficiently large, when we start to hit exceptions in backgroundrb (most likely in the packet layer). We are using packet-0.5.1 and backgroundrb from the latest svn mirror. We have found and fixed one problem in the packet sender. This is triggered when the non-blocking send in NbioHelper::send_once cannot send the entire buffer, resulting in an exception in the line write_scheduled[fileno] ||= connections[fileno].instance in Core::schedule_write because connections[fileno] is nil. I can''t claim to fully understand the code, but I think there are two problem...
2002 May 29
0
Need help compiling on HPUX 11.00 for 2.2.4
...$(PARAM_OBJ) $(LIBSMB_OBJ) $(UBIQX_OBJ) $(LIB_OBJ) UMOUNT_OBJ = client/smbumount.o \ $(PARAM_OBJ) $(LIBSMB_OBJ) $(UBIQX_OBJ) $(LIB_OBJ) NMBLOOKUP_OBJ = utils/nmblookup.o $(PARAM_OBJ) $(UBIQX_OBJ) \ $(LIBSMB_OBJ) $(LIB_OBJ) SMBTORTURE_OBJ = utils/torture.o utils/nbio.o $(LIBSMB_OBJ) $(PARAM_OBJ) \ $(UBIQX_OBJ) $(LIB_OBJ) MASKTEST_OBJ = utils/masktest.o $(LIBSMB_OBJ) $(PARAM_OBJ) \ $(UBIQX_OBJ) $(LIB_OBJ) MSGTEST_OBJ = utils/msgtest.o $(LIBSMB_OBJ) $(PARAM_OBJ) \ $(UBIQX_OBJ) $(LIB_OBJ) LOCKTEST_OBJ = utils/l...
2002 May 28
0
link errors compiling 2.2.4 on HP-UX 11.00
...$(PARAM_OBJ) $(LIBSMB_OBJ) $(UBIQX_OBJ) $(LIB_OBJ) UMOUNT_OBJ = client/smbumount.o \ $(PARAM_OBJ) $(LIBSMB_OBJ) $(UBIQX_OBJ) $(LIB_OBJ) NMBLOOKUP_OBJ = utils/nmblookup.o $(PARAM_OBJ) $(UBIQX_OBJ) \ $(LIBSMB_OBJ) $(LIB_OBJ) SMBTORTURE_OBJ = utils/torture.o utils/nbio.o $(LIBSMB_OBJ) $(PARAM_OBJ) \ $(UBIQX_OBJ) $(LIB_OBJ) MASKTEST_OBJ = utils/masktest.o $(LIBSMB_OBJ) $(PARAM_OBJ) \ $(UBIQX_OBJ) $(LIB_OBJ) MSGTEST_OBJ = utils/msgtest.o $(LIBSMB_OBJ) $(PARAM_OBJ) \ $(UBIQX_OBJ) $(LIB_OBJ) LOCKTEST_OBJ = utils/l...
2018 Jan 14
0
Volume can not write to data if this volume quota limits capacity and mount itself volume on arm64(aarch64) architecture
..._sqlite3.c:1374:gf_sqlite3_set_pragma] 0-sqlite3: Value set on DB wal_autocheckpoint : 1000 [2018-02-02 11:23:29.816465] I [MSGID: 0] [gfdb_sqlite3.c:1374:gf_sqlite3_set_pragma] 0-sqlite3: Value set on DB cache_size : 1000 [2018-02-02 11:23:29.816947] W [socket.c:3677:reconfigure] 0-test_vol-quota: NBIO on -1 failed (Bad file descriptor) [2018-02-02 11:23:29.817163] I [MSGID: 115034] [server.c:403:_check_for_auth_option] 0-/data/gluster/1045fe63-bf09-42f5-986b-ce2d3d63def0/test_vol: skip format check for non-addr auth option auth.login./data/gluster/1045fe63-bf09-42f5-986b-ce2d3d63def0/test_vol.al...
2010 May 02
2
samba4 make error - drsblobs.so
...mpiling torture/nbt/nbt.c Partially linking bin/mergedobj/torture_nbt.o Compiling torture/drs/drs_init.c Compiling torture/drs/drs_util.c Compiling torture/drs/unit/schemainfo_tests.c Compiling torture/drs/unit/prefixmap_tests.c Partially linking bin/mergedobj/torture_drs.o Compiling torture/nbench/nbio.c Compiling torture/nbench/nbench.c Partially linking bin/mergedobj/torture_nbench.o Compiling torture/winbind/winbind.c Compiling torture/winbind/struct_based.c Compiling ../nsswitch/libwbclient/tests/wbclient.c ../nsswitch/libwbclient/tests/wbclient.c: In function ?test_wbc_lookup_rids?: ../nsswi...