- Sort Score
- Num 10 results
- Language All
Results 101 - 110 of 146 for chamar (0.03 seconds)
-
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) {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 14.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 16.6K bytes - Click Count (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.
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Oct 11 17:48:49 GMT 2025 - 11.1K bytes - Click Count (0) -
src/main/java/jcifs/smb/DfsImpl.java
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 29.7K bytes - Click Count (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
return getLocalHost(); } if (!Character.isDigit(host.charAt(0))) { return doNameQuery(new Name(host, type, scope), svr); } int IP = 0x00; int hitDots = 0; final char[] data = host.toCharArray(); for (int i = 0; i < data.length; i++) { char c = data[i]; if (c < 48 || c > 57) {
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 31.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Thu Aug 07 02:41:28 GMT 2025 - 17.8K bytes - Click Count (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();Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 15.1K bytes - Click Count (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]);Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 18.6K bytes - Click Count (0) -
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
private int parseResponseCode() throws IOException { try { final String response = connection.getHeaderField(0); int index = response.indexOf(' '); while (response.charAt(index) == ' ') { index++; } return Integer.parseInt(response.substring(index, index + 3)); } catch (final Exception ex) {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 22.1K bytes - Click Count (0) -
src/main/java/jcifs/smb/SIDCacheImpl.java
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Mon Aug 25 14:34:10 GMT 2025 - 13.6K bytes - Click Count (0)