- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 197 for K256 (0.02 sec)
-
src/test/java/jcifs/ntlmssp/Type3MessageTest.java
@DisplayName("Should handle long passwords") void testLongPasswords() throws Exception { // Given Type2Message type2 = createMockType2Message(); String longPassword = createTestString(256); // Very long password // When/Then assertDoesNotThrow(() -> { Type3Message type3 = new Type3Message(createMockContext(), type2, null, longPassword, "DOMAIN", "user", "WORKSTATION", 0);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/netbios/SocketInputStreamTest.java
// Create a message with 1000 bytes int size = 1000; byte[] data = new byte[size]; for (int i = 0; i < size; i++) { data[i] = (byte) (i % 256); } byte[] fullData = concat(messageHeader(size), data); InputStream in = new ByteArrayInputStream(fullData); SocketInputStream sis = new SocketInputStream(in);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.2K bytes - Viewed (0) -
src/archive/tar/format.go
// While this format is compatible with most tar readers, // the format has several limitations making it unsuitable for some usages. // Most notably, it cannot support sparse files, files larger than 8GiB, // filenames larger than 256 characters, and non-ASCII filenames. // // Reference: // http://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html#tag_20_92_13_06 FormatUSTAR
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Oct 13 18:36:46 UTC 2023 - 11.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupRequestTest.java
} @Test @DisplayName("Should always return 0 for readBytesWireFormat") void testReadBytesWireFormat() { // Given byte[] buffer = createTestData(256); // When int bytesRead = request.readBytesWireFormat(buffer, 0); // Then assertEquals(0, bytesRead); } @ParameterizedTestRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0) -
src/test/java/jcifs/ACETest.java
assertEquals(64, ACE.FILE_DELETE, "FILE_DELETE constant value"); assertEquals(128, ACE.FILE_READ_ATTRIBUTES, "FILE_READ_ATTRIBUTES constant value"); assertEquals(256, ACE.FILE_WRITE_ATTRIBUTES, "FILE_WRITE_ATTRIBUTES constant value"); assertEquals(0x00010000, ACE.DELETE, "DELETE constant value"); assertEquals(0x00020000, ACE.READ_CONTROL, "READ_CONTROL constant value");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/TransformerTest.java
// Create large response data byte[] largeBody = new byte[10 * 1024 * 1024]; // 10MB for (int i = 0; i < largeBody.length; i++) { largeBody[i] = (byte) (i % 256); } ResponseData responseData = new ResponseData(); responseData.setUrl("http://example.com/large"); responseData.setResponseBody(largeBody);Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 28K bytes - Viewed (0) -
api/except.txt
pkg syscall (openbsd-amd64), const CPUID_CFLUSH ideal-int pkg syscall (openbsd-amd64), const EFER_LMA = 1024 pkg syscall (openbsd-amd64), const EFER_LMA ideal-int pkg syscall (openbsd-amd64), const EFER_LME = 256 pkg syscall (openbsd-amd64), const EFER_LME ideal-int pkg syscall (openbsd-amd64), const EFER_NXE = 2048 pkg syscall (openbsd-amd64), const EFER_NXE ideal-int pkg syscall (openbsd-amd64), const EFER_SCE = 1
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Sun Jun 16 23:08:08 UTC 2024 - 34.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb3KeyDerivationTest.java
} @Test @DisplayName("Should handle large session key") void testDeriveKeys_LargeSessionKey() { // Given byte[] largeSessionKey = new byte[256]; // Larger than typical 16-byte key new SecureRandom().nextBytes(largeSessionKey); int dialect = Smb2Constants.SMB2_DIALECT_0311; // WhenRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.5K bytes - Viewed (0) -
api/go1.11.txt
pkg syscall (openbsd-amd64-cgo), func Accept4(int, int) (int, Sockaddr, error) pkg syscall (openbsd-amd64-cgo), func Pipe2([]int, int) error pkg syscall (windows-386), const TOKEN_ADJUST_SESSIONID = 256 pkg syscall (windows-386), const TOKEN_ADJUST_SESSIONID ideal-int pkg syscall (windows-386), const TOKEN_ALL_ACCESS = 983551 pkg syscall (windows-386), type AddrinfoW struct, Addr Pointer
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Aug 22 03:48:56 UTC 2018 - 25K bytes - Viewed (0) -
guava/src/com/google/common/math/BigIntegerMath.java
* of two. This can be any value, but higher values incur more class load time and linearly * increasing memory consumption. */ @VisibleForTesting static final int SQRT2_PRECOMPUTE_THRESHOLD = 256; @VisibleForTesting static final BigInteger SQRT2_PRECOMPUTED_BITS = new BigInteger("16a09e667f3bcc908b2fb1366ea957d3e3adec17512775099da2f590b0667322a", 16); /**Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 18.8K bytes - Viewed (0)