- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 244 for Parallel (0.13 sec)
-
internal/bucket/bandwidth/monitor_test.go
BucketStats: test2Want, }, want2: &BucketBandwidthReport{ BucketStats: test2Want2, }, }, } for _, tt := range tests { tt := tt t.Run(tt.name, func(t *testing.T) { t.Parallel() thr := bucketThrottle{ NodeBandwidthPerSec: 1024 * 1024, } th := make(map[BucketOptions]*bucketThrottle) th[BucketOptions{Name: "bucket", ReplicationARN: "arn"}] = &thr m := &Monitor{
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Sep 06 03:21:59 UTC 2023 - 4.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/extensions.kt
param("env.ANDROID_SDK_ROOT", os.androidHome) param("env.GRADLE_INTERNAL_REPO_URL", "%gradle.internal.repository.url%") if (os == Os.MACOS) { // Use fewer parallel forks on macOs, since the agents are not very powerful. param("maxParallelForks", "2") } if (os == Os.LINUX || os == Os.MACOS) { param("env.LC_ALL", "en_US.UTF-8") }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 10 03:25:26 UTC 2024 - 13.2K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/Graph.java
* <li>graphs whose nodes/edges are insertion-ordered, sorted, or unordered * </ul> * * <p>{@code Graph} explicitly does not support parallel edges, and forbids implementations or * extensions with parallel edges. If you need parallel edges, use {@link Network}. * * <h3>Building a {@code Graph}</h3> * * <p>The implementation classes that {@code common.graph} provides are not public, by design. To
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 10 15:41:27 UTC 2024 - 13.7K bytes - Viewed (0) -
guava/src/com/google/common/graph/Graph.java
* <li>graphs whose nodes/edges are insertion-ordered, sorted, or unordered * </ul> * * <p>{@code Graph} explicitly does not support parallel edges, and forbids implementations or * extensions with parallel edges. If you need parallel edges, use {@link Network}. * * <h3>Building a {@code Graph}</h3> * * <p>The implementation classes that {@code common.graph} provides are not public, by design. To
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 10 15:41:27 UTC 2024 - 13.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
public static final String ROLE_FIELD_NAME = "roleFieldName"; public static final String LANG_FIELD_NAME = "langFieldName"; public static final String PARALLEL_PROCESSING = "parallel"; public static final String MAX_CONTENT_LENGTH = "maxContextLength"; private DefaultKeys() { } } public String getScrollTimeout() {
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 11.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
SpecificBuild.FlakyTestQuarantineWindows, SpecificBuild.GradleceptionWithMaxLtsJdk, ), functionalTests = listOf( TestCoverage(7, TestType.parallel, Os.LINUX, JvmCategory.MAX_LTS_VERSION, DEFAULT_LINUX_FUNCTIONAL_TEST_BUCKET_SIZE), TestCoverage(8, TestType.soak, Os.LINUX, JvmCategory.MAX_LTS_VERSION, 1),
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 16 06:14:14 UTC 2024 - 22.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/graph/NetworkMutationTest.java
network.addNode(gen.nextInt(NODE_POOL_SIZE)); } ArrayList<Integer> nodeList = new ArrayList<>(network.nodes()); for (int i = 0; i < NUM_EDGES; ++i) { // Parallel edges are allowed, so this should always succeed. assertThat( network.addEdge( getRandomElement(nodeList, gen), getRandomElement(nodeList, gen), new Object())) .isTrue();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 10 19:42:18 UTC 2024 - 4.5K bytes - Viewed (0) -
pyproject.toml
# Ref: https://github.com/python-trio/trio/pull/3054 # Remove once there's a new version of Trio 'ignore:The `hash` argument is deprecated*:DeprecationWarning:trio', ] [tool.coverage.run] parallel = true data_file = "coverage/.coverage" source = [ "docs_src", "tests", "fastapi" ] context = '${CONTEXT}' dynamic_context = "test_function" omit = [
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 22 14:19:56 UTC 2024 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/StringConversionUtil.java
/** FULLWIDTH TILDE */ public static final char FULLWIDTH_TILDE = '\uFF5E'; /** DOUBLE VERTICAL LINE */ public static final char DOUBLE_VERTICAL_LINE = '\u2016'; /** PARALLEL TO */ public static final char PARALLEL_TO = '\u2225'; /** MINUS SIGN */ public static final char MINUS_SIGN = '\u2212'; /** FULLWIDTH HYPHEN-MINUS */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 6.5K bytes - Viewed (0) -
internal/logger/target/testlogger/testlogger.go
// This package should only be included by test files. // To enable logging for a test, use: // // func TestSomething(t *testing.T) { // defer testlogger.T.SetLogTB(t)() // // This cannot be used for parallel tests. package testlogger import ( "context" "fmt" "os" "strings" "sync/atomic" "testing" "github.com/minio/minio/internal/logger" "github.com/minio/minio/internal/logger/target/types"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 4K bytes - Viewed (0)