- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 171 for combinations (0.09 sec)
-
android/guava-tests/test/com/google/common/cache/CacheBuilderFactory.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/jcifs/SmbConstantsTest.java
// Test attribute combinations int readOnlyHidden = SmbConstants.ATTR_READONLY | SmbConstants.ATTR_HIDDEN; assertEquals(0x03, readOnlyHidden); } @Test @DisplayName("Should validate access mask combinations") void testAccessMaskCombinations() { // Test common access combinations
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java
.isWithin(ALLOWED_ERROR) .of(MANY_VALUES_SUM_OF_PRODUCTS_OF_DELTAS / MANY_VALUES_COUNT); // For datasets of many double values, we test many combinations of finite and non-finite // x-values: for (ManyValues values : ALL_MANY_VALUES) { PairedStatsAccumulator accumulator = createFilledPairedStatsAccumulator(values.asIterable(), OTHER_MANY_VALUES);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 23.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/ACETest.java
ace.flags = ACE.FLAGS_INHERITED | ACE.FLAGS_OBJECT_INHERIT; assertTrue(ace.isInherited()); } @ParameterizedTest @DisplayName("Test getApplyToText with different flag combinations") @CsvSource({ "0x00, This folder only", "'0x03', 'This folder, subfolders and files'", "0x0B, Subfolders and files only",
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.6K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2.kt
"SETTINGS", "PUSH_PROMISE", "PING", "GOAWAY", "WINDOW_UPDATE", "CONTINUATION", ) /** * Lookup table for valid flags for DATA, HEADERS, CONTINUATION. Invalid combinations are * represented in binary. */ private val FLAGS = arrayOfNulls<String>(0x40) // Highest bit flag is 0x20. private val BINARY = Array(256) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 5.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/tomcat/valve/SuppressErrorReportValveTest.java
valve.setShowServerInfo(true); assertTrue(valve.isShowServerInfo()); } public void test_settingsBothTrueAndFalse() { // Test all combinations of settings valve.setShowReport(true); valve.setShowServerInfo(true); assertTrue(valve.isShowReport()); assertTrue(valve.isShowServerInfo()); valve.setShowReport(true);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportInternalTest.java
assertEquals(disconnected, transport.isDisconnected()); verify(transport, times(1)).isDisconnected(); } // Happy path + edge: disconnect with all flag combinations @ParameterizedTest @DisplayName("disconnect returns expected for flag combinations") @CsvSource({ // hard, inuse, expected "true,true,false", "true,false,true", "false,true,true", "false,false,false" })
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/StatsAccumulatorTest.java
assertThat(manyValuesAccumulatorByAddAllStatsAccumulator.mean()) .isWithin(ALLOWED_ERROR) .of(MANY_VALUES_MEAN); // For datasets of many double values created from an iterable, we test many combinations of // finite and non-finite values: for (ManyValues values : ALL_MANY_VALUES) { StatsAccumulator accumulator = new StatsAccumulator(); StatsAccumulator accumulatorByAddAllStats = new StatsAccumulator();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 36.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/Smb2LeaseStateTest.java
assertEquals(Smb2LeaseState.SMB2_LEASE_FULL, fullLease); } @Test @DisplayName("Should handle custom state combinations") void testCustomStateCombinations() { int customState = 0x06; // Write + Handle but no Read assertFalse(Smb2LeaseState.hasReadCaching(customState));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 00:16:17 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrConnect2Test.java
Arguments.of("\\\\server.domain.com", 0)); } @ParameterizedTest @MethodSource("provideParameters") @DisplayName("should accept various parameter combinations") void testConstructorSucceeds(String systemName, int accessMask) { // Arrange SamrPolicyHandle ph = createMockPolicyHandle(); // Act & Assert - constructor should not throw
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.6K bytes - Viewed (0)