Weijun Wang
8f5279cf87
8026235: keytool NSS test should use 64 bit lib on Solaris
...
Reviewed-by: vinnie
2013-10-10 15:24:41 +08:00
Shanliang Jiang
c8a7fb8dce
8025205: Intermittent test failure: javax/management/remote/mandatory/connection/BrokenConnectionTest.java
...
Reviewed-by: dholmes, dfuchs, jbachorik
2013-10-10 09:01:19 +02:00
Shanliang Jiang
5a3e98293d
8025206: Intermittent test failure: javax/management/monitor/NullAttributeValueTest.java
...
Reviewed-by: dholmes, dfuchs, jbachorik
2013-10-10 08:49:12 +02:00
Shanliang Jiang
65d897864d
8025207: Intermittent test failure: javax/management/monitor/CounterMonitorThresholdTest.java
...
Reviewed-by: dfuchs, dholmes
2013-10-10 08:37:48 +02:00
Joe Darcy
e9ef833478
8024354: Explicitly permit DoubleStream.sum()/average() implementations to use higher precision summation
...
Reviewed-by: mduigou, briangoetz
2013-10-09 18:31:51 -07:00
Brent Christian
5edd3cbdfe
8024709: TreeMap.DescendingKeyIterator 'remove' confuses iterator position
...
Override remove() method in DescendingKeyIterator
Reviewed-by: alanb, mduigou, psandoz
2013-10-09 12:13:31 -07:00
Brian Burkhalter
3b56462097
7189139: BigInteger's staticRandom field can be a source of bottlenecks
...
Use ThreadLocalRandom instead of SecureRandom.
Reviewed-by: shade, psandoz
2013-10-09 17:22:34 -07:00
Valerie Peng
4ff4823dfc
Merge
2013-10-09 13:07:58 -07:00
Brian Burkhalter
4ee6d9bd3a
8016252: More defensive HashSet.readObject
...
Add data validation checks in readObject().
Reviewed-by: alanb, mduigou, chegar
2013-10-09 11:47:48 -07:00
Stephen Colebourne
bc56565f2a
8024076: Incorrect 2 -> 4 year parsing and resolution in DateTimeFormatter
...
Add appendValueReduced method based on a ChronoLocalDate to provide context for the value
Reviewed-by: sherman
2013-10-09 13:34:37 -04:00
Henry Jen
1f02e9968e
8023524: Mechanism to dump generated lambda classes / log lambda code generation
...
Co-authored-by: Brian Goetz <brian.goetz@oracle.com>
Reviewed-by: plevart, mchung, forax, jjb
2013-10-09 09:41:40 -07:00
Valerie Peng
20295341f5
8025967: addition of -Werror broke the old build
...
Fixed and suppressed compiler warnings on rawtypes
Reviewed-by: vinnie
2013-10-08 14:41:46 -07:00
Valerie Peng
ba9b938306
8014374: Cannot initialize "AES/GCM/NoPadding" on wrap/unseal on solaris with OracleUcrypto
...
Removed OracleUcrypto provider regression tests from OpenJDK
Reviewed-by: xuelei
2013-10-08 11:35:29 -07:00
Valerie Peng
a5add24f51
8012900: CICO ignores AAD in GCM mode
...
Change GCM decryption to not return result until tag verification passed
Reviewed-by: xuelei
2013-10-08 11:17:53 -07:00
Valerie Peng
2f4af22f17
7196382: PKCS11 provider should support 2048-bit DH
...
Query and enforce range checking using the values from native PKCS11 library.
Reviewed-by: xuelei
2013-10-08 11:07:31 -07:00
Alan Bateman
31fdd1b27c
8024788: (fs) Files.readAllBytes uses FileChannel which may not be supported by all providers
...
Reviewed-by: chegar
2013-10-08 10:49:09 +01:00
Doug Lea
5bc35911d0
8025136: SplittableRandom enchancements
...
Co-authored-by: Guy Steele <guy.steele@oracle.com>
Reviewed-by: psandoz, martin
2013-10-08 11:17:15 +02:00
Xue-Lei Andrew Fan
1d8fbe7d05
6956398: make ephemeral DH key match the length of the certificate key
...
Reviewed-by: weijun
2013-10-07 18:46:28 -07:00
Henry Jen
6a322383a8
8026009: Changes for 8025968 break all stream tests
...
Reviewed-by: mduigou
2013-10-07 15:18:37 -07:00
Henry Jen
1542ab6eef
8025968: Integrate test improvements made in lambda repo
...
Reviewed-by: psandoz
2013-10-07 11:25:56 -07:00
Alan Bateman
68ef7f0bc3
8025983: Typo in Javadoc of Files.isRegularFile()
...
Reviewed-by: mchung, chegar
2013-10-07 11:48:55 +01:00
John R Rose
be5df968ee
8024438: JSR 292 API specification maintenance for JDK 8
...
Add wildcard to unreflectConstructor, various clarifications and minor edits
Reviewed-by: mchung, darcy, twisti
2013-10-05 05:30:40 -07:00
John R Rose
c5b5f0d6c7
8025112: JSR 292 spec updates for security manager and caller sensitivity
...
Align CONSTANT_MethodHandle and Lookup.find* API calls, clarify security manager & @CallerSensitive interactions
Reviewed-by: mchung, twisti
2013-10-05 05:30:39 -07:00
John R Rose
32e77eaae1
8001110: method handles should have a collectArguments transform, generalizing asCollector
...
Promote an existing private method; make unit tests on all argument positions to arity 10 with mixed types
Reviewed-by: twisti, vlivanov
2013-10-05 05:30:39 -07:00
John R Rose
4ea5f818b5
8024599: JSR 292 direct method handles need to respect initialization rules for static members
...
Align MH semantic with bytecode behavior of constructor and static member accesses, regarding <clinit> invocation.
Reviewed-by: twisti, darcy, abuckley, vlivanov
2013-10-05 05:30:39 -07:00
John R Rose
154969a2bc
8001108: an attempt to use "<init>" as a method name should elicit NoSuchMethodException
...
Add an explicit check for leading "<", upgrade the unit tests
Reviewed-by: twisti, darcy
2013-10-05 05:30:39 -07:00
John R Rose
e4df9dc1ee
8001109: arity mismatch on a call to spreader method handle should elicit IllegalArgumentException
...
Document error conditions that may occur when calling a "spreader" method handle. Use IAE in all cases.
Reviewed-by: twisti, vlivanov
2013-10-05 05:30:39 -07:00
John R Rose
77dc59f6ca
8019417: JSR 292 javadoc should clarify method handle arity limits
...
Clarification of erroneous reading of spec. that led to 7194534
Reviewed-by: twisti, darcy
2013-10-05 05:30:39 -07:00
John R Rose
622186edcb
8001105: findVirtual of Object[].clone produces internal error
...
Replicate JVM logic for access control that makes Object.clone appear public when applied to an array type.
Reviewed-by: twisti
2013-10-05 05:30:38 -07:00
John R Rose
62ee211c8d
8024761: JSR 292 improve performance of generic invocation
...
Use a per-MH one element cache for MH.asType to speed up MH.invoke; also cache enough MH constants to cache LMF.metafactory
Reviewed-by: twisti
2013-10-05 05:30:38 -07:00
Sean Coffey
1d4c1c6ee5
8016271: wsimport -clientjar does not create portable jars on Windows due to hardcoded backslash
...
Reviewed-by: mkos, chegar
2013-10-04 16:27:12 +01:00
Bhavesh Patel
c855900623
8025741: Fix jdk/make/docs/Makefile to point to correct docs URL for JDK 8
...
Reviewed-by: tbell
2013-10-04 15:25:18 -07:00
Robert Field
f718e1fa54
8021186: jdk/lambda/vm/DefaultMethodsTest.java fails
...
Remove DefaultMethodsTest from jdk/test/problemList.txt
Reviewed-by: mduigou
2013-10-04 09:54:43 -07:00
Stephen Colebourne
242f0dd3c2
8025718: Enhance error messages for parsing
...
Add values and types to exception messages
Reviewed-by: lancea
2013-09-26 15:19:27 -07:00
Roger Riggs
c9982055b4
8024612: java/time/tck/java/time/format/TCKDateTimeFormatters.java failed
...
The test should be using the Locale.Category.FORMAT to verify the test data
Reviewed-by: lancea
2013-10-09 11:02:55 -04:00
Mandy Chung
18f83d0a7c
8026027: Level.parse should return the custom Level instance instead of the mirrored Level
...
Reviewed-by: dfuchs, chegar
2013-10-09 06:24:42 -07:00
Paul Sandoz
ad959161e4
8020061: Clarify reporting characteristics between splits
...
Reviewed-by: alanb, chegar
2013-10-09 15:19:56 +02:00
Vinnie Ryan
f36ff9e467
8008171: Refactor KeyStore.DomainLoadStoreParameter as a standalone class
...
Reviewed-by: mullan, weijun
2013-10-09 10:48:44 +01:00
Alan Bateman
508933e418
8008662: Add @jdk.Exported to JDK-specific/exported APIs
...
Reviewed-by: chegar, vinnie, dfuchs, mchung, mullan, darcy
2013-10-09 09:20:12 +01:00
Rob McKenna
9916c42ef7
7180557: InetAddress.getLocalHost throws UnknownHostException on java7u5 on OSX webbugs
...
Reviewed-by: chegar, dsamersoff
2013-10-09 00:10:02 +01:00
Stephen Colebourne
ea9e3930af
8024834: Better return type for TemporalField resolve
...
Allow resolve method to return more than just ChronoLocalDate
Reviewed-by: sherman
2013-09-14 22:54:38 +01:00
Stephen Colebourne
2040c66b16
8024807: Add getChronlogy() to CLDT/CZDT
...
Alternative to method is clunky and hard to find
Reviewed-by: sherman
2013-09-14 22:50:40 +01:00
Roger Riggs
d18aae693d
8024999: Instant.Parse typo in example
...
Javadoc only fix to correct example to use "." and "Z"
Reviewed-by: sherman
2013-10-04 12:01:29 -04:00
Stephen Colebourne
c492e4ef1f
8024835: Change until() to accept any compatible temporal
...
Method until(Temporal,TemporalUnit) now uses from() to convert; Enhance from() methods where necessary
Reviewed-by: sherman
2013-09-14 22:46:49 +01:00
Stephen Colebourne
61fc7dfe0c
8023762: Add ChronoPeriod interface and bind period to Chronology
...
Make Period ISO-only, adding a Chronology-specific period concept
Reviewed-by: sherman
2013-09-04 15:18:54 +01:00
Stephen Colebourne
75fb106fec
8023763: Rename ChronoDateImpl
...
Rename ChronoDateImpl to ChronoLocalDateImpl
Reviewed-by: sherman
2013-08-30 11:43:57 +01:00
Stephen Colebourne
c762984485
8023764: Optimize Period addition
...
Optimise plus/minus for common cases
Reviewed-by: sherman
2013-08-29 20:38:46 +01:00
Vinnie Ryan
cbe29b7b72
8008296: keytool utility doesn't support '-importpassword' command
...
Reviewed-by: weijun
2013-10-04 16:05:55 +01:00
Peter Allwin
f426e35d99
8025829: Add java/lang/instrument/RetransformBigClass.sh to problemlist
...
Reviewed-by: sla, jbachorik
2013-10-04 15:00:42 +02:00
Roger Riggs
1e581e11ea
8024427: Missing java.time.chrono serialization tests
...
Add tests and cleanup existing serialization tests
Reviewed-by: sherman
2013-10-03 15:16:14 -04:00