search for: 213

Displaying 20 results from an estimated 1364 matches for "213".

Did you mean: 2013
2008 Oct 14
6
Doing a Task Without Using a For Loop
Assume that I have the dataframe "data1", which is listed at the end of this message. I want count the number of lines that each person has for each year. For example, the person with ID=213 has 15 entries (NinYear) for 1953. The following bit of code calculates NinYear: for (i in 1:length(data1$ID)) { data1$NinYear[i] <- length(data1[data1$Year==data1$Year[i] & data1$ID==data1$ID[i],1]) } This seems to work but is horribly slow (some files I am working with have over 50...
2007 Sep 11
2
Asterisk 1.4.11, res_features.so, SegFault
...6 "\203?0\215e?[^\211?_??\220?\200", 0x8047890 "?r??p?\027\b\002", 0x100 <Address 0x100 out of bounds>, 0x81a8830 "?", 0x1b <Address 0x1b out of bounds>, 0xfec8c640 "", 0x0, 0xfec8c640 "", 0xfeba2000 "", 0xfec88000 "\034\213\f", 0x0, 0x811d611 "*CLI> ", 0x8151566 "", 0x80476b4 "?v\004\b?\004??@???@\206???v\004\bD???\027?\021\b\fw\004\b?v\004\b", 0xfec5a75a "\203?\004\205?t,P?9]", 0xfec8c640 "", 0xfeba2000 "", 0xfec88000 "\034\213\f", 0x80...
2009 Oct 24
2
ifelse
When I run this code from an R-script: ddd = 360 + round ( atan2(-u,-v) / d2r ) print(class(ddd)) print(ddd) ifelse ( ddd>360, ddd-360, ddd ) print(ddd) I get this output: [1] "numeric" [1] 461 213 238 249 251 [1] 461 213 238 249 251 Why does ifelse not change the 461 to 101? I recreated the vector ddd and ran the same ifelse code and it did work as expected. > ddd <- c(461, 213, 238, 249, 251) > print(class(ddd)) [1] "numeric" > print(ddd) [1] 461 213 238 249 25...
2003 Feb 21
1
2.2.7a - lot of open/close calls
...;me trying to track down a performance problem as I posted yesterday and as I increase the log level I've noticed this... [2003/02/21 08:19:06, 2] smbd/open.c:open_file(245) dm389245 opened file mr00257.bat read=Yes write=No (numopen=1) [2003/02/21 08:19:06, 2] smbd/close.c:close_normal_file(213) dm389245 closed file mr00257.bat (numopen=0) [2003/02/21 08:19:06, 2] smbd/open.c:open_file(245) dm389245 opened file mr00257.bat read=Yes write=No (numopen=1) [2003/02/21 08:19:06, 2] smbd/close.c:close_normal_file(213) dm389245 closed file mr00257.bat (numopen=0) [2003/02/21 08:19:06, 2] s...
2008 Nov 13
1
Domain Member Server problems
...t: "192.168.0.1, *" Administrator's password: [2008/11/13 17:43:41, 3] libsmb/namequery.c:(1489) get_dc_list: preferred server list: "192.168.0.1, *" [2008/11/13 17:43:41, 3] libads/ldap.c:(394) Connected to LDAP server 192.168.0.1 [2008/11/13 17:43:41, 3] libads/sasl.c:(213) ads_sasl_spnego_bind: got OID=1 2 840 48018 1 2 2 [2008/11/13 17:43:41, 3] libads/sasl.c:(213) ads_sasl_spnego_bind: got OID=1 2 840 113554 1 2 2 [2008/11/13 17:43:41, 3] libads/sasl.c:(213) ads_sasl_spnego_bind: got OID=1 2 840 113554 1 2 2 3 [2008/11/13 17:43:41, 3] libads/sasl.c:(213) a...
2006 Aug 12
4
Several files's checksum change without reason
...compare time: Sat Aug 12 05:35:14 2006 host: server scan config: server (abcdefg) log file: no log file generated, see system log. base database: 56 compare database: 57 [211][server][cmp][/usr/bin][mtime][Sun Aug 6 04:02:20 2006][Sat Aug 12 04:02:22 2006] [213][server][cmp][/usr/bin][ctime][Sun Aug 6 04:02:20 2006][Sat Aug 12 04:02:22 2006] [204][server][cmp][/usr/bin/afs5log][checksum][b838bb6106250fdfd95ae8a7dc7fa95b8f762df4][a4c817dd8ca12449dc1a8bdf7f972c19aa3ffd7b] [206][server][cmp][/usr/bin/afs5log][inode][22423][22422] [213][server][cmp][/usr/bin...
2002 Aug 29
1
weird loop selecting print driver from w2k client w/ samba 2.2.5 w/ patches
...pen_file(233) jarboed opened file W32X86/2/KcNtUI.dll read=Yes write=No (numopen=2) [2002/08/28 11:45:38, 2] smbd/open.c:open_file(233) jarboed opened file W32X86/2/KMKM5530.MDX read=Yes write=No (numopen=3) [2002/08/28 11:45:38, 2] smbd/open.c:open_file(233) jarboed opened file W32X86/2/KC3D0213.DAT read=Yes write=No (numopen=4) [2002/08/28 11:45:38, 2] smbd/open.c:open_file(233) jarboed opened file W32X86/2/KMAGFA1.FDF read=Yes write=No (numopen=5) [2002/08/28 11:45:38, 2] smbd/open.c:open_file(233) jarboed opened file W32X86/2/KCPDLPS.DLL read=Yes write=No (numopen=6) [2002/08/28 11:...
2010 Jun 29
3
Find a way to block brute force attacks.
Hello list. I'm trying to find a way to block any ip that tries to login more than three times with the wrong password and try to log in three different extensions. For I have suffered some brute force attacks on my asterisk in the morning period. The idea would be: Any ip with three attempts without success to log into an extension is blocked. Is there any way to accomplish this directly
2007 Jan 03
3
Asterisk Core Dump in app_queue - Anyone seen?
...6f7250 out of bounds>) at cli.c:1364 argv = {0x8137cc0 "reload", 0x8137cc7 "app_queue.so", 0x0, 0x8227d68 " ;\"\b????: 2007-01-03 15:17:39.165755\r\n", 0xbddfa49c "h???????h}\"\bh}\"\b&", 0xb7dc3fea "?\234\211<$????\213]?\213u?\213}?\211?]?????U\211?\203?(\211]?\211u?\211}???C??\201??\237\n", 0xb7e6fa00 "", 0x8227d68 " ;\"\b????: 2007-01-03 15:17:39.165755\r\n", 0xb7e6dff4 "\034?\020", 0x26 <Address 0x26 out of bounds>, 0x27 <Address 0x27 out of bounds>, 0x...
2011 May 03
1
Compiling Rgraphiz on Windows 7 64bit with R-2.13.0
Hi all, I am trying to compile Rgraphiz on Windows 7 64bit with R-2.13.0. I have installed Rtools213.exe from [1]. The 64bit packages in [2] provided me with the 64 bit version of graphviz. After intalling the binary version Rgraphviz 1.30 (in 32bit) it complains (as expected) that: > library(Rgraphviz) Error: package 'Rgraphviz' is not installed for 'arch=x64' I don't...
2011 Oct 12
1
Error in Rcpp/inline (Windows XP)
...>> setting environment variables: PKG_LIBS = C:/Program Files/R/R-2.13.0/library/Rcpp/lib/i386/libRcpp.a >> LinkingTo : Rcpp CLINK_CPPFLAGS = -I"C:/Program Files/R/R-2.13.0/library/Rcpp/include" >> Program source : ...... Compilation argument: C:/PROGRA~1/R/R-213~1.0/bin/i386/R CMD SHLIB file6d55374d.cpp 2> file6d55374d.cpp.err.txt g++ -I"C:/PROGRA~1/R/R-213~1.0/include" -I"C:/Program Files/R/R-2.13.0/library/Rcpp/include" -O2 -Wall -c file6d55374d.cpp -o file6d55374d.o g++ -shared -s -static-libgcc -o file6d55374d.dll tmp.d...
2010 Oct 11
1
grep triggering error on unicode character
...a file on the fly that contains the following text: XXX?? [email clients may display this differently -- the string is three X's followed by two instances of the letter a with an acute accent] I read the file with: X <- readLines(FILENAME) In this instance, the text of interest is on line 213. When I examine line 213, it reads: XXX\xe1\xe1 This makes sense because the unicode mapping for ? [a-acute] is U+00E1. The problem arises when I attempt to manipulate the text in the file. For example: > grep("XXX", X[213]) integer(0) Warning message: In grep("XXX",...
2014 Mar 13
0
Any Help ? user defined application .module load Crash Asterisk 11.5.1 app_confbridge.c
...inside count_exec == data is at address:[0xbf918b64] data:[nnel)\n", maxlen=<value optimized out>, format=0xbf9175c0 "\374 -- \n======== inside count_exec == data is at address:[%p] data:[%s] ", '=' <repeats 11 times>, "\n", args=0xbf917724 "d\213\221\277\376\377\377\377\213\261\065\b") at vsnprintf.c:120 #3 0x081a0f94 in __ast_str_helper (buf=0xbf9176a8, max_len=0, append=0, fmt=0xbf9175c0 "\374 -- \n======== inside count_exec == data is at address: [%p] data:[%s] ", '=' <repeats 11 times>, "\n", ap...
2010 Apr 26
2
Tapply.
...NA NA NA NA 11264402000 1 1982 236 NA NA 240 242 NA NA NA NA NA NA NA 11264402000 0 1983 NA 247 NA NA NA NA NA 205 NA NA NA NA 11264402000 1 1983 NA 247 NA NA NA NA NA NA NA 225 NA NA 11264402000 0 1986 NA NA NA 240 NA NA NA 213 NA NA NA NA 11264402000 0 1987 241 NA NA NA NA 218 NA NA 235 243 240 NA 11264402000 1 1987 NA NA NA NA NA 218 NA NA 235 243 240 NA 11264402000 3 1987 NA NA NA NA NA 218 NA NA 235 243 240 NA 11264402000 0 1988 238 246 249 NA 244 213 212...
2002 Apr 10
8
[Bug 213] -SNAP-20020410 fails to compile under AIX 4.3.3
http://bugzilla.mindrot.org/show_bug.cgi?id=213 ------- Additional Comments From stevesk at pobox.com 2002-04-11 08:57 ------- can you provide cpp output from the file (e.g., cc -E) for the tmp[] definition? can someone with some AIX knowledge help with this? ------- You are receiving this mail because: ------- You are the assignee for...
2017 May 04
2
Xen package security updates for jessie 4.4, XSA-213, XSA-214
Ian Jackson writes ("64bit PV guest breakout [XSA-213]"): > Source: xen > Version: 4.4.1-9 > Severity: important > Tags: security upstream fixed-upstream > > See > https://xenbits.xen.org/xsa/advisory-213.html Ian Jackson writes ("grant transfer allows PV guest to elevate privileges [XSA-214]"): > Source: xen...
2007 Jul 03
2
ADS Join on Windows 2008 domain not working in 3.0.25b?
....c:ads_connect(394) Connected to LDAP server 192.168.x.x [2007/07/04 08:02:12, 4] libads/ldap.c:ads_current_time(2414) time offset is 0 seconds [2007/07/04 08:02:12, 4] libads/sasl.c:ads_sasl_bind(521) Found SASL mechanism GSS-SPNEGO [2007/07/04 08:02:12, 3] libads/sasl.c:ads_sasl_spnego_bind(213) ads_sasl_spnego_bind: got OID=1 2 840 48018 1 2 2 [2007/07/04 08:02:12, 3] libads/sasl.c:ads_sasl_spnego_bind(213) ads_sasl_spnego_bind: got OID=1 2 840 113554 1 2 2 [2007/07/04 08:02:12, 3] libads/sasl.c:ads_sasl_spnego_bind(213) ads_sasl_spnego_bind: got OID=1 2 840 113554 1 2 2 3 [2007/07...
2015 Apr 13
2
Availability of the 1.1.1 stable version
...of bounds>, len=-188613428, pcm=0x6e80016085efd57, frame_size=44037315, decode_fec=58716895) at src/opus_decoder.c:384 #1 0x00000000008009c0 in opus_decode_frame (st=0x712357d0, data=0x7effff9ab72d "~?`\\?K\005??y?w+g~?S2\025?\036T?\002x??h!??? \220\233\066s?\030#gb\rn?rF\005Q?\213;?`\207$O?(m\222=9??/h??t??E?w? \237\"\206z\005\213?u at e", len=88, pcm=0x7effff9a6a80, frame_size=640, decode_fec=0) at src/opus_decoder.c:319 #2 0x0000000000801be1 in opus_decode_native (st=0x712357d0, data=0x7effff9ab72d "~?`\\?K\005??y?w+g~?S2\025?\036T?\002x??h!??? \220\...
2017 May 04
2
Bug#861660: Xen package security updates for jessie 4.4, XSA-213, XSA-214
Moritz Muehlenhoff writes ("Re: Xen package security updates for jessie 4.4, XSA-213, XSA-214"): > On Thu, May 04, 2017 at 05:59:18PM +0100, Ian Jackson wrote: > > Should I put jessie-security in the debian/changelog and dgit push it > > (ie, from many people's pov, dput it) ? > > Yes, the distribution line should be jessie-security, but please send &...
2005 May 21
5
Multiple Internet connections with Dynamic IP addresses
Cristian and Alex, Both of you have asked about this. A routing table can only have one default route so when the second link comes up, adding the second default route will fail. So in general, Shorewall can only reliably detect the gateway for P-T-P connections which is what the CVS current code does. -Tom -- Tom Eastep \ Nothing is foolproof to a sufficiently talented fool Shoreline, \