- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 295 for Parallel (0.07 seconds)
-
guava-tests/test/com/google/common/math/StatsTesting.java
/** * Returns a stream of a million primitive doubles. The stream is parallel, which should cause * {@code collect} calls to run in multithreaded mode, so testing the combiner as well as the * supplier and accumulator. */ static DoubleStream megaPrimitiveDoubleStream() { return DoubleStream.iterate(0.0, x -> x + 1.0).limit(MEGA_STREAM_COUNT).parallel(); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 03 05:21:26 GMT 2026 - 24K bytes - Click Count (0) -
.ci/scripts/packaging-test.ps1
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 15 22:00:26 GMT 2021 - 1.3K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/MultipartBody.kt
/** * This type is syntactically identical to "multipart/mixed", but the semantics are different. * In particular, in a parallel entity, the order of body parts is not significant. */ @JvmField val PARALLEL = "multipart/parallel".toMediaType() /** * The media-type multipart/form-data follows the rules of all multipart MIME data streams asCreated: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 10.9K bytes - Click Count (0) -
fess-crawler-opensearch/pom.xml
<artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <!-- OpenSearch tests must run sequentially --> <parallel>none</parallel> <forkCount>1</forkCount> <reuseForks>false</reuseForks> <argLine> --add-opens java.base/java.net=ALL-UNNAMED -Xmx2048m -XX:+UseG1GC </argLine> </configuration>
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Thu Mar 05 23:30:42 GMT 2026 - 3.9K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/GraphConstants.java
static final String MULTIPLE_EDGES_CONNECTING = "Cannot call edgeConnecting() when parallel edges exist between %s and %s. Consider calling " + "edgesConnecting() instead."; static final String PARALLEL_EDGES_NOT_ALLOWED = "Nodes %s and %s are already connected by a different edge. To construct a graph " + "that allows parallel edges, call allowsParallelEdges(true) on the Builder.";Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Jan 18 02:54:30 GMT 2025 - 3.1K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/NetworkBuilder.java
NetworkBuilder<N1, E1> castBuilder = cast(); return new ImmutableNetwork.Builder<>(castBuilder); } /** * Specifies whether the network will allow parallel edges. Attempting to add a parallel edge to a * network that does not allow them will throw an {@link UnsupportedOperationException}. * * <p>The default value is {@code false}. */ @CanIgnoreReturnValue
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Apr 02 14:49:41 GMT 2026 - 7.3K bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+multijob+platform-support-windows.yml
- axis: type: label-expression name: os values: - "windows-2012-r2" - "windows-2016" - "windows-2019" # We shred out Windows testing into 4 parallel builds like on intake for expediency. # Our tests run much slower on Windows so this avoids issues with builds timing out. - axis: type: user-defined name: GRADLE_TASK values:Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Jun 09 01:50:21 GMT 2021 - 1.7K bytes - Click Count (0) -
docs/ja/docs/async.md
<img src="/img/async/parallel-burgers/parallel-burgers-04.png" class="illustration"> ้ทใๆ้ ๐ ใซใฆใณใฟใผๅใงๅพ ใฃใๅพใใใใใใฌใธไฟ/ๆ็ไบบ ๐จโ๐ณ ใใใณใใผใฌใผใๆใฃใฆๆปใฃใฆใใพใใ <img src="/img/async/parallel-burgers/parallel-burgers-05.png" class="illustration"> ใใณใใผใฌใผใๅใๅใใๅฅฝใใชไบบใจใใผใใซใซ่กใใพใใ ้ฃในใฆใใใใพใใงใใโน <img src="/img/async/parallel-burgers/parallel-burgers-06.png" class="illustration"> ใปใจใใฉใฎๆ้ใใซใฆใณใฟใผๅใงๅพ ใค ๐ ใฎใซ่ฒปใใใใใใใใพใ่ฉฑใใใใใใกใใคใใใใงใใพใใใงใใใ๐
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 27.9K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/math/StatsTesting.java
/** * Returns a stream of a million primitive doubles. The stream is parallel, which should cause * {@code collect} calls to run in multithreaded mode, so testing the combiner as well as the * supplier and accumulator. */ static DoubleStream megaPrimitiveDoubleStream() { return DoubleStream.iterate(0.0, x -> x + 1.0).limit(MEGA_STREAM_COUNT).parallel(); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 03 05:21:26 GMT 2026 - 24K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/GradleDistroTestTask.java
line.append(" --project-cache-dir "); line.append(isWindows ? convertWindowsPath(getProject(), cacheDir) : convertLinuxPath(getProject(), cacheDir)); line.append(" -S"); line.append(" --parallel"); line.append(" -D'org.gradle.logging.level'=" + getProject().getGradle().getStartParameter().getLogLevel()); if (testClass != null) { line.append(" --tests="); line.append(testClass);
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 2.6K bytes - Click Count (0)