- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 387 for charms (0.03 sec)
-
src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java
} return Encdec.dec_uint16be(tmp, 0) & 0xFFFF; } @Override public final char readChar() throws SmbException { if (read(tmp, 0, 2) < 0) { throw new SmbException("EOF"); } return (char) Encdec.dec_uint16be(tmp, 0); } @Override public final int readInt() throws SmbException { if (read(tmp, 0, 4) < 0) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.1K bytes - Viewed (0) -
docs/fr/docs/features.md
### Validation * Validation pour la plupart (ou tous?) les **types de données** Python incluant: * objets JSON (`dict`). * listes JSON (`list`) définissant des types d'éléments. * Champs String (`str`), définition de longueur minimum ou maximale. * Nombres (`int`, `float`) avec valeur minimale and maximale, etc. * Validation pour des types plus exotiques, tel que: * URL. * Email.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 11.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectRequestTest.java
assertArrayEquals(expectedBytes, actualBytes); // Verify it's actually UTF-16LE (each ASCII char should be followed by 0x00) int pathStart = Smb2Constants.SMB2_HEADER_LENGTH + 8; for (int i = 0; i < testPath.length(); i++) { char c = testPath.charAt(i); if (c < 128) { // ASCII character assertEquals(c, buffer[pathStart + i * 2]);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/MultipartReaderTest.kt
), ) assertThat(foxPart.body.readUtf8()).isEqualTo("Fox") assertThat(reader.nextPart()).isNull() } /** * Read 100 MiB of 'a' chars. This was really slow due to a performance bug in [MultipartReader], * and will be really slow if we regress the fix for that. */ @Test fun `reading a large part with small byteCount`() { val multipartBody =
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 02:11:14 UTC 2025 - 15.4K bytes - Viewed (0) -
src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js
this.locale.weekLabel = options.locale.weekLabel; if (typeof options.locale.customRangeLabel === 'string'){ //Support unicode chars in the custom range name. var elem = document.createElement('textarea'); elem.innerHTML = options.locale.customRangeLabel; var rangeHtml = elem.value;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 64.8K bytes - Viewed (0) -
docs/en/docs/advanced/path-operation-advanced-configuration.md
Nevertheless, we can declare the expected schema for the request body. ### Custom OpenAPI content type { #custom-openapi-content-type }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 7.8K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Longs.java
"radix must be between MIN_RADIX and MAX_RADIX but was " + radix); } boolean negative = string.charAt(0) == '-'; int index = negative ? 1 : 0; if (index == string.length()) { return null; } int digit = AsciiDigits.digit(string.charAt(index++)); if (digit < 0 || digit >= radix) { return null; } long accum = -digit;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 29.1K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
*/ @Override public String firstCalledName() { this.calledName = this.hostName.name; if (Character.isDigit(this.calledName.charAt(0))) { int i, len, dots; char[] data; i = dots = 0; /* quick IP address validation */ len = this.calledName.length(); data = this.calledName.toCharArray();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/WebApiUtilTest.java
} WebApiUtil.setError(500, longMessage.toString()); // Test with special characters in message WebApiUtil.setError(400, "Error with special chars: àáâãäåæçèéêë ñ 中文 🚀"); } catch (Exception e) { fail("Error handling should work with edge cases: " + e.getMessage()); } } public void test_method_parameter_validation() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 17.1K bytes - Viewed (0)