Home
last modified time | relevance | path

Searched refs:Collectors (Results 1 – 25 of 4841) sorted by relevance

12345678910>>...194

/dports/net-im/openfire/Openfire-4.7.1/xmppserver/src/main/java/org/jivesoftware/util/cache/
H A DConsistencyChecks.java39 import java.util.stream.Collectors;
217 .collect(Collectors.toSet()); in generateReportForRoutingTableComponentRoutes()
428 .collect(Collectors.toSet()); in generateReportForSessionManagerIncomingServerSessions()
542 .collect(Collectors.toSet()); in generateReportForSessionManagerSessionInfos()
629 .collect(Collectors.toSet()); in generateReportForUserSessions()
636 .collect(Collectors.toSet()); in generateReportForUserSessions()
641 .collect(Collectors.toSet()); in generateReportForUserSessions()
708 .collect(Collectors.toSet()); in generateReportForMucRooms()
713 .collect(Collectors.toSet()); in generateReportForMucRooms()
716 .collect(Collectors.toSet()); in generateReportForMucRooms()
[all …]
/dports/biology/gatk/gatk-4.2.0.0/src/test/java/org/broadinstitute/hellbender/tools/walkers/validation/
H A DReferenceBlockConcordanceIntegrationTest.java24 import java.util.stream.Collectors;
100 }).collect(Collectors.toMap(data -> (String) data[0], data -> (Integer) data[1])) in testMultipleContigs()
107 }).collect(Collectors.toMap(data -> (String) data[0], data -> (Integer) data[1])) in testMultipleContigs()
113 }).collect(Collectors.toMap(data -> (String) data[0], data -> (Integer) data[1])) in testMultipleContigs()
148 IntStream.range(1, 100).boxed().collect(Collectors.toList()), in writeTestGVCFs()
162 IntStream.range(1, 100).boxed().collect(Collectors.toList()), in writeTestGVCFs()
205 … }).collect(Collectors.toMap(data -> (String) data[0], data -> (Integer) data[1])), in provideSyntheticGVCFs()
209 … }).collect(Collectors.toMap(data -> (String) data[0], data -> (Integer) data[1])), in provideSyntheticGVCFs()
213 … }).collect(Collectors.toMap(data -> (String) data[0], data -> (Integer) data[1])), in provideSyntheticGVCFs()
228 … }).collect(Collectors.toMap(data -> (String) data[0], data -> (Integer) data[1])), in provideSyntheticGVCFs()
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/java/util/stream/test/org/openjdk/tests/java/util/stream/
H A DSegmentTestDataProvider.java37 import java.util.stream.Collectors;
47 .collect(Collectors.toList()); in compareSegmentsByte()
50 .collect(Collectors.toList()); in compareSegmentsByte()
58 .collect(Collectors.toList()); in compareSegmentsChar()
61 .collect(Collectors.toList()); in compareSegmentsChar()
69 .collect(Collectors.toList()); in compareSegmentsShort()
72 .collect(Collectors.toList()); in compareSegmentsShort()
80 .collect(Collectors.toList()); in compareSegmentsInt()
83 .collect(Collectors.toList()); in compareSegmentsInt()
91 .collect(Collectors.toList()); in compareSegmentsLong()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/java/util/stream/test/org/openjdk/tests/java/util/stream/
H A DSegmentTestDataProvider.java37 import java.util.stream.Collectors;
47 .collect(Collectors.toList()); in compareSegmentsByte()
50 .collect(Collectors.toList()); in compareSegmentsByte()
58 .collect(Collectors.toList()); in compareSegmentsChar()
61 .collect(Collectors.toList()); in compareSegmentsChar()
69 .collect(Collectors.toList()); in compareSegmentsShort()
72 .collect(Collectors.toList()); in compareSegmentsShort()
80 .collect(Collectors.toList()); in compareSegmentsInt()
83 .collect(Collectors.toList()); in compareSegmentsInt()
91 .collect(Collectors.toList()); in compareSegmentsLong()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/java/util/stream/test/org/openjdk/tests/java/util/stream/
H A DSegmentTestDataProvider.java36 import java.util.stream.Collectors;
54 .collect(Collectors.toList()); in compareSegmentsByte()
57 .collect(Collectors.toList()); in compareSegmentsByte()
65 .collect(Collectors.toList()); in compareSegmentsChar()
68 .collect(Collectors.toList()); in compareSegmentsChar()
76 .collect(Collectors.toList()); in compareSegmentsShort()
79 .collect(Collectors.toList()); in compareSegmentsShort()
87 .collect(Collectors.toList()); in compareSegmentsInt()
90 .collect(Collectors.toList()); in compareSegmentsInt()
98 .collect(Collectors.toList()); in compareSegmentsLong()
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/test/java/lang/CharSequence/
H A DDefaultTest.java29 import java.util.stream.Collectors;
53 List<Integer> list = "abc".chars().boxed().collect(Collectors.toList()); in testSimpleChars()
71 List<Integer> list = "abc".codePoints().boxed().collect(Collectors.toList()); in testSimpleCodePoints()
76 List<Integer> list = "X\ufffeY".codePoints().boxed().collect(Collectors.toList()); in testUndefCodePoints()
86 list = "\ud834\udd1e".codePoints().boxed().collect(Collectors.toList()); in testSurrogatePairing()
88 list = "A\ud834\udd1e".codePoints().boxed().collect(Collectors.toList()); in testSurrogatePairing()
90 list = "\ud834\udd1eB".codePoints().boxed().collect(Collectors.toList()); in testSurrogatePairing()
92 list = "X\ud834\udd1eY".codePoints().boxed().collect(Collectors.toList()); in testSurrogatePairing()
97 … List<Integer> list = "W\udd1eX\ud834Y\ufffeZ".codePoints().boxed().collect(Collectors.toList()); in testUndefUnpaired()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/test/java/lang/CharSequence/
H A DDefaultTest.java29 import java.util.stream.Collectors;
53 List<Integer> list = "abc".chars().boxed().collect(Collectors.toList()); in testSimpleChars()
71 List<Integer> list = "abc".codePoints().boxed().collect(Collectors.toList()); in testSimpleCodePoints()
76 List<Integer> list = "X\ufffeY".codePoints().boxed().collect(Collectors.toList()); in testUndefCodePoints()
86 list = "\ud834\udd1e".codePoints().boxed().collect(Collectors.toList()); in testSurrogatePairing()
88 list = "A\ud834\udd1e".codePoints().boxed().collect(Collectors.toList()); in testSurrogatePairing()
90 list = "\ud834\udd1eB".codePoints().boxed().collect(Collectors.toList()); in testSurrogatePairing()
92 list = "X\ud834\udd1eY".codePoints().boxed().collect(Collectors.toList()); in testSurrogatePairing()
97 … List<Integer> list = "W\udd1eX\ud834Y\ufffeZ".codePoints().boxed().collect(Collectors.toList()); in testUndefUnpaired()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/langtools/tools/javac/classfiles/attributes/annotations/
H A DClassType.java25 import java.util.stream.Collectors;
33 .collect(Collectors.joining(" ")); in methodToString()
37 .collect(Collectors.joining(", ")); in methodToString()
50 .collect(Collectors.joining(" ")); in methodToString()
68 .collect(Collectors.joining(",\n")) + ";\n"; in collectFields()
81 .collect(Collectors.joining("\n")); in collectSrc()
99 .collect(Collectors.joining(" ")); in methodToString()
102 .collect(Collectors.joining(", ")); in methodToString()
121 .collect(Collectors.joining(" ")); in fieldToString()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/langtools/tools/javac/classfiles/attributes/annotations/
H A DClassType.java25 import java.util.stream.Collectors;
33 .collect(Collectors.joining(" ")); in methodToString()
37 .collect(Collectors.joining(", ")); in methodToString()
50 .collect(Collectors.joining(" ")); in methodToString()
68 .collect(Collectors.joining(",\n")) + ";\n"; in collectFields()
81 .collect(Collectors.joining("\n")); in collectSrc()
99 .collect(Collectors.joining(" ")); in methodToString()
102 .collect(Collectors.joining(", ")); in methodToString()
121 .collect(Collectors.joining(" ")); in fieldToString()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/langtools/tools/javac/classfiles/attributes/annotations/
H A DClassType.java25 import java.util.stream.Collectors;
33 .collect(Collectors.joining(" ")); in methodToString()
37 .collect(Collectors.joining(", ")); in methodToString()
50 .collect(Collectors.joining(" ")); in methodToString()
68 .collect(Collectors.joining(",\n")) + ";\n"; in collectFields()
81 .collect(Collectors.joining("\n")); in collectSrc()
99 .collect(Collectors.joining(" ")); in methodToString()
102 .collect(Collectors.joining(", ")); in methodToString()
121 .collect(Collectors.joining(" ")); in fieldToString()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/langtools/tools/javac/classfiles/attributes/annotations/
H A DClassType.java25 import java.util.stream.Collectors;
33 .collect(Collectors.joining(" ")); in methodToString()
37 .collect(Collectors.joining(", ")); in methodToString()
50 .collect(Collectors.joining(" ")); in methodToString()
68 .collect(Collectors.joining(",\n")) + ";\n"; in collectFields()
81 .collect(Collectors.joining("\n")); in collectSrc()
99 .collect(Collectors.joining(" ")); in methodToString()
102 .collect(Collectors.joining(", ")); in methodToString()
121 .collect(Collectors.joining(" ")); in fieldToString()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/langtools/tools/javac/classfiles/attributes/annotations/
H A DClassType.java25 import java.util.stream.Collectors;
33 .collect(Collectors.joining(" ")); in methodToString()
37 .collect(Collectors.joining(", ")); in methodToString()
50 .collect(Collectors.joining(" ")); in methodToString()
68 .collect(Collectors.joining(",\n")) + ";\n"; in collectFields()
81 .collect(Collectors.joining("\n")); in collectSrc()
99 .collect(Collectors.joining(" ")); in methodToString()
102 .collect(Collectors.joining(", ")); in methodToString()
121 .collect(Collectors.joining(" ")); in fieldToString()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/langtools/tools/javac/classfiles/attributes/annotations/
H A DClassType.java25 import java.util.stream.Collectors;
33 .collect(Collectors.joining(" ")); in methodToString()
37 .collect(Collectors.joining(", ")); in methodToString()
50 .collect(Collectors.joining(" ")); in methodToString()
68 .collect(Collectors.joining(",\n")) + ";\n"; in collectFields()
81 .collect(Collectors.joining("\n")); in collectSrc()
99 .collect(Collectors.joining(" ")); in methodToString()
102 .collect(Collectors.joining(", ")); in methodToString()
121 .collect(Collectors.joining(" ")); in fieldToString()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/langtools/tools/javac/classfiles/attributes/annotations/
H A DClassType.java25 import java.util.stream.Collectors;
33 .collect(Collectors.joining(" ")); in methodToString()
37 .collect(Collectors.joining(", ")); in methodToString()
50 .collect(Collectors.joining(" ")); in methodToString()
68 .collect(Collectors.joining(",\n")) + ";\n"; in collectFields()
81 .collect(Collectors.joining("\n")); in collectSrc()
99 .collect(Collectors.joining(" ")); in methodToString()
102 .collect(Collectors.joining(", ")); in methodToString()
121 .collect(Collectors.joining(" ")); in fieldToString()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/langtools/tools/javac/classfiles/attributes/annotations/
H A DClassType.java25 import java.util.stream.Collectors;
33 .collect(Collectors.joining(" ")); in methodToString()
37 .collect(Collectors.joining(", ")); in methodToString()
50 .collect(Collectors.joining(" ")); in methodToString()
68 .collect(Collectors.joining(",\n")) + ";\n"; in collectFields()
81 .collect(Collectors.joining("\n")); in collectSrc()
99 .collect(Collectors.joining(" ")); in methodToString()
102 .collect(Collectors.joining(", ")); in methodToString()
121 .collect(Collectors.joining(" ")); in fieldToString()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/java/net/httpclient/
H A DLineStreamsAndSurrogatesTest.java38 import java.util.stream.Collectors;
92 List<String> list = stream.collect(Collectors.toList()); in testUncomplete()
151 List<String> list = stream.collect(Collectors.toList()); in testStream1()
152 String resp = list.stream().collect(Collectors.joining("|")); in testStream1()
199 List<String> list = stream.collect(Collectors.toList()); in testStream2()
200 String resp = list.stream().collect(Collectors.joining("")); in testStream2()
203 .collect(Collectors.joining("")); in testStream2()
246 List<String> list = stream.collect(Collectors.toList()); in testStream3_UTF16()
247 String resp = list.stream().collect(Collectors.joining("")); in testStream3_UTF16()
292 List<String> list = stream.collect(Collectors.toList()); in testStream4_UTF16()
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/java/net/httpclient/
H A DLineStreamsAndSurrogatesTest.java38 import java.util.stream.Collectors;
92 List<String> list = stream.collect(Collectors.toList()); in testUncomplete()
151 List<String> list = stream.collect(Collectors.toList()); in testStream1()
152 String resp = list.stream().collect(Collectors.joining("|")); in testStream1()
199 List<String> list = stream.collect(Collectors.toList()); in testStream2()
200 String resp = list.stream().collect(Collectors.joining("")); in testStream2()
203 .collect(Collectors.joining("")); in testStream2()
246 List<String> list = stream.collect(Collectors.toList()); in testStream3_UTF16()
247 String resp = list.stream().collect(Collectors.joining("")); in testStream3_UTF16()
292 List<String> list = stream.collect(Collectors.toList()); in testStream4_UTF16()
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/java/net/httpclient/
H A DLineStreamsAndSurrogatesTest.java38 import java.util.stream.Collectors;
92 List<String> list = stream.collect(Collectors.toList()); in testUncomplete()
151 List<String> list = stream.collect(Collectors.toList()); in testStream1()
152 String resp = list.stream().collect(Collectors.joining("|")); in testStream1()
199 List<String> list = stream.collect(Collectors.toList()); in testStream2()
200 String resp = list.stream().collect(Collectors.joining("")); in testStream2()
203 .collect(Collectors.joining("")); in testStream2()
246 List<String> list = stream.collect(Collectors.toList()); in testStream3_UTF16()
247 String resp = list.stream().collect(Collectors.joining("")); in testStream3_UTF16()
292 List<String> list = stream.collect(Collectors.toList()); in testStream4_UTF16()
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/java/net/httpclient/
H A DLineStreamsAndSurrogatesTest.java38 import java.util.stream.Collectors;
92 List<String> list = stream.collect(Collectors.toList()); in testUncomplete()
151 List<String> list = stream.collect(Collectors.toList()); in testStream1()
152 String resp = list.stream().collect(Collectors.joining("|")); in testStream1()
199 List<String> list = stream.collect(Collectors.toList()); in testStream2()
200 String resp = list.stream().collect(Collectors.joining("")); in testStream2()
203 .collect(Collectors.joining("")); in testStream2()
246 List<String> list = stream.collect(Collectors.toList()); in testStream3_UTF16()
247 String resp = list.stream().collect(Collectors.joining("")); in testStream3_UTF16()
292 List<String> list = stream.collect(Collectors.toList()); in testStream4_UTF16()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/java/net/httpclient/
H A DLineStreamsAndSurrogatesTest.java38 import java.util.stream.Collectors;
92 List<String> list = stream.collect(Collectors.toList()); in testUncomplete()
151 List<String> list = stream.collect(Collectors.toList()); in testStream1()
152 String resp = list.stream().collect(Collectors.joining("|")); in testStream1()
199 List<String> list = stream.collect(Collectors.toList()); in testStream2()
200 String resp = list.stream().collect(Collectors.joining("")); in testStream2()
203 .collect(Collectors.joining("")); in testStream2()
246 List<String> list = stream.collect(Collectors.toList()); in testStream3_UTF16()
247 String resp = list.stream().collect(Collectors.joining("")); in testStream3_UTF16()
292 List<String> list = stream.collect(Collectors.toList()); in testStream4_UTF16()
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/java/net/httpclient/
H A DLineStreamsAndSurrogatesTest.java38 import java.util.stream.Collectors;
92 List<String> list = stream.collect(Collectors.toList());
151 List<String> list = stream.collect(Collectors.toList());
152 String resp = list.stream().collect(Collectors.joining("|"));
199 List<String> list = stream.collect(Collectors.toList());
200 String resp = list.stream().collect(Collectors.joining(""));
203 .collect(Collectors.joining(""));
246 List<String> list = stream.collect(Collectors.toList());
247 String resp = list.stream().collect(Collectors.joining(""));
292 List<String> list = stream.collect(Collectors.toList());
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/java/net/httpclient/
H A DLineStreamsAndSurrogatesTest.java38 import java.util.stream.Collectors;
92 List<String> list = stream.collect(Collectors.toList()); in testUncomplete()
151 List<String> list = stream.collect(Collectors.toList()); in testStream1()
152 String resp = list.stream().collect(Collectors.joining("|")); in testStream1()
199 List<String> list = stream.collect(Collectors.toList()); in testStream2()
200 String resp = list.stream().collect(Collectors.joining("")); in testStream2()
203 .collect(Collectors.joining("")); in testStream2()
246 List<String> list = stream.collect(Collectors.toList()); in testStream3_UTF16()
247 String resp = list.stream().collect(Collectors.joining("")); in testStream3_UTF16()
292 List<String> list = stream.collect(Collectors.toList()); in testStream4_UTF16()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/java/net/httpclient/
H A DLineStreamsAndSurrogatesTest.java38 import java.util.stream.Collectors;
92 List<String> list = stream.collect(Collectors.toList()); in testUncomplete()
151 List<String> list = stream.collect(Collectors.toList()); in testStream1()
152 String resp = list.stream().collect(Collectors.joining("|")); in testStream1()
199 List<String> list = stream.collect(Collectors.toList()); in testStream2()
200 String resp = list.stream().collect(Collectors.joining("")); in testStream2()
203 .collect(Collectors.joining("")); in testStream2()
246 List<String> list = stream.collect(Collectors.toList()); in testStream3_UTF16()
247 String resp = list.stream().collect(Collectors.joining("")); in testStream3_UTF16()
292 List<String> list = stream.collect(Collectors.toList()); in testStream4_UTF16()
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/micro/org/openjdk/bench/java/util/stream/tasks/PrimesFilter/t10000/
H A DLambda.java35 import java.util.stream.Collectors;
53 …START, RANGE_END).boxed().filter(n -> PrimesProblem.isPrime(n)).collect(Collectors.<Long>toList()); in bulk_seq_lambda()
58 …(RANGE_START, RANGE_END).boxed().filter(PrimesProblem::isPrime).collect(Collectors.<Long>toList()); in bulk_seq_methodRef()
63 …E_END).parallel().boxed().filter(n -> PrimesProblem.isPrime(n)).collect(Collectors.<Long>toList()); in bulk_par_lambda()
68 …T, RANGE_END).parallel().boxed().filter(PrimesProblem::isPrime).collect(Collectors.<Long>toList()); in bulk_par_methodRef()
73 …el().boxed().filter(n -> PrimesProblem.isPrime(n)).sequential().collect(Collectors.<Long>toList()); in bulk_parseq_lambda()
78 ….parallel().boxed().filter(PrimesProblem::isPrime).sequential().collect(Collectors.<Long>toList()); in bulk_parseq_methodRef()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/micro/org/openjdk/bench/java/util/stream/tasks/PrimesFilter/t100/
H A DLambda.java35 import java.util.stream.Collectors;
53 …START, RANGE_END).boxed().filter(n -> PrimesProblem.isPrime(n)).collect(Collectors.<Long>toList()); in bulk_seq_lambda()
58 …(RANGE_START, RANGE_END).boxed().filter(PrimesProblem::isPrime).collect(Collectors.<Long>toList()); in bulk_seq_methodRef()
63 …E_END).parallel().boxed().filter(n -> PrimesProblem.isPrime(n)).collect(Collectors.<Long>toList()); in bulk_par_lambda()
68 …T, RANGE_END).parallel().boxed().filter(PrimesProblem::isPrime).collect(Collectors.<Long>toList()); in bulk_par_methodRef()
73 …el().boxed().filter(n -> PrimesProblem.isPrime(n)).sequential().collect(Collectors.<Long>toList()); in bulk_parseq_lambda()
78 ….parallel().boxed().filter(PrimesProblem::isPrime).sequential().collect(Collectors.<Long>toList()); in bulk_parseq_methodRef()

12345678910>>...194