search for: 23431

Displaying 4 results from an estimated 4 matches for "23431".

Did you mean: 2341
2007 Jun 16
3
dovecot under attack
...igure out what they are trying to do, and if I should be concerned. I am running dovecot version 0.99.14 on Fedora Core 4. It appears that my dovecot server is under attack. This morning in my system e-mail I saw this: dovecot: Authentication Failures: rhost= : 23431 Time(s) adm: 33 Time(s) bin: 33 Time(s) mail: 33 Time(s) mysql: 21 Time(s) nobody: 15 Time(s) news: 14 Time(s) operator: 8 Time(s) sshd: 2 Time(s) Unknown Entries: check pa...
2006 Feb 18
0
rxml with xsl
hi i want to display the content of an rxml file with xsl stylesheet how can i do it thanks -- Posted via http://www.ruby-forum.com/.
2010 Jul 02
0
Wine release 1.2-rc6
...on't close after major update 23381 Newsbin Pro MOTD dialog fails to dismiss correctly 23389 HEAP_ValidateInUseArena memory tail overwritten when updating Wine 23419 winedbg 'bt all' doesn't work 23425 unimplemented function KERNEL32.dll.QueryMemoryResourceNotification 23431 provide a stub for ntdll.NtSystemDebugControl() (Ollydbg 2.x) 23432 Stranded II does not start 23443 Font in some lists displayed incorrectly when screen resolution > 96 23452 Some 16-bit Windows NE executables are not recognized 23465 eVoice Player: installer does not complete ---...
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.