HomeSort by relevance Sort by last modified time
    Searched refs:sequential (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/testng/src/test/java/test/thread/
SequentialSample2Test.java 5 @Test(sequential = true)
SequentialSample3Test.java 5 @Test(sequential = true)
SequentialSampleTest.java 5 @Test(sequential = true)
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
StreamParSeqTest.java 40 s = s.sequential();
43 s = s.sequential();
SequentialOpTest.java 60 (UnaryOperator<Stream<Integer>>) s -> s.map(id).peek(e -> { counter.incrementAndGet(); }).sequential().map(id),
62 (UnaryOperator<Stream<Integer>>) s -> s.sequential().map(id).peek(e -> {
104 (UnaryOperator<Stream<Integer>>) s -> s.sequential(),
IntPrimitiveOpsTests.java 158 IntStream.range(1, 1000).sequential().forEach(consumer);
164 IntStream.range(1, 1000).parallel().sequential().forEach(consumer);
LongPrimitiveOpsTests.java 158 LongStream.range(1, 1000).sequential().forEach(consumer);
164 LongStream.range(1, 1000).parallel().sequential().forEach(consumer);
  /external/testng/src/test/java/test/testng285/
BugBase.java 9 @Test(sequential = true)
  /external/testng/src/test/java/test/tmp/
AA.java 7 @Test(sequential = true)
  /libcore/ojluni/src/main/java/java/util/stream/
BaseStream.java 37 * sequential and parallel aggregate operations. The following example
94 * Returns an equivalent stream that is sequential. May return
95 * itself, either because the stream was already sequential, or because
96 * the underlying stream state was modified to be sequential.
101 * @return a sequential stream
103 S sequential(); method in interface:BaseStream
DoubleStream.java 51 * A sequence of primitive double-valued elements supporting sequential and parallel
232 * While {@code limit()} is generally a cheap operation on sequential
242 * {@code limit()} in parallel pipelines, switching to sequential execution
243 * with {@link #sequential()} may improve performance.
261 * While {@code skip()} is generally a cheap operation on sequential
271 * {@code skip()} in parallel pipelines, switching to sequential execution
272 * with {@link #sequential()} may improve performance.
705 DoubleStream sequential(); method in interface:DoubleStream
729 * Returns an empty sequential {@code DoubleStream}.
731 * @return an empty sequential strea
    [all...]
ReferencePipeline.java 271 result.sequential().forEach(downstream);
299 result.sequential().forEach(downstreamAsInt);
327 result.sequential().forEach(downstreamAsDouble);
355 result.sequential().forEach(downstreamAsLong);
577 // Optimized sequential terminal operations for the head of the pipeline
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/parallel/
types.h 47 sequential, enumerator in enum:__gnu_parallel::_Parallelism
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/
types.h 47 sequential, enumerator in enum:__gnu_parallel::_Parallelism
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
types.h 47 sequential, enumerator in enum:__gnu_parallel::_Parallelism
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/parallel/
types.h 47 sequential, enumerator in enum:__gnu_parallel::_Parallelism
  /external/testng/src/main/java/org/testng/annotations/
Test.java 146 public boolean sequential() default false;
  /external/testng/src/main/java/org/testng/internal/annotations/
TestAnnotation.java 165 public void setSequential(boolean sequential) {
166 m_sequential = sequential;
  /external/valgrind/memcheck/tests/linux/
timerfd-syscall.stderr.exp 14 sequential timer test (100 ms clock) ...
37 sequential timer test (100 ms clock) ...
  /external/fio/tools/
genfio 45 -a : Run sequential test then parallel one
47 -s : Run sequential test (default value)
76 - a sequential bench on /dev/sdb /dev/sdc /dev/sdd /dev/sde for block size = 4k with write,randwrite,read,randread tests
78 - a sequential bench on /dev/sdb /dev/sdc /dev/sdd /dev/sde for block size = 128k with write,randwrite,read,randread tests
80 - a sequential bench on /dev/sdb /dev/sdc /dev/sdd /dev/sde for block size = 1m with write,randwrite,read,randread tests
280 OUTFILE=${PREFIX}$SHORT_HOSTNAME-$BLOCK_SIZE-sequential-$MODES-$PRINTABLE_DISKS.fio
  /external/curl/packages/vms/
pcsi_product_gnv_curl.com 5 $! This command file packages up the product CURL into a sequential
179 /format=sequential 'pcsi_option'
  /external/guava/guava-tests/test/com/google/common/hash/
FunnelsTest.java 103 Funnel<Iterable<? extends Object>> sequential = Funnels.sequentialFunnel(elementFunnel); local
104 sequential.funnel(Arrays.asList("foo", "bar", "baz", "quux"), primitiveSink);
  /frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
TransitionHelperKitkat.java 47 static Object createTransitionSet(boolean sequential) {
49 set.setOrdering(sequential ? TransitionSet.ORDERING_SEQUENTIAL :
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
StreamTestScenario.java 50 s = s.sequential();
110 // Wrap as parallel stream + sequential
114 m.apply(data.parallelStream()).sequential().forEach(b);
188 // Wrap sequential as parallel, + collect to list
197 // Wrap parallel as sequential,, + collect
201 for (U u : m.apply(data.parallelStream().sequential()).collect(Collectors.toList()))
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
StreamTestScenario.java 53 s = s.sequential();
113 // Wrap as parallel stream + sequential
117 m.apply(data.parallelStream()).sequential().forEach(b);
191 // Wrap sequential as parallel, + collect to list
200 // Wrap parallel as sequential,, + collect
204 for (U u : m.apply(data.parallelStream().sequential()).collect(Collectors.toList()))

Completed in 1522 milliseconds

1 2 3