- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 171 for combinations (0.71 sec)
-
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateRequestTest.java
// Then - Total bytes written should be 8-byte aligned assertEquals(0, bytesWritten % 8); } @ParameterizedTest @DisplayName("Should handle security mode combinations") @MethodSource("provideSecurityModes") void testSecurityModeCombinations(int securityMode) { // When request = new Smb2NegotiateRequest(mockConfig, securityMode); // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.7K bytes - Viewed (0) -
src/test/java/jcifs/ACETest.java
// Test full access combination int fullAccess = ACE.GENERIC_ALL | ACE.DELETE | ACE.READ_CONTROL | ACE.WRITE_DAC | ACE.WRITE_OWNER; assertTrue((fullAccess & ACE.GENERIC_ALL) != 0, "Full access should contain GENERIC_ALL"); assertTrue((fullAccess & ACE.DELETE) != 0, "Full access should contain DELETE"); // Test inheritance flags combination
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/NegotiateContextRequestTest.java
assertEquals(0, decoded.getSalt().length); } @Test @DisplayName("Should calculate size correctly") void testSizeCalculation() { // Test with various combinations context = new PreauthIntegrityNegotiateContext(mockConfig, new int[3], new byte[32]); assertEquals(4 + 6 + 32, context.size()); // header + 3*2 + 32
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0) -
docs/en/docs/advanced/settings.md
So, the function below it will be executed once for each combination of arguments. And then the values returned by each of those combinations of arguments will be used again and again whenever the function is called with exactly the same combination of arguments. For example, if you have a function: ```Python @lru_cache def say_hi(name: str, salutation: str = "Ms."):
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/QuantilesTest.java
* - scale with indexes taking integer-collection with compute taking a double-collection and with * computeInPlace; * - (except that, for non-finite values, we don't do all combinations exhaustively); * - percentiles with index and with indexes taking int-varargs, and with compute taking a * double-collection and with computeInPlace. */ private static final double ALLOWED_ERROR = 1.0e-10;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 29.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/QuantilesTest.java
* - scale with indexes taking integer-collection with compute taking a double-collection and with * computeInPlace; * - (except that, for non-finite values, we don't do all combinations exhaustively); * - percentiles with index and with indexes taking int-varargs, and with compute taking a * double-collection and with computeInPlace. */ private static final double ALLOWED_ERROR = 1.0e-10;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 29.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/BloomFilterTest.java
double actualReportedFpp = bf.expectedFpp(); assertThat(actualReportedFpp).isWithin(0.00033).of(expectedReportedFpp); } /** Sanity checking with many combinations of false positive rates and expected insertions */ public void testBasic() { for (double fpr = 0.0000001; fpr < 0.1; fpr *= 10) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 22K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
public static final int SMB2_LEASE_HANDLE_CACHING = 0x02; // H - Handle caching public static final int SMB2_LEASE_WRITE_CACHING = 0x04; // W - Write caching // Common combinations public static final int SMB2_LEASE_READ_HANDLE = 0x03; // RH public static final int SMB2_LEASE_READ_WRITE = 0x05; // RW public static final int SMB2_LEASE_FULL = 0x07; // RWH } ```
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NodeStatusResponseTest.java
assertArrayEquals(testMac, mockQueryAddress.macAddress); } @Test void readRDataWireFormat_shouldParseNodeFlags() throws Exception { // Prepare test data with various flag combinations byte[] src = new byte[100]; int srcIndex = 0; Field rDataLengthField = NameServicePacket.class.getDeclaredField("rDataLength"); rDataLengthField.setAccessible(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.3K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/dependencies-with-yield.md
And you could have a single dependency that requires several other dependencies with `yield`, etc. You can have any combinations of dependencies that you want. **FastAPI** will make sure everything is run in the correct order. /// note | Technical Details
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.7K bytes - Viewed (0)