- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 91 for 255 (0.02 sec)
-
src/test/java/jcifs/pac/PacDataInputStreamTest.java
} @Test public void testReadUnsignedByte() throws IOException { byte[] data = new byte[] { (byte) 0xFF }; PacDataInputStream pdis = createInputStream(data); assertEquals(255, pdis.readUnsignedByte()); } @Test public void testReadUnsignedShort() throws IOException { // Little-endian 0xFFFF -> 0xFF 0xFF
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 9.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/FormBodyTest.kt
assertThat(formEncode(125)).isEqualTo("%7D") assertThat(formEncode(126)).isEqualTo("%7E") assertThat(formEncode(127)).isEqualTo("%7F") assertThat(formEncode(128)).isEqualTo("%C2%80") assertThat(formEncode(255)).isEqualTo("%C3%BF") } @Throws(IOException::class) private fun formEncode(codePoint: Int): String { // Wrap the codepoint with regular printable characters to prevent trimming. val body =
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RegularImmutableMap.java
for (int h = Hashing.smear(key.hashCode()); ; h++) { h &= mask; int previousKeyIndex = hashTable[h] & BYTE_MASK; // unsigned read if (previousKeyIndex == BYTE_MASK) { // -1 signed becomes 255 unsigned hashTable[h] = (byte) outKeyIndex; break; } else if (key.equals(alternatingKeysAndValues[previousKeyIndex])) { duplicateKey = new Builder.DuplicateKey(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 22.5K bytes - Viewed (0) -
src/main/java/jcifs/util/InputValidator.java
public static final int MAX_SMB_PATH_LENGTH = 32767; // Windows MAX_PATH public static final int MAX_USERNAME_LENGTH = 256; public static final int MAX_DOMAIN_LENGTH = 255; public static final int MAX_SHARE_NAME_LENGTH = 80; public static final int MAX_BUFFER_SIZE = 65536; // 64KB default max buffer public static final int MAX_SMB2_BUFFER_SIZE = 8388608; // 8MB for SMB2/3
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 13.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImplTest.java
void testDecodeMaxFileNameLength() throws SMBProtocolDecodingException { // Create a very long filename (but within reasonable bounds) StringBuilder sb = new StringBuilder(); for (int i = 0; i < 255; i++) { sb.append('A'); } String longFileName = sb.toString(); byte[] buffer = createValidNotificationBuffer(longFileName, FileNotifyInformation.FILE_ACTION_ADDED);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/jcifs/util/ServerResponseValidatorTest.java
} @Test public void testStringTooLong() throws Exception { String longString = "a".repeat(300); assertThrows(SmbException.class, () -> { validator.validateString(longString, 255, "test"); }); } @Test public void testStringWithNullBytes() throws Exception { assertThrows(SmbException.class, () -> {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.2K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/BloomFilter.java
checkArgument(numHashFunctions > 0, "numHashFunctions (%s) must be > 0", numHashFunctions); checkArgument( numHashFunctions <= 255, "numHashFunctions (%s) must be <= 255", numHashFunctions); this.bits = checkNotNull(bits); this.numHashFunctions = numHashFunctions; this.funnel = checkNotNull(funnel); this.strategy = checkNotNull(strategy); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 31 13:15:26 UTC 2025 - 26.9K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.25.md
- [Changelog since v1.25.5](#changelog-since-v1255) - [Changes by Kind](#changes-by-kind-9) - [Feature](#feature-9) - [Bug or Regression](#bug-or-regression-9) - [Dependencies](#dependencies-10) - [Added](#added-10) - [Changed](#changed-10) - [Removed](#removed-10) - [v1.25.5](#v1255) - [Downloads for v1.25.5](#downloads-for-v1255) - [Source Code](#source-code-11)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Mon May 06 09:23:20 UTC 2024 - 419.1K bytes - Viewed (0) -
cmd/apierrorcode_string.go
_ = x[ErrUnsupportedSQLStructure-250] _ = x[ErrUnsupportedSyntax-251] _ = x[ErrUnsupportedRangeHeader-252] _ = x[ErrLexerInvalidChar-253] _ = x[ErrLexerInvalidOperator-254] _ = x[ErrLexerInvalidLiteral-255] _ = x[ErrLexerInvalidIONLiteral-256] _ = x[ErrParseExpectedDatePart-257] _ = x[ErrParseExpectedKeyword-258] _ = x[ErrParseExpectedTokenType-259] _ = x[ErrParseExpected2TokenTypes-260]
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 16 07:34:24 UTC 2025 - 21.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlXpathExtractor.java
inputSource.setEncoding(enc); parser.parse(inputSource); final Document document = parser.getDocument(); final StringBuilder buf = new StringBuilder(255); final XPathNodes nodeList = getXPathAPI().selectNodeList(document, targetNodePath); for (int i = 0; i < nodeList.size(); i++) { final Node node = nodeList.get(i);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10.3K bytes - Viewed (0)