- 24 1月, 2013 1 次提交
-
-
由 robm 提交于
Reviewed-by: darcy, forax, psandoz, dholmes, tbell
-
- 23 1月, 2013 2 次提交
- 21 1月, 2013 1 次提交
-
-
由 dl 提交于
8005311: Add Scalable Updatable Variables, DoubleAccumulator, DoubleAdder, LongAccumulator, LongAdder Reviewed-by: chegar, darcy, goetz
-
- 15 1月, 2013 1 次提交
-
-
由 naoto 提交于
Reviewed-by: okutsu, ohair
-
- 28 12月, 2012 1 次提交
-
-
由 chegar 提交于
Reviewed-by: chegar, forax, dholmes, dl Contributed-by: david.holmes@oracle.com, dl@cs.oswego.edu, chris.hegarty@oracle.com
-
- 20 12月, 2012 1 次提交
-
-
由 dl 提交于
Reviewed-by: chegar, mduigou
-
- 05 12月, 2012 1 次提交
-
-
由 mullan 提交于
Reviewed-by: mullan, mchung Contributed-by: jason.uh@oracle.com
-
- 04 12月, 2012 1 次提交
-
-
由 dxu 提交于
7144997: (fs) Files.probeContentType returns null on Solaris 64-bit Reviewed-by: alanb, mduigou
-
- 29 11月, 2012 1 次提交
-
-
由 michaelm 提交于
Reviewed-by: chegar, dsamersoff
-
- 28 11月, 2012 1 次提交
-
-
由 sherman 提交于
Summary: to add java.util.Base64 Reviewed-by: alanb, mduigou
-
- 27 11月, 2012 1 次提交
-
-
由 mduigou 提交于
Summary: Add the core functional interfaces used by the JSR335 libraries. Reviewed-by: dholmes, briangoetz, darcy
-
- 12 11月, 2012 1 次提交
-
-
由 okutsu 提交于
Reviewed-by: naoto
-
- 06 11月, 2012 1 次提交
-
-
由 ksrini 提交于
Reviewed-by: chegar, dholmes, erikj, jgish
-
- 02 11月, 2012 1 次提交
-
-
由 alanb 提交于
Reviewed-by: chegar, ksrini
-
- 01 11月, 2012 1 次提交
-
-
由 naoto 提交于
Reviewed-by: alanb, erikj
-
- 26 10月, 2012 1 次提交
-
-
由 dxu 提交于
Reviewed-by: alanb, dholmes, erikj, jgish
-
- 11 10月, 2012 1 次提交
-
-
由 dxu 提交于
Reviewed-by: alanb
-
- 06 10月, 2012 1 次提交
-
-
由 alanb 提交于
Reviewed-by: mchung, forax
-
- 05 10月, 2012 2 次提交
- 22 9月, 2012 1 次提交
-
-
由 ohair 提交于
Reviewed-by: anthony
-
- 19 9月, 2012 1 次提交
-
-
由 ohair 提交于
7130909: Add a more general mechanism for customizing the build logic Reviewed-by: dholmes, tbell, erikj, ihse, ohrstrom
-
- 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
-
- 16 8月, 2012 1 次提交
-
-
由 alanb 提交于
Reviewed-by: andrew
-
- 15 8月, 2012 1 次提交
-
-
由 andrew 提交于
Summary: Make SYSTEM_ZLIB more flexible by using ZLIB_{CFLAGS,LIBS} and building on more than just MACOSX. Reviewed-by: sherman, alanb
-
- 31 7月, 2012 1 次提交
-
-
由 ksrini 提交于
Reviewed-by: dholmes, darcy, jjh, sherman
-
- 04 8月, 2012 1 次提交
-
-
由 sherman 提交于
Summary: re-implemented getBytesRead/Writtten() at java level Reviewed-by: andrew, alanb
-
- 25 7月, 2012 1 次提交
-
-
由 sherman 提交于
Summary: Migrated all jis based charsets to new implementation Reviewed-by: okutsu
-
- 20 7月, 2012 1 次提交
-
-
由 sherman 提交于
7130915: File.equals does not give expected results when path contains Non-English characters on Mac OS X Summary: to support Unicode nfd/nfc file path on Macos Reviewed-by: alanb
-
- 19 6月, 2012 1 次提交
-
-
由 okutsu 提交于
Reviewed-by: naoto
-
- 16 6月, 2012 1 次提交
-
-
由 alanb 提交于
Reviewed-by: chegar, coffeys
-
- 08 6月, 2012 1 次提交
-
-
由 lancea 提交于
Reviewed-by: alanb, chegar, darcy, mchung
-
- 07 6月, 2012 1 次提交
-
-
由 alanb 提交于
Reviewed-by: coffeys, chegar
-
- 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
-
- 17 5月, 2012 1 次提交
-
-
由 dcubed 提交于
Summary: ZIP libjsig.debuginfo links into libjsig.diz files since aurora doesn't like dangling symlinks Reviewed-by: katleman
-
- 11 4月, 2012 1 次提交
-
-
由 dcubed 提交于
Summary: Add initial FDS support to some libraries and programs. Reviewed-by: kamg, fparain, sspitsyn, dsamersoff
-
- 10 4月, 2012 1 次提交
-
-
由 jfranck 提交于
Reviewed-by: ohair, erikj
-
- 05 4月, 2012 1 次提交
-
-
由 kizune 提交于
Reviewed-by: anthony
-
- 28 3月, 2012 1 次提交
-
-
由 michaelm 提交于
Reviewed-by: alanb, dcubed
-