Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(14) |
Jul
(21) |
Aug
(27) |
Sep
(35) |
Oct
(10) |
Nov
(26) |
Dec
(18) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(23) |
Feb
(4) |
Mar
(9) |
Apr
(9) |
May
(61) |
Jun
(51) |
Jul
(35) |
Aug
(33) |
Sep
(11) |
Oct
(70) |
Nov
(66) |
Dec
(109) |
2004 |
Jan
(21) |
Feb
(1) |
Mar
(10) |
Apr
(12) |
May
(14) |
Jun
(46) |
Jul
(31) |
Aug
(164) |
Sep
(51) |
Oct
(36) |
Nov
(36) |
Dec
(16) |
2005 |
Jan
(41) |
Feb
(31) |
Mar
(11) |
Apr
(15) |
May
(24) |
Jun
(42) |
Jul
(16) |
Aug
(13) |
Sep
(24) |
Oct
(64) |
Nov
(20) |
Dec
(6) |
2006 |
Jan
(39) |
Feb
(13) |
Mar
(19) |
Apr
(10) |
May
(12) |
Jun
(16) |
Jul
(2) |
Aug
(13) |
Sep
(13) |
Oct
(18) |
Nov
(6) |
Dec
(6) |
2007 |
Jan
(8) |
Feb
(51) |
Mar
(28) |
Apr
(5) |
May
(37) |
Jun
(20) |
Jul
(12) |
Aug
(22) |
Sep
(8) |
Oct
(24) |
Nov
(11) |
Dec
(7) |
2008 |
Jan
(33) |
Feb
(16) |
Mar
|
Apr
|
May
(2) |
Jun
(7) |
Jul
(4) |
Aug
(89) |
Sep
(141) |
Oct
(136) |
Nov
(81) |
Dec
(143) |
2009 |
Jan
(182) |
Feb
(100) |
Mar
(119) |
Apr
(91) |
May
(112) |
Jun
(32) |
Jul
(7) |
Aug
|
Sep
(4) |
Oct
(11) |
Nov
(5) |
Dec
(3) |
2010 |
Jan
(25) |
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2013 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
1
(7) |
2
(2) |
3
|
4
|
5
|
6
|
7
|
8
(4) |
9
(3) |
10
|
11
|
12
|
13
|
14
|
15
|
16
(1) |
17
(3) |
18
(2) |
19
(1) |
20
(1) |
21
|
22
|
23
|
24
|
25
|
26
|
27
(2) |
28
(6) |
29
(4) |
30
|
31
|
|
|
|
|
|
|
From: Alex Mizrahi <killerstorm@ne...> - 2004-10-08 20:55:06
|
hello how can i do method returining void in jfli new-class? in example i see declarations like ("setValueAt" "void" (:public :synchronized) however it isn't working - it says it cannot find package of void.. :void isn't working as well.. here is a backtrace: (ERROR "must supply package-qualified classname") 33: (JFLI::SPLIT-PACKAGE-AND-CLASS "void") 34: (JFLI::CANONIC-CLASS-SYMBOL "void") 35: (FIND-JAVA-CLASS "void") 36: (JFLI::FIND-JAVA-CLASS-IN-MACRO "void") 37: ((FLET JFLI::PROCESS-METHOD-DEF) ("doGet" "void" :PUBLIC ((REQ "javax.servlet.http.HttpServletRequest") with best regards, Alex 'killer_storm' Mizrahi. |
From: Peter Graves <peter@ar...> - 2004-10-08 20:00:59
|
On Fri, 8 Oct 2004 at 20:38:11 +0200, Andras Simon wrote: > Perhaps this is a good time to ask why you decided to adapt closette, > and not pcl (or its CMUCL/SBCL version). Just curious. Well, it was a long time ago, and there was really no hope of getting ABCL to run PCL at that time. I don't think the CMUCL and SBCL versions of PCL are really very portable, despite the name. Closette had the advantage of being much smaller and more approachable (less than 2000 lines vs. around 20,000 lines for PCL). And at the time I started working with Closette I hadn't really decided to do a full ANSI CL, so I was even entertaining the crazy idea that Closette might end up being enough of a CLOS by itself. In the long term I think most of the Closette code will go away and ABCL will end up with a more-or-less home-grown CLOS implementation, but in the early days Closette provided a useful outline for the code and a rough framework to build on. Performance is terrible, but that's mostly my fault. -Peter |
From: Andras Simon <asimon@ma...> - 2004-10-08 18:38:21
|
On Fri, 8 Oct 2004, Peter Graves wrote: > On Fri, 24 Sep 2004 at 16:15:26 +0200, Andras Simon wrote: >> (defun listener-eval (&rest x)) >> >> (let ((*print-circle* t)) >> (pprint (list 'apply >> '((listener-eval "(setq a (backtrace-as-list)) ") >> "COMMON-LISP-USER" >> 123)))) >> >> Debugger invoked on condition of type TYPE-ERROR: >> The value #S(XP::XP-STRUCTURE :BASE-STREAM #<STREAM @ #x17cd15d> :LINEL 70 .....) is not of type character output stream. >> >> I would've liked to trigger the bug with a simpler case but this is >> how far I could get. > > This morning I checked in new versions of print.lisp and pprint.lisp > that fix this bug. Thanks Peter, this fix lets me pretty print frames in backtraces in slime, which makes them much more readable. > With these changes, ABCL in current CVS fails 114 out of 18159 tests in > the ANSI test suite, down from 164 failures out of 17942 tests two > weeks ago. Impressive figures! > Barring interrupts, my next project (starting today) will be to fix the > aforementioned awful CLOS slowness. Perhaps this is a good time to ask why you decided to adapt closette, and not pcl (or its CMUCL/SBCL version). Just curious. Andras |
From: Peter Graves <peter@ar...> - 2004-10-08 14:46:40
|
On Fri, 24 Sep 2004 at 16:15:26 +0200, Andras Simon wrote: > (defun listener-eval (&rest x)) > > (let ((*print-circle* t)) > (pprint (list 'apply > '((listener-eval "(setq a (backtrace-as-list)) ") > "COMMON-LISP-USER" > 123)))) > > Debugger invoked on condition of type TYPE-ERROR: > The value #S(XP::XP-STRUCTURE :BASE-STREAM #<STREAM @ #x17cd15d> :LINEL 70 .....) is not of type character output stream. > > I would've liked to trigger the bug with a simpler case but this is > how far I could get. This morning I checked in new versions of print.lisp and pprint.lisp that fix this bug. I've spent the last two weeks working on ABCL's printer (and pretty printer). One big change is that pprint.lisp is now loaded directly in boot.lisp. In previous versions, the pretty printer was autoloaded, in the hope of making startup faster, but that led to a number of other problems (including this particular bug), and it turned out that the startup cost is not very high after all. With these changes, ABCL in current CVS fails 114 out of 18159 tests in the ANSI test suite, down from 164 failures out of 17942 tests two weeks ago. The apparent hang in PRINT.CONS.RANDOM.2 (which I've commented out for now) is really due to ABCL's awful CLOS slowness and not to any issue with the test or what it's primarily testing; reducing N from 50 to 10 allows the test to finish without error on the same day it starts. There are still some printer-related test failures, mostly having to do with the pretty-printing of circular lists. Barring interrupts, my next project (starting today) will be to fix the aforementioned awful CLOS slowness. Thanks for your support. -Peter |