- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,596 for Be (0.02 sec)
-
src/test/java/jcifs/internal/smb2/Smb2ConstantsTest.java
@DisplayName("SMB 2.0.2 dialect should be 0x0202") void testDialect0202() { assertEquals(0x0202, Smb2Constants.SMB2_DIALECT_0202, "SMB 2.0.2 dialect must be 0x0202"); } @Test @DisplayName("SMB 2.1 dialect should be 0x0210") void testDialect0210() { assertEquals(0x0210, Smb2Constants.SMB2_DIALECT_0210, "SMB 2.1 dialect must be 0x0210"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComNtTransactionTest.java
assertEquals(smbComNtTransaction.parameterOffset, SmbComTransaction.readInt4(dst, 23), "parameterOffset should be written correctly"); assertEquals(smbComNtTransaction.dataCount, SmbComTransaction.readInt4(dst, 27), "dataCount should be written correctly"); assertEquals(smbComNtTransaction.dataOffset, SmbComTransaction.readInt4(dst, 31), "dataOffset should be written correctly");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/UnicodeStringTest.java
assertTrue(unicodeStringTrue.zterm, "zterm should be true"); assertEquals(0, unicodeStringTrue.length, "Length should be 0 for empty string"); assertEquals(0, unicodeStringTrue.maximum_length, "Maximum length should be 0 for empty string"); assertNull(unicodeStringTrue.buffer, "Buffer should be null for empty string"); // Test with zterm = false
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2QueryFSInformationTest.java
assertEquals(SmbComTransaction.TRANS2_QUERY_FS_INFORMATION, cmd.subCommand, "subCommand should be QUERY_FS_INFORMATION"); // the fields are set in the constructor – check that the counts match assertEquals(2, cmd.totalParameterCount, "totalParameterCount should be 2"); assertEquals(0, cmd.totalDataCount, "totalDataCount should be 0");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2QueryFSInformationResponseTest.java
assertEquals(SmbComTransaction.SMB_COM_TRANSACTION2, response.command, "Command should be SMB_COM_TRANSACTION2"); assertEquals(SmbComTransaction.TRANS2_QUERY_FS_INFORMATION, response.subCommand, "SubCommand should be TRANS2_QUERY_FS_INFORMATION"); } /** * Tests the readDataWireFormat method with the SMB_INFO_ALLOCATION information level. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/UUIDTest.java
assertEquals(TIME_MID, uuid.time_mid, "time_mid should be parsed correctly"); assertEquals(TIME_HI_AND_VERSION, uuid.time_hi_and_version, "time_hi_and_version should be parsed correctly"); assertEquals(CLOCK_SEQ_HI_AND_RESERVED, uuid.clock_seq_hi_and_reserved, "clock_seq_hi_and_reserved should be parsed correctly");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.2K bytes - Viewed (0) -
src/test/java/jcifs/util/SmbCircuitBreakerTest.java
assertTrue(cbWithMetrics.getMinResponseTime() > 0, "Min response time should be tracked"); assertTrue(cbWithMetrics.getMaxResponseTime() > 0, "Max response time should be tracked"); assertTrue(cbWithMetrics.getP95ResponseTime() > 0, "P95 response time should be tracked");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.2K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/ndr/NdrSmallTest.java
assertEquals(0, ndrSmall.value, "Value should be initialized correctly for zero."); } @Test void testConstructor_negativeValue() { // Test with a negative value, expecting it to be masked to a positive byte NdrSmall ndrSmall = new NdrSmall(-1); // -1 & 0xFF = 255 assertEquals(255, ndrSmall.value, "Negative value should be masked to its unsigned byte equivalent."); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/rdma/RdmaConfigurationTest.java
assertTrue(config.isUseRDMA(), "RDMA should be enabled"); assertEquals("disni", config.getRdmaProvider(), "Provider should be disni"); assertEquals(16384, config.getRdmaReadWriteThreshold(), "Threshold should be 16KB"); assertEquals(131072, config.getRdmaMaxSendSize(), "Max send size should be 128KB"); assertEquals(131072, config.getRdmaMaxReceiveSize(), "Max receive size should be 128KB");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 5.1K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheBuilder.java
* requested entries may be evicted on each cache modification. * * <p>If {@link #expireAfterWrite expireAfterWrite} or {@link #expireAfterAccess expireAfterAccess} * is requested entries may be evicted on each cache modification, on occasional cache accesses, or * on calls to {@link Cache#cleanUp}. Expired entries may be counted by {@link Cache#size}, but will * never be visible to read or write operations. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 51.7K bytes - Viewed (0)