- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 241 for sub3 (0.02 sec)
-
src/cmd/asm/internal/asm/testdata/armerror.s
MOVF.S F9, (R4) // ERROR "invalid .S suffix" MOVF.S 0xfff0(R0), F1 // ERROR "invalid .S suffix" MOVF.S F9, 0xfff0(R4) // ERROR "invalid .S suffix" ADDF.S F1, F2, F3 // ERROR "invalid .S suffix" SUBD.U F1, F2 // ERROR "invalid .U suffix" NEGF.W F9, F10 // ERROR "invalid .W suffix" ABSD.P F9, F10 // ERROR "invalid .P suffix" MOVW.S FPSR, R0 // ERROR "invalid .S suffix"
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Oct 23 15:18:14 UTC 2024 - 14.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/PreauthIntegrityTest.java
assertNotEquals(hash[0], hash2[0]); } } /** * Test pre-auth integrity with SMB3.1.1 */ @Test @DisplayName("Pre-auth integrity should work with SMB3.1.1") void testPreauthWithSmb311() throws Exception { // Setup SMB3.1.1 when(negotiateResponse.getSelectedDialect()).thenReturn(DialectVersion.SMB311);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
/** * AES-128-CCM cipher identifier for SMB3 encryption */ public static final int CIPHER_AES_128_CCM = EncryptionNegotiateContext.CIPHER_AES128_CCM; /** * AES-128-GCM cipher identifier for SMB3.1.1 encryption */ public static final int CIPHER_AES_128_GCM = EncryptionNegotiateContext.CIPHER_AES128_GCM; /** * AES-256-CCM cipher identifier for SMB3 encryption (future support) */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0) -
README.md
## Version [Versions in Maven Repository](https://repo1.maven.org/maven2/org/codelibs/jcifs/) ## Requirements - Java 17 or higher - SLF4J for logging - Bouncy Castle (for SMB3 encryption support) ## Using Maven ```xml
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 09:24:52 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2Constants.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.smb2; /** * Constants for SMB2/SMB3 protocol. * * This class contains protocol-specific constants, command codes, * flags, and other values used in SMB2/SMB3 communication. * * @author mbechler */ public final class Smb2Constants { /** * */ private Smb2Constants() { }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/JoinerTest.java
rest[i] = partsArray[i + 2]; } assertEquals(expected, joiner.join(partsArray[0], partsArray[1], rest)); StringBuilder sb3 = new StringBuilder().append('x'); joiner.appendTo(sb3, partsArray[0], partsArray[1], rest); assertEquals("x" + expected, sb3.toString()); } } public void test_useForNull_skipNulls() { Joiner j = Joiner.on("x").useForNull("y");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/compression/CompressionService.java
package jcifs.smb.compression; import jcifs.CIFSException; /** * Interface for SMB3 compression services. * * Provides compression and decompression functionality for SMB3 protocol * data transfers with support for multiple compression algorithms. */ public interface CompressionService { /** * Compression algorithm constants matching SMB3 specification. */ public static final int COMPRESSION_NONE = 0x0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/ServerMessageBlockTest.java
smb2.mid = 100; ServerMessageBlock smb3 = new TestServerMessageBlock(); smb3.mid = 200; assertEquals(smb1, smb2); assertNotEquals(smb1, smb3); assertEquals(smb1.hashCode(), smb2.hashCode()); assertNotEquals(smb1.hashCode(), smb3.hashCode()); assertNotEquals(smb1, new Object()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/arm.s
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Dec 15 20:51:01 UTC 2023 - 69K bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java
new ForwardingWrapperTester() .testForwarding( Sub.class, new Function<Sub, Sub>() { @Override public Sub apply(Sub sub) { return new ForwardingSub(sub); } }); } interface Base { CharSequence getId(); } interface Sub extends Base { @Override String getId(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 15.7K bytes - Viewed (0)