- 01 10月, 2012 1 次提交
-
-
由 alanb 提交于
Reviewed-by: lancea, darcy, ulfzibis, iris, naoto, dholmes
-
- 28 9月, 2012 1 次提交
-
-
由 peytoia 提交于
Reviewed-by: naoto, okutsu
-
- 19 9月, 2012 1 次提交
-
-
由 dxu 提交于
7195933: There is incorrect link to "Info-ZIP Application Note 970311" in doc page of Package java.util.zip Summary: Correct a java doc link in java.util.zip package page Reviewed-by: chegar, lancea, sherman Contributed-by: dan.xu@oracle.com
-
- 08 9月, 2012 1 次提交
-
-
由 coffeys 提交于
Reviewed-by: naoto
-
- 01 9月, 2012 1 次提交
-
-
由 dxu 提交于
Summary: Clean-up JDK Build Warnings in java.util, java.io Packages Reviewed-by: smarks, darcy, khazra, dholmes, forax, dl, andrew, aph, omajid, ulfzibis, christos, mduigou
-
- 25 8月, 2012 1 次提交
-
-
由 mchung 提交于
Reviewed-by: alanb, dholmes, dsamersoff, sspitsyn, psandoz
-
- 22 8月, 2012 1 次提交
-
-
由 naoto 提交于
4609153: Provide locale data for Indic locales 5104387: Support for gl_ES locale (galician language) 6337471: desktop/system locale preferences support 7056139: (cal) SPI support for locale-dependent Calendar parameters 7058206: Provide CalendarData SPI for week params and display field value names 7073852: Support multiple scripts for digits and decimal symbols per locale 7079560: [Fmt-Da] Context dependent month names support in SimpleDateFormat 7171324: getAvailableLocales() of locale sensitive services should return the actual availability of locales 7151414: (cal) Support calendar type identification 7168528: LocaleServiceProvider needs to be aware of Locale extensions 7171372: (cal) locale's default Calendar should be created if unknown calendar is specified Summary: JEP 127: Improve Locale Data Packaging and Adopt Unicode CLDR Data (part 1 w/o packaging changes. by Naoto Sato and Masayoshi Okutsu) Reviewed-by: erikj, sherman, peytoia
-
- 19 8月, 2012 1 次提交
-
-
由 alanb 提交于
Summary: Reduce dependency to PropertyChangeListener and PropertyChangeEvent. Also add basic test coverage. Reviewed-by: dcubed, dsamersoff, mchung
-
- 10 8月, 2012 1 次提交
-
-
由 sherman 提交于
Summary: fixed the incorrect implementation in expr(...) Reviewed-by: psandoz, alanb
-
- 04 8月, 2012 1 次提交
-
-
由 sherman 提交于
Summary: re-implemented getBytesRead/Writtten() at java level Reviewed-by: andrew, alanb
-
- 03 7月, 2012 1 次提交
-
-
由 smarks 提交于
Reviewed-by: forax, khazra, smarks Contributed-by: NMani Sarkar <sadhak001@gmail.com>
-
- 27 6月, 2012 1 次提交
-
-
由 dholmes 提交于
Reviewed-by: dholmes, forax, alanb Contributed-by: NDoug Lea <dl@cs.oswego.edu>
-
- 19 6月, 2012 1 次提交
-
-
由 okutsu 提交于
Reviewed-by: naoto
-
- 14 6月, 2012 1 次提交
-
-
由 mduigou 提交于
Summary: several minor optimizations to hashing methods used by hash map classes Reviewed-by: dholmes
-
- 07 6月, 2012 2 次提交
- 04 6月, 2012 1 次提交
-
-
由 littlee 提交于
Reviewed-by: dholmes, mduigou
-
- 01 6月, 2012 1 次提交
-
-
由 mduigou 提交于
Summary: If the key to be inserted into a HashMap is null and the table needs to be resized as part of the insertion then addEntry will try to recalculate the hash of a null key. This will fail with an NPE. Reviewed-by: darcy
-
- 31 5月, 2012 1 次提交
-
-
由 mduigou 提交于
Summary: All of the hashing based Map implementations: HashMap, Hashtable, LinkedHashMap, WeakHashMap and ConcurrentHashMap are modified to use an enhanced hashing algorithm for string keys when the capacity of the hash table has ever grown beyond 512 entries. The enhanced hashing implementation uses the murmur3 hashing algorithm along with random hash seeds and index masks. These enhancements mitigate cases where colliding String hash values could result in a performance bottleneck. Reviewed-by: alanb, forax, dl
-
- 12 5月, 2012 1 次提交
-
-
由 mduigou 提交于
Summary: Avoids mostly benign but sometimes expensive race condition on initialization of UUID.numberGenerator which is used by UUID.randomUUID() Reviewed-by: alanb, chegar
-
- 10 5月, 2012 1 次提交
-
-
由 khazra 提交于
Summary: Insert null argument check in AbstractPreferences.remove() Reviewed-by: dholmes, chegar, alanb
-
- 09 5月, 2012 1 次提交
-
-
由 sherman 提交于
7014640: To add a metachar \R for line ending and character classes for vertical/horizontal ws \v \V \h \H Summary: added propsoed constructs Reviewed-by: alanb
-
- 08 5月, 2012 1 次提交
-
-
由 dholmes 提交于
Summary: Perform class.getField inside a doPrivileged block Reviewed-by: chegar, psandoz
-
- 03 5月, 2012 1 次提交
-
-
由 jgish 提交于
Reviewed-by: mduigou, dholmes, alanb
-
- 18 4月, 2012 1 次提交
-
-
由 khazra 提交于
Summary: Minor code changes to cleanup warnings in java.util.* Reviewed-by: mduigou, naoto, smarks Contributed-by: NRemi Forax <forax@univ-mlv.fr>
-
- 17 4月, 2012 1 次提交
-
-
由 jmelvin 提交于
Summary: On Mac OS X, align system property "os.arch" with Apple legacy JDKs. Also, improve os.name string matching by using .contains() method instead of .startsWith(). This fix spans multiple repositories. Reviewed-by: dcubed, phh, ohair, katleman
-
- 13 4月, 2012 1 次提交
-
-
由 sherman 提交于
Summary: Updated to throw IAE instead. Reviewed-by: lancea
-
- 10 4月, 2012 1 次提交
-
-
由 littlee 提交于
Reviewed-by: dholmes, mduigou Contributed-by: NSean Zhou <zhouyx@linux.vnet.ibm.com>, Ulf Zibis <ulf.zibis@gmx.de>, David Holmes <david.holmes@oracle.com>
-
- 28 3月, 2012 1 次提交
-
-
由 naoto 提交于
Reviewed-by: chegar, dholmes, mduigou
-
- 22 3月, 2012 1 次提交
-
-
由 naoto 提交于
Reviewed-by: okutsu
-
- 15 3月, 2012 1 次提交
-
-
由 yhuang 提交于
Reviewed-by: naoto
-
- 12 3月, 2012 1 次提交
-
-
由 coffeys 提交于
Reviewed-by: alanb, sherman
-
- 07 3月, 2012 1 次提交
-
-
由 michaelm 提交于
Reviewed-by: jjh, alanb, dholmes, anthony, ohrstrom, ksrini, jrose, weijun, smarks Contributed-by: NAlan Bateman <alan.bateman@oracle.com>, Alexander Potochkin <alexander.potochkin@oracle.com>, Alexander Zuev <alexander.zuev@oracle.com>, Andrew Brygin <andrew.brygin@oracle.com>, Artem Ananiev <artem.ananiev@oracle.com>, Alex Strange <astrange@apple.com>, Bino George <bino@apple.com>, Christine Lu <christine.lu@oracle.com>, David Katleman <david.katleman@oracle.com>, David Durrence <david_durrence@apple.com>, Dmitry Cherepanov <dmitry.cherepanov@oracle.com>, Greg Lewis <glewis@eyesbeyond.com>, Kevin Miller <kevin_m_miller@apple.com>, Kurt Miller <kurt@intricatesoftware.com>, Landon Fuller <landonf@plausiblelabs.com>, Leonid Romanov <leonid.romanov@oracle.com>, Loefty Walkowiak <loefty@apple.com>, Mark Reinhold <mark.reinhold@oracle.com>, Naoto Sato <naoto.sato@oracle.com>, Philip Race <philip.race@oracle.com>, Roger Hoover <rhoover@apple.com>, Scott Kovatch <scott.kovatch@oracle.com>, Sergey ByloKhov <sergey.bylokhov@oracle.com>, Mike Swingler <swingler@apple.com>, Tomas Hurka <tomas.hurka@oracle.com>
-
- 24 2月, 2012 1 次提交
-
-
由 coffeys 提交于
Reviewed-by: alanb, dholmes, mduigou
-
- 13 2月, 2012 1 次提交
-
-
由 smarks 提交于
Reviewed-by: alanb, chegar, lancea, smarks Contributed-by: NMani Sarkar <sadhak001@gmail.com>, Michael Barker <mikeb01@gmail.com>, Carl Jokl <carl.jokl@gmail.com>, Dinuk Weerasinghe <dinuksw@yahoo.com>, Markus Stoy <markus.stoy@timgroup.com>, Tom Anderson <tom.anderson@timgroup.com>
-
- 08 2月, 2012 1 次提交
-
-
由 darcy 提交于
Reviewed-by: sherman
-
- 07 2月, 2012 1 次提交
-
-
由 yhuang 提交于
Reviewed-by: naoto
-
- 30 1月, 2012 1 次提交
-
-
由 dl 提交于
Reviewed-by: chegar, dholmes
-
- 26 1月, 2012 1 次提交
-
-
由 peytoia 提交于
Reviewed-by: okutsu
-
- 24 1月, 2012 1 次提交
-
-
由 darcy 提交于
Reviewed-by: alanb
-