Hi guys ... What is Translation time and request time.

2010-09-15 Thread Pankaj D
What are these is JSP ...?

Translation time : is it the Time of translation or Time required for
translation ..?
Request time : Is it time of request or what ...?


Re: Hi guys ... What is Translation time and request time.

2010-09-15 Thread Pankaj D
NO ...  m a newbie  to java  just having a discussion with a friend ...

On Wed, Sep 15, 2010 at 10:06 PM, Antonio Petrelli 
antonio.petre...@gmail.com wrote:

 2010/9/15 Pankaj D pankaj66...@gmail.com:
  What are these is JSP ...?
 
  Translation time : is it the Time of translation or Time required for
  translation ..?
  Request time : Is it time of request or what ...?

 This is homework right?

 -
 To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
 For additional commands, e-mail: users-h...@tomcat.apache.org




Re: Hi Guys ... can some one tell what is hashcode in java

2010-09-15 Thread Pankaj D
What is DYH

On Wed, Sep 15, 2010 at 10:09 PM, Antonio Petrelli 
antonio.petre...@gmail.com wrote:

 DYH

 2010/9/15 Pankaj D pankaj66...@gmail.com:
  HI if someone can answer this query what is hash code in java ...is it
 some
  sort of memory location or address ...?
 
  Regards
  Pankaj
 

 -
 To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
 For additional commands, e-mail: users-h...@tomcat.apache.org




Re: Hi guys ... What is Translation time and request time.

2010-09-15 Thread Pankaj D
OK thankyou 

On Wed, Sep 15, 2010 at 10:11 PM, Antonio Petrelli 
antonio.petre...@gmail.com wrote:

 2010/9/15 Pankaj D pankaj66...@gmail.com:
  NO ...  m a newbie  to java  just having a discussion with a friend
 ...

 This is not a Java generic mailing list, here we discuss of problems
 about *Tomcat*, nothing else.
 Contact your local JUG, that may help you to find a tutorial, or
 simply google it.

 Don't ask random questions here, they make us nervous...

 Antonio

 -
 To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
 For additional commands, e-mail: users-h...@tomcat.apache.org




Re: Hi Guys ... can some one tell what is hashcode in java

2010-09-15 Thread Pankaj D
Thanks dude  .. .this is what i was looking for 

On Wed, Sep 15, 2010 at 10:13 PM, ramzi khlil ramzi.atv...@gmail.comwrote:

 HashCode is a value computed in such way to be unique as possible to
 improve
 performance while retrieving object in HashedCollections.
 If for example you have a HashMap, and didn't overrride hashCode() method
 all your objects will be in the same bucket resulting a slow execution
 while
 retrieving an object.
 But if you do provide an efficient implementation of hashCode() method your
 objects will be stored across many buckets and you look up for one of them,
 the api does calculate the hashCode of your object and then it selects the
 right bucket. After that we go through the bucket to find the needed
 object.

 On Wed, Sep 15, 2010 at 12:35 PM, Pankaj D pankaj66...@gmail.com wrote:

  HI if someone can answer this query what is hash code in java ...is it
 some
  sort of memory location or address ...?
 
  Regards
  Pankaj