- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 40 for minimum_length (0.07 sec)
-
src/main/java/jcifs/smb1/dcerpc/rpc.idl
* USHORT MaximumLength; * [size_is(MaximumLength / 2), length_is((Length) / 2) ] USHORT * Buffer; * } UNICODE_STRING; */ typedef struct { uint16_t length; uint16_t maximum_length; [length_is(length / 2),size_is(maximum_length / 2)] uint16_t *buffer; } unicode_string; /* * typedef struct _SID_IDENTIFIER_AUTHORITY { * UCHAR Value[6]; * } SID_IDENTIFIER_AUTHORITY, *PSID_IDENTIFIER_AUTHORITY; *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/rpcTest.java
unicodeString.length = (short) 10; unicodeString.maximum_length = (short) 20; unicodeString.buffer = new short[] { 65, 66, 67 }; // A, B, C // Then: Values should be set correctly assertEquals((short) 10, unicodeString.length); assertEquals((short) 20, unicodeString.maximum_length); assertArrayEquals(new short[] { 65, 66, 67 }, unicodeString.buffer);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java
samr.SamrSamEntry entry = new samr.SamrSamEntry(); entry.idx = 1; entry.name = new rpc.unicode_string(); entry.name.length = 4; entry.name.maximum_length = 6; entry.name.buffer = new short[] { 't', 'e', 's', 't' }; // When: Encoding entry entry.encode(mockNdrBuffer); // Then: Should encode all fields
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/UnicodeString.java
* whether the string should be zero terminated */ public UnicodeString(final rpc.unicode_string rus, final boolean zterm) { this.length = rus.length; this.maximum_length = rus.maximum_length; this.buffer = rus.buffer; this.zterm = zterm; } /** * Constructs a UnicodeString from a Java String. * * @param str * wrapped string
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/rpc.java
public short maximum_length; /** The Unicode character buffer */ public short[] buffer; @Override public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_short(this.length); _dst.enc_ndr_short(this.maximum_length); _dst.enc_ndr_referent(this.buffer, 1);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.java
_dst.enc_ndr_short(this.name.maximum_length); _dst.enc_ndr_referent(this.name.buffer, 1); if (this.name.buffer != null) { _dst = _dst.deferred; final int _name_bufferl = this.name.length / 2; final int _name_buffers = this.name.maximum_length / 2; _dst.enc_ndr_long(_name_buffers);
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/smb1/dcerpc/msrpc/samr.java
_dst.enc_ndr_short(name.length); _dst.enc_ndr_short(name.maximum_length); _dst.enc_ndr_referent(name.buffer, 1); if (name.buffer != null) { _dst = _dst.deferred; final int _name_bufferl = name.length / 2; final int _name_buffers = name.maximum_length / 2; _dst.enc_ndr_long(_name_buffers);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.1K bytes - Viewed (0) -
docs/uk/docs/index.md
**Spoiler alert**: туторіал - посібник користувача містить: * Оголошення **параметрів** з інших місць як: **headers**, **cookies**, **form fields** та **files**. * Як встановити **перевірку обмежень** як `maximum_length` або `regex`. * Дуже потужна і проста у використанні система **<abbr title="також відома як: components, resources, providers, services, injectables">Ін'єкція Залежностей</abbr>**.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 24.2K bytes - Viewed (0) -
docs/it/docs/index.md
**Spoiler alert**: il tutorial - Guida Utente include: * Dichiarazione di **parameters** da altri posti diversi come: **headers**, **cookies**, **form fields** e **files**. * Come stabilire **vincoli di validazione** come `maximum_length` o `regex`. * Un sistema di **<abbr title="detto anche components, resources, providers, services, injectables">Dependency Injection</abbr>** facile da usare e molto potente. e potente.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 19.5K bytes - Viewed (0) -
docs/de/docs/index.md
* Deklaration von **Parametern** von anderen verschiedenen Stellen wie: **Header-Felder**, **Cookies**, **Formularfelder** und **Dateien**. * Wie man **Validierungseinschränkungen** wie `maximum_length` oder `regex` setzt.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 21.1K bytes - Viewed (0)