[2814] in java-interest

home help back first fref pref prev next nref lref last post

Re: Netscape .car file format?

daemon@ATHENA.MIT.EDU (Simon Spero)
Mon Oct 16 13:59:59 1995

Date: Mon, 16 Oct 1995 08:28:21 -0700 (PDT)
From: Simon Spero <ses@tipper.oit.unc.edu>
To: Arthur van Hoff <Arthur.Vanhoff@Eng.Sun.COM>
cc: Douglas Barnes <cman@communities.com>,
        java <java-interest@webrunner.neato.org>
In-Reply-To: <199510160610.XAA03777@jakarta.Eng.Sun.COM>


Talking about class load times; does the class loader issue requests for 
remote classes in serial, or does it ask for all the classes in this 
classes pool at once? It seems to be serialised, but I could be wrong.

Simon

----
(defun modexpt (x y n)  "computes (x^y) mod n"
  (cond ((= y 0) 1) 	((= y 1) (mod x n))
	((evenp y) (mod (expt (modexpt x (/ y 2) n) 2) n))
	(t (mod (* x (modexpt x (1- y) n)) n))))

-
Note to Sun employees: this is an EXTERNAL mailing list!
Info: send 'help' to java-interest-request@java.sun.com

home help back first fref pref prev next nref lref last post