Searched refs:suite (Results 1 - 25 of 121) sorted by relevance

12345

/openjdk9/hotspot/.mx.jvmci/
H A Dsuite.py0 suite = {
1 suite = { variable
/openjdk9/hotspot/src/jdk.internal.vm.compiler/.mx.graal/
H A Dsuite.py0 suite = {
1 suite = { variable
/openjdk9/nashorn/test/script/basic/
H A Doctane-payload.js35 {name:"box2d", files:["box2d.js"], suite:"Box2DBenchmark"},
36 {name:"code-load", files:["code-load.js"], suite:"CodeLoad"},
37 {name:"crypto", files:["crypto.js"], suite:"Crypto"},
38 {name:"deltablue", files:["deltablue.js"], suite:"DeltaBlue"},
39 {name:"earley-boyer", files:["earley-boyer.js"], suite:"EarleyBoyer"},
40 {name:"gbemu", files:["gbemu-part1.js", "gbemu-part2.js"], suite:"GameboyBenchmark"},
41 {name:"mandreel", files:["mandreel.js"], suite:"MandreelBenchmark"},
42 {name:"navier-stokes", files:["navier-stokes.js"], suite:"NavierStokes"},
43 {name:"pdfjs", files:["pdfjs.js"], suite:"PdfJS", cleanUpIteration: function() { canvas_logs = []; }},
44 {name:"raytrace", files:["raytrace.js"], suite
[all...]
/openjdk9/jdk/test/java/util/concurrent/tck/
H A DArrayListTest.java44 main(suite(), args);
47 public static Test suite() { method in class:ArrayListTest
H A DJSR166TestCase.java237 * The number of repetitions of the test suite (for finding leaks?).
374 main(suite(), args);
406 * Runs all unit tests in the given test suite.
409 static void main(Test suite, String[] args) { argument
416 TestResult result = newPithyTestRunner().doRun(suite);
425 TestSuite suite = new TestSuite();
428 suite.addTest((TestSuite) suiteOrClass);
430 suite.addTest(new TestSuite((Class<?>) suiteOrClass));
432 throw new ClassCastException("not a test suite or class");
434 return suite;
437 addNamedTestClasses(TestSuite suite, String... testClassNames) argument
484 public static Test suite() { method in class:JSR166TestCase
[all...]
H A DLinkedBlockingDeque8Test.java43 main(suite(), args);
46 public static Test suite() { method in class:LinkedBlockingDeque8Test
H A DLinkedBlockingQueue8Test.java43 main(suite(), args);
46 public static Test suite() { method in class:LinkedBlockingQueue8Test
H A DForkJoinPool9Test.java49 main(suite(), args);
52 public static Test suite() { method in class:ForkJoinPool9Test
H A DVectorTest.java44 main(suite(), args);
47 public static Test suite() { method in class:VectorTest
H A DSystemTest.java41 main(suite(), args);
44 public static Test suite() { method in class:SystemTest
H A DThreadTest.java41 main(suite(), args);
44 public static Test suite() { method in class:ThreadTest
H A DArrayDeque8Test.java44 main(suite(), args);
47 public static Test suite() { method in class:ArrayDeque8Test
H A DThreadLocalTest.java41 main(suite(), args);
44 public static Test suite() { method in class:ThreadLocalTest
/openjdk9/jdk/src/java.base/share/classes/sun/security/ssl/
H A DCipherSuiteList.java59 CipherSuiteList(CipherSuite suite) { argument
61 cipherSuites.add(suite);
79 CipherSuite suite = CipherSuite.valueOf(suiteName);
80 if (suite.isAvailable() == false) {
84 cipherSuites.add(suite);
107 boolean contains(CipherSuite suite) { argument
108 return cipherSuites.contains(suite);
H A DServerHandshaker.java585 // the cipher suite for that session was on the list which the
631 CipherSuite suite = previous.getSuite();
633 ClientKeyExchangeService.find(suite.keyExchange.name);
652 CipherSuite suite = previous.getSuite();
656 if ((isNegotiable(suite) == false) ||
657 (mesg.getCipherSuites().contains(suite) == false)) {
663 setCipherSuite(suite);
746 // new one and choose its cipher suite and compression options.
808 // choose cipher suite and corresponding private key
818 // The protocol version and cipher suite hav
1244 trySetCipherSuite(CipherSuite suite) argument
[all...]
H A DProtocolVersion.java270 boolean obsoletes(CipherSuite suite) { argument
274 if (suite.cipher.cipherType == CipherType.STREAM_CIPHER) {
281 return (proto.v >= suite.obsoleted);
284 boolean supports(CipherSuite suite) { argument
288 if (suite.cipher.cipherType == CipherType.STREAM_CIPHER) {
295 return (proto.v >= suite.supported);
H A DHandshaker.java556 throw new SSLHandshakeException("No appropriate cipher suite");
629 * proposed cipher suite list.
690 for (CipherSuite suite : enabledCipherSuites.collection()) {
691 if (!activeProtocols.min.obsoletes(suite) &&
692 activeProtocols.max.supports(suite)) {
695 suite.name, null)) {
698 if (suite.keyExchange.isEC) {
717 suite);
722 suites.add(suite);
726 if (activeProtocols.min.obsoletes(suite)) {
[all...]
H A DSSLContextImpl.java395 for (CipherSuite suite : allowedCipherSuites) {
396 if (!suite.allowed || suite.priority < minPriority) {
400 if (suite.isAvailable() &&
401 !protocols.min.obsoletes(suite) &&
402 protocols.max.supports(suite)) {
405 suite.name, null)) {
406 suites.add(suite);
411 "Ignoring disabled cipher suite: " +
412 suite
[all...]
/openjdk9/jdk/test/javax/net/ssl/sanity/ciphersuites/
H A DCipherSuitesInOrder.java247 for (String suite : suites) {
248 index = supportedCipherSuites.indexOf(suite);
250 throw new RuntimeException(suite + " is not in order");
259 for (String suite : suites) {
260 System.out.println(" " + suite);
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/
H A DDefaultSuitesProvider.java49 PhaseSuite<HighTierContext> suite = new PhaseSuite<>();
50 suite.appendPhase(new GraphBuilderPhase(GraphBuilderConfiguration.getDefault(plugins)));
51 return suite;
/openjdk9/jdk/test/sun/security/ssl/CipherSuite/
H A DSSL_NULL.java49 String suite = socket.getSession().getCipherSuite();
50 if (!"SSL_NULL_WITH_NULL_NULL".equals(suite)) {
52 "Wrong suite for failed handshake: " +
53 "got " + suite +
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/
H A DPhaseSuite.java61 * Add a new phase at the beginning of this suite.
68 * Add a new phase at the end of this suite.
92 * Calling {@link ListIterator#previous()} would return the phase or phase suite that was found.
117 PhaseSuite<C> suite = (PhaseSuite<C>) phase;
118 if (suite.findPhase(phaseClass, true) != null) {
159 PhaseSuite<C> suite = new PhaseSuite<>();
160 suite.phases.addAll(phases);
161 return suite;
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/phases/
H A DLIRPhaseSuite.java43 * Add a new phase at the beginning of this suite.
50 * Add a new phase at the end of this suite.
94 LIRPhaseSuite<C> suite = new LIRPhaseSuite<>();
95 suite.phases.addAll(phases);
96 return suite;
/openjdk9/jdk/test/javax/net/ssl/SSLEngine/
H A DTestAllSuites.java106 private void runTest(String suite, String [] protocols) throws Exception { argument
111 System.out.println("Testing: " + suite);
119 if (suite.startsWith("TLS_KRB5")) {
120 System.out.println("Ignoring Kerberized suite");
125 * Don't run the SCSV suite
127 if (suite.equals("TLS_EMPTY_RENEGOTIATION_INFO_SCSV")) {
128 System.out.println("Ignoring SCSV suite");
133 if (!suite.contains("DH_anon")) {
137 String [] suites = new String [] { suite };
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/
H A DHotSpotSuitesProvider.java124 PhaseSuite<HighTierContext> suite = defaultSuitesCreator.getDefaultGraphBuilderSuite().copy();
125 assert appendGraphEncoderTest(suite);
126 return suite;
137 private boolean appendGraphEncoderTest(PhaseSuite<HighTierContext> suite) { argument
138 suite.appendPhase(new BasePhase<HighTierContext>() {
160 * @param gbs the current graph builder suite to modify

Completed in 227 milliseconds

12345