search for: null

Displaying 20 results from an estimated 49664 matches for "null".

2019 Jan 02
3
[lit] check-all hanging
...ning of lit tests. The hang always happens at the > 90% completion stage and I'm pretty sure all tests have been run and check-all is just waiting for lit/python to exit. I see a single python processing running, taking very little CPU time. An strace of that process shows this: select(0, NULL, NULL, NULL, {0, 50000}) = 0 (Timeout) select(0, NULL, NULL, NULL, {0, 50000}) = 0 (Timeout) select(0, NULL, NULL, NULL, {0, 50000}) = 0 (Timeout) select(0, NULL, NULL, NULL, {0, 50000}) = 0 (Timeout) select(0, NULL, NULL, NULL, {0, 50000}) = 0 (Timeout) select(0, NULL, NULL, NULL, {0, 50000}) = 0...
2010 Apr 09
2
How to use tapply for quantile
...to calculate quantiles of a data frame column split up by two factors: # Calculate the quantiles quarts = tapply(gdf$tt, list(gdf$Runway, gdf$OnHour), FUN=quantile, na.rm = TRUE) This does not work: > quarts 04L 04R 15R 22L 22R 27 32 33L 33R 0 NULL Numeric,5 NULL Numeric,5 NULL Numeric,5 NULL Numeric,5 NULL 1 NULL Numeric,5 NULL Numeric,5 NULL NULL NULL Numeric,5 NULL 2 NULL NULL NULL Numeric,5 NULL NULL NULL NULL NULL 3 NULL NULL NULL NULL NULL NULL...
2019 Jan 02
4
[lit] check-all hanging
...t the > 90% completion stage and I'm pretty >> sure all tests have been run and check-all is just waiting for >> lit/python to exit. I see a single python processing running, taking >> very little CPU time. An strace of that process shows this: >> >> select(0, NULL, NULL, NULL, {0, 50000}) = 0 (Timeout) >> select(0, NULL, NULL, NULL, {0, 50000}) = 0 (Timeout) >> select(0, NULL, NULL, NULL, {0, 50000}) = 0 (Timeout) >> select(0, NULL, NULL, NULL, {0, 50000}) = 0 (Timeout) >> select(0, NULL, NULL, NULL, {0, 50000}) = 0 (Timeout) >>...
2008 Feb 12
3
regular expression for na.strings / read.table
...ot;test.txt") - then replace all fields containing a * with NA in applying the following function to the object DATA: DATA_cleaned<-apply(DATA,c(1,2),function(x){if(length(grep("\\*",x,value=TRUE))==1){x<-NA}}) DATA_cleaned X1 X.789 LNM. X78 X56 X89 X56.1 X100 [1,] NULL NULL NULL NULL NULL NULL NULL NULL [2,] NULL NULL NULL NULL NULL NULL NULL NULL [3,] NULL NULL NULL NULL NULL NULL NULL NA [4,] NULL NULL NULL NULL NULL NA NULL NULL [5,] NULL NULL NULL NULL NA NULL NULL NULL [6,] NULL NULL NULL NULL NULL NULL NULL NA [7,] NULL NULL NA NULL...
2005 Oct 17
1
Java Error - 4.1 - JDK 1.3.1_02
...o get this to run by installing the Oracle patch from metalink. A user is now approaching me with an error that has appeared during compilation after going from RedHat7.3 -> CentOS4.1 The error is error: compiler message file broken: key=compiler.err.sun.io.MalformedInputException arguments=null, null, null, null, null, null, null error: compiler message file broken: key=compiler.err.sun.io.MalformedInputException arguments=null, null, null, null, null, null, null error: compiler message file broken: key=compiler.err.sun.io.MalformedInputException arguments=null, null, null, null, nul...
2018 Jan 22
3
What does this mean? select(1, [0], , NULL, {60, 0}) = 0 (Timeout)
...ors closely before. I added this (https://rsync.samba.org/issues.html) rsync-debug.sh script with strace of 100. But I have no idea how to interper this output. I guess between 00:55:41 and 03:06:47 nothing is happening? And then some timeout is generated? What does this 'select(1, [0], [], NULL, {60, 0}) = 0 (Timeout)' mean? Commandline =========== rsync -avH --del --rsync-path=/usr/local/sbin/rsync-debug.sh --one-file-system --exclude-from=/home/backup/excluded-dirs --include-from=/home/backup/included-dirs --timeout=0 --ignore-errors --numeric-ids -e "ssh -o Compressi...
2009 Jun 12
1
SAMBA+PDC+Mysql authentication Backend
...icar usuarios passdb backend = mysql:mysql mysql:mysql host = localhost mysql:mysql user = samba mysql:mysql password = mysql:mysql database = samba_auth mysql:fullname column = nt_fullname: mysql:domain column = 'multi': mysql:lanman pass column = NULL: mysql:nt pass column = NULL: mysql:plain pass column = plain_pw: mysql:unknown_3 column = NULL mysql:sid column = user_sid mysql:nt username column = nt_username #mysql:nt pass smb passwd file = /etc/samba/private/smbpasswd #Fin de Autenticacion de Usuarios #Para PDC [netlogon] p...
2007 Nov 07
0
14 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_interpret.h libswfdec/swfdec_net_stream.c libswfdec/swfdec_script.c libswfdec/swfdec_sprite_movie.c libswfdec/swfdec_tag.c libswfdec/swfdec_text_field_movie.c
...PUBLIC API ***/ gboolean @@ -230,9 +237,16 @@ swfdec_script_new_from_bits (SwfdecBits *bits, const char *name, guint version) * DefineFunction and friends override this */ script->flags = SWFDEC_SCRIPT_SUPPRESS_ARGS; - buffer = swfdec_bits_get_buffer (&org, -1); - if (buffer == NULL) + if (!swfdec_script_foreach_internal (bits, validate_action, script)) { + swfdec_script_unref (script); + return NULL; + } + len -= swfdec_bits_left (bits) / 8; + if (len == 0) { buffer = swfdec_buffer_new (); + } else { + buffer = swfdec_bits_get_buffer (&org, len); + }...
2014 Jul 26
1
Rejecting secure audio stream without encryption details - when using ws clients and Kamailio integration
...defaultuser: 660 fullcontact: sip:660 at PU.BL.IC.IP:5060 regserver: useragent: lastms: 0 host: dynamic type: friend context: default deny: 0.0.0.0/0.0.0.0 permit: PU.BL.IC.IP secret: NULL md5secret: NULL remotesecret: NULL transport: NULL dtmfmode: NULL directmedia: NULL nat: force_rport,comedia callgroup: NULL pickupgroup: NULL language: NULL disallow: NULL allow: NULL...
2018 Jan 22
0
What does this mean? select(1, [0], , NULL, {60, 0}) = 0 (Timeout)
...ed this > (https://rsync.samba.org/issues.html) rsync-debug.sh script with strace > of 100. But I have no idea how to interper this output. > > I guess between 00:55:41 and 03:06:47 nothing is happening? And then > some timeout is generated? What does this 'select(1, [0], [], NULL, {60, > 0}) = 0 (Timeout)' mean? > > > > > > Commandline > =========== > rsync -avH --del --rsync-path=/usr/local/sbin/rsync-debug.sh > --one-file-system --exclude-from=/home/backup/excluded-dirs > --include-from=/home/backup/included-dirs --timeout=0 -...
2005 Mar 14
1
Fwd: [Cooker] Re: Configure Xen in Mandrake 10.2 cooker
...e a 4 IDE channels (2 standard channels, 2 ATA100) asus A7V Motherboard, with ATA133 HD (hde) and 2 CD/DVD reader on ATA66 channels.. My dmesg looks very strange (I''m running a mandrake-test version, so this could be the reason): ULL>28 devfs_mk_dev: could not append to parent for <NULL>29 devfs_mk_dev: could not append to parent for <NULL>30 devfs_mk_dev: could not append to parent for <NULL>31 devfs_mk_dev: could not append to parent for <NULL>32 Stallion Multiport Serial Driver: version 5.6.0 STALLION: failed to register serial board device devfs_mk_dev: co...
2012 Mar 15
6
Error running apps from network share
...esfully. Apps are located on windows server so I mounted that folder under drive M so I can run them using Wine. One aplication reported this problem: System Error &H80070078 Log: fixme:advapi:RegisterTraceGuidsW (0x7777d2d7, 0x77799250, {bda92ae8-9f11-4d49-ba1d-a4c2abca692e}, 1, 0x33fab8, (null), (null), 0x77799258,): stub fixme:advapi:RegisterTraceGuidsW (0x7777d2d7, 0x77799250, {bda92ae8-9f11-4d49-ba1d-a4c2abca692e}, 1, 0x33e8f0, (null), (null), 0x77799258,): stub fixme:reg:RegOpenUserClassesRoot (0x60, 0x0, 0x2000000, 0x33f930) semi-stub fixme:actctx:FindActCtxSectionGuid 00000001 (nul...
2003 Jul 20
1
rsync on cygwin is hanging
...ep.exe", 0xbffffa20) = -1 ENOENT (No such file or directory) lstat64("wudnld20.tmp", 0xbffffa20) = -1 ENOENT (No such file or directory) mkdir("wudnld20.tmp", 040700) = 0 lstat64("wudnld20.tmp", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 time(NULL) = 1058644307 utime("wudnld20.tmp", [2003/07/19-15:51:47, 2002/01/25-01:17:08]) = 0 lchown32(0x8074940, 0x220, 0x201) = 0 write(1, "wudnld20.tmp/\n", 14) = 14 select(8, [7], [4], NULL, {60, 0}) = 1 (out [4], left {60, 0}) write(4,...
2010 Mar 12
7
sqldf not joining all the fields
...blank.lines.skip = TRUE, comment.char = "#", allowEscapes = FALSE, flush = FALSE, fileEncoding = "", encoding = "unknown") x_data prochi prescribed_date dataMonth item_code res_seqno quantity directions CAO0000713 22/06/2001 NULL 842752 NULL 60 1/D CAO0000713 28/04/2000 NULL 7800 NULL 100G A/TD CAO0000713 10/04/2000 NULL 842652 NULL 60 1/D CAO0000713 03/07/2000 NULL 842652 NULL 60 1/D CAO0000713 09/01/2001...
2004 Dec 14
3
Problems with app_realtime
...Asterisk still reports them as registered, even though the registration seconds are only 200. Asterisk Ver: CVS HEAD 12/1/2004 Layout of sip_buddies: mysql> describe sip_buddies; +----------------+---------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +----------------+---------------+------+-----+---------+----------------+ | uniqueid | int(11) | | PRI | NULL | auto_increment | | name | varchar(30) | | UNI | | | | accountcode | varchar(30) | YES...
2009 Aug 12
0
Problem with Linux x86_64 RODBC and Netezza (PR#13889)
Full_Name: Kenneth Cater Version: 2.9.1 OS: Linux x86_64 Submission from: (NULL) (171.159.192.10) It appears that R closes my connection to the Netezza device before the Netezza has completed its return of data, below are two files clean_test.log which tracks the systems call made when running the test.r file, and clean_test.out which is the output generated when test.r is e...
2007 Jan 31
0
Branch 'interpreter' - 3 commits - libswfdec/js libswfdec/swfdec_script.c
...t8 *data, guint len) { guint32 amount, value; @@ -1414,6 +1443,54 @@ swfdec_action_target_path (JSContext *cx return JS_TRUE; } +static JSBool +swfdec_action_define_local (JSContext *cx, guint action, const guint8 *data, guint len) +{ + const char *name; + + if (cx->fp->callobj == NULL) { + SWFDEC_ERROR ("FIXME: no local scope"); + return JS_FALSE; + } + name = swfdec_js_to_string (cx, cx->fp->sp[-2]); + if (name == NULL) + return JS_FALSE; + if (!JS_SetProperty (cx, cx->fp->callobj, name, &cx->fp->sp[-1])) + return JS_FALSE; + cx-...
2016 Nov 02
1
MediaWriter & Nouveau
Pan Bříza, to se stane, když Custom image - Pick a file from your drives(s) ... nouveau 0000:02:00.0: fifo: DMA_PUSHER - ch 5 [mediawriter[20975]] get 0020171c34 put 00201746ec ib_get 00000017 ib_put 00000018 state 8000a32c (err: INVALID_CMD) push 00406040 nouveau 0000:02:00.0: gr: DATA_ERROR 00000004 [INVALID_VALUE] nouveau 0000:02:00.0: gr: 00100000 [] ch 5 [001f7bd000 mediawriter[20975]] subc 5
2007 Aug 09
1
usage of each field
...all, From the web, I can find a table scheme of sipusers for ARA using. However, I can't find any meaning of each field, especially for the field regserver which is new in the table. Can any tell me more detail about the usage of each field? CREATE TABLE `sip_buddies` ( `id` int(11) NOT NULL auto_increment, `name` varchar(80) NOT NULL default '', `host` varchar(31) NOT NULL default '', `nat` varchar(5) NOT NULL default 'no', `type` enum('user','peer','friend') NOT NULL default 'friend', `accountcode` varchar(20) default NULL,...
2004 Sep 21
2
2.6.2 rsync --daemon is not working for me
Hi! I'm unable to write with remote rsync in daemon mode. ********* My configuration: rsync 2.6.2 Linux 2.4.20-alt16-up (ALTLinux www.altlinux.org) (There is owl-patch in ALTLinux-kernel) ========== /etc/rsyncd.conf ============= log file = /var/log/rsync [routers] comment = Our Backups path = /mnt/backup/routers uid = archiver gid = archiver use chroot = true read only = false list = true