- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for FF (0.01 sec)
-
src/main/java/jcifs/smb/SmbEnumerationUtil.java
/** * */ private final SmbFileFilter ff; /** * @param ff */ ResourceFilterWrapper(final SmbFileFilter ff) { this.ff = ff; } SmbFileFilter getFileFilter() { return this.ff; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/MD4.java
int D = context[3]; A = FF(A, B, C, D, X[0], 3); D = FF(D, A, B, C, X[1], 7); C = FF(C, D, A, B, X[2], 11); B = FF(B, C, D, A, X[3], 19); A = FF(A, B, C, D, X[4], 3); D = FF(D, A, B, C, X[5], 7); C = FF(C, D, A, B, X[6], 11); B = FF(B, C, D, A, X[7], 19); A = FF(A, B, C, D, X[8], 3); D = FF(D, A, B, C, X[9], 7);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/MIENameTest.java
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/smb1/util/HexdumpTest.java
// Test positive values assertEquals("000000FF", Hexdump.toHexString(255, 8)); assertEquals("00FF", Hexdump.toHexString(255, 4)); assertEquals("FF", Hexdump.toHexString(255, 2)); // Test larger values assertEquals("00001234", Hexdump.toHexString(0x1234, 8)); assertEquals("1234", Hexdump.toHexString(0x1234, 4));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
throws SmbException { final ArrayList list = new ArrayList(); doEnum(list, false, wildcard, searchAttributes, fnf, ff); return (String[]) list.toArray(new String[list.size()]); } SmbFile[] listFiles(final String wildcard, final int searchAttributes, final SmbFilenameFilter fnf, final SmbFileFilter ff) throws SmbException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/av/AvFlagsTest.java
AvFlags negativeAvFlags = new AvFlags(negativeBytes); assertNotNull(negativeAvFlags, "AvFlags object should not be null for negative bytes"); assertEquals(-1, negativeAvFlags.getFlags(), "Flags should be -1 for all FF bytes"); } /** * Test constructor with integer flags. */ @Test void testAvFlagsIntConstructor() { // Test with a positive integer int flags = 0x12345678;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.4K bytes - Viewed (0) -
src/test/java/jcifs/util/HexdumpTest.java
assertEquals("FFFFFFFF", Hexdump.toHexString(-1, 8)); // Test different sizes assertEquals("00", Hexdump.toHexString(0, 2)); assertEquals("FF", Hexdump.toHexString(255, 2)); assertEquals("1234", Hexdump.toHexString(0x1234, 4)); } @Test @DisplayName("Should convert long to hex string with padding") void testLongToHexString() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbEnumerationUtilTest.java
import jcifs.SmbResource; import jcifs.SmbResourceLocator; @ExtendWith(MockitoExtension.class) class SmbEnumerationUtilTest { @Mock SmbFilenameFilter fnf; @Mock SmbFileFilter ff; // Utility to create a private inner class instance reflectively private static Object newPrivateInner(String simpleName, Class<?>[] paramTypes, Object... args) { try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt
) assertInvalid( "http://[0:0:0:0:0:1:256.255.255.255]/", "Invalid URL host: \"[0:0:0:0:0:1:256.255.255.255]\"", ) assertInvalid( "http://[0:0:0:0:0:1:ff.255.255.255]/", "Invalid URL host: \"[0:0:0:0:0:1:ff.255.255.255]\"", ) assertInvalid( "http://[0:0:0:0:0:0:1:255.255.255.255]/", "Invalid URL host: \"[0:0:0:0:0:0:1:255.255.255.255]\"", ) assertInvalid(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Aug 04 07:38:48 UTC 2025 - 69.9K bytes - Viewed (0)