- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 301 for consistency (0.49 sec)
-
docs/distributed/README.md
### Consistency Guarantees MinIO follows strict **read-after-write** and **list-after-write** consistency model for all i/o operations both in distributed and standalone modes. This consistency model is only guaranteed if you use disk filesystems such as xfs, zfs or btrfs etc.. for distributed setup.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/OsService.java
* The value is converted to lowercase for consistency. * * @return the operating system name (never null) */ @Nonnull String name(); /** * Returns the OS architecture as reported by the system property "os.arch". * The value is converted to lowercase for consistency. * * @return the operating system architecture (never null) */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Feb 10 14:12:18 UTC 2025 - 3.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/SmbNegotiationRequestTest.java
@DisplayName("Test implementation consistency") void testImplementationConsistency() { // Given SmbNegotiationRequest consistentRequest = new TestSmbNegotiationRequest(true); // When & Then - verify consistency across multiple calls for (int i = 0; i < 10; i++) { assertTrue(consistentRequest.isSigningEnforced(), "Implementation should consistently return the same value"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/ndr/NdrShortTest.java
ndrShort1.encode(encodeBuffer); NdrShort ndrShort2 = new NdrShort(0); ndrShort2.decode(decodeBuffer); // Then: Should maintain masked value consistency verify(encodeBuffer).enc_ndr_short(maskedValue); verify(decodeBuffer).dec_ndr_short(); assertEquals(maskedValue, ndrShort1.value); assertEquals(maskedValue, ndrShort2.value);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/RequestParameterTest.java
String[] values = { "test" }; RequestParameter param = new RequestParameter(name, values); assertEquals(name, param.getName()); // Call multiple times to ensure consistency assertEquals(name, param.getName()); assertEquals(name, param.getName()); } public void test_getValues() { // Test getValues method explicitly
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/MonotonicClock.java
* is computed from the monotonic duration since system start to ensure consistency * between time measurements. * <p> * This implementation is singleton-based and always uses UTC timezone. The clock * cannot be adjusted to different timezones to maintain consistent monotonic behavior. * Users needing local time representation should convert the result of {@link #instant()}
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 15 06:28:29 UTC 2025 - 5.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistantTest.java
// Test multiple calls to the same method return consistent results public void test_methodConsistency() { // Test assistClientInvokeNames consistency String[] names1 = invokerAssistant.assistClientInvokeNames(); String[] names2 = invokerAssistant.assistClientInvokeNames(); assertSame(names1, names2); // Test assistByPassInvokeNames consistency
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/LocalRepositoryManager.java
* <ul> * <li>Determining the storage path for locally installed artifacts</li> * <li>Managing the layout and organization of cached remote artifacts</li> * <li>Maintaining consistency in artifact storage patterns</li> * </ul> * * <p>This interface is part of Maven's repository management system and works in * conjunction with {@link RemoteRepository} and {@link LocalRepository} to provide
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 3.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java
public void test_getMessage_consistency() { // Test that getMessage returns consistent results String message = "Consistent message"; JobNotFoundException exception = new JobNotFoundException(message); assertEquals(message, exception.getMessage()); assertEquals(message, exception.getMessage()); // Call twice to verify consistency assertEquals(message, exception.getLocalizedMessage()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java
} // Test interface contract consistency public void test_interfaceContract() { TestSearchLogEvent event = new TestSearchLogEvent("contract-id", 5L, "contract-type"); // Test consistency of returned values String id1 = event.getId(); String id2 = event.getId(); assertEquals(id1, id2);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.6K bytes - Viewed (0)