- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 45 for maxLen (0.04 sec)
-
src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.7K bytes - Viewed (0) -
src/main/java/jcifs/util/Strings.java
* @param maxLen the maximum length to search * @return position of terminating null byte */ public static int findTermination(final byte[] buffer, final int bufferIndex, final int maxLen) { int len = 0; while (buffer[bufferIndex + len] != (byte) 0x00) { len++; if (len > maxLen) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
break; } } sorted.add(j, dirents[i]); } if (maxLen > 50) { maxLen = 50; } maxLen *= 9; /* convert to px */ out = resp.getWriter(); resp.setContentType("text/html");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
break; } } sorted.add(j, dirents[i]); } if (maxLen > 50) { maxLen = 50; } maxLen *= 9; /* convert to px */ resp.setContentType("text/html"); out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
* @param src source buffer * @param srcIndex starting index in the buffer * @param maxLen maximum length to read * @param unicode whether to use Unicode encoding * @return read string */ public String readString(final byte[] src, int srcIndex, final int maxLen, final boolean unicode) { if (unicode) { // Unicode requires word alignment
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2GetDfsReferralTest.java
assertEquals(expected, written); } // Helper method to extract string from buffer private String extractStringFromBuffer(byte[] buffer, int offset, int maxLen) { int end = offset; while (end < offset + maxLen && buffer[end] != 0) { end++; } return new String(buffer, offset, end - offset, StandardCharsets.UTF_8); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.6K bytes - Viewed (0) -
cmd/postpolicyform.go
minLen, err := toInteger(condt[1]) if err != nil { return parsedPolicy, err } maxLen, err := toInteger(condt[2]) if err != nil { return parsedPolicy, err } parsedPolicy.Conditions.ContentLengthRange = contentLengthRange{ Min: minLen, Max: maxLen, Valid: true, } default: // Condition should be valid.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 12.1K bytes - Viewed (0) -
src/bytes/bytes.go
// r is 2 to 4 bytes if len(chars) == width { if chars == string(r) { return i } continue } // Use bytealg.IndexString for performance if available. if bytealg.MaxLen >= width { if bytealg.IndexString(chars, string(r)) >= 0 { return i } continue } } for _, ch := range chars { if r == ch { return i } } }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Sep 03 14:04:47 UTC 2025 - 35.5K bytes - Viewed (0) -
.github/workflows/maven.yml
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Aug 25 07:07:00 UTC 2025 - 8.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeTest.java
// Test field with CustomSize annotation for testing @CustomSize(minKey = "test.min", maxKey = "test.max") private String testField; // Test field with only minKey @CustomSize(minKey = "test.min.only") private String testFieldMinOnly; // Test field with only maxKey @CustomSize(maxKey = "test.max.only") private String testFieldMaxOnly; // Test field with custom message
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.2K bytes - Viewed (0)