- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 43 for kalian (0.26 sec)
-
src/main/java/jcifs/dcerpc/msrpc/samr.java
/** The handle to the domain */ public rpc.policy_handle domain_handle; /** The desired access rights to the alias */ public int access_mask; /** The relative ID of the alias to open */ public int rid; /** The returned handle to the alias */ public rpc.policy_handle alias_handle; /** * Constructs a SamrOpenAlias request. *Registered: Sat Dec 20 13:44:44 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
/** The handle to the domain */ public rpc.policy_handle domain_handle; /** The desired access rights to the alias */ public int access_mask; /** The relative ID of the alias to open */ public int rid; /** The returned handle to the alias */ public rpc.policy_handle alias_handle; /** * Constructs a SamrOpenAlias request. *Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
_src.align(4); _src.align(4); if (this.name == null) { this.name = new rpc.unicode_string(); } this.name.length = (short) _src.dec_ndr_short(); this.name.maximum_length = (short) _src.dec_ndr_short(); final int _name_bufferp = _src.dec_ndr_long(); _src.align(4); if (this.dns_domain == null) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 44.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/samrTest.java
// Given: Open alias message with mocked return value samr.SamrOpenAlias message = new samr.SamrOpenAlias(mockPolicyHandle, 123, 456, mockPolicyHandle); when(mockNdrBuffer.dec_ndr_long()).thenReturn(0); // When: Decoding output message.decode_out(mockNdrBuffer); // Then: Should decode alias handle and return valueRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.7K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java
// Given: Open alias message with mocked return value samr.SamrOpenAlias message = new samr.SamrOpenAlias(mockPolicyHandle, 123, 456, mockPolicyHandle); when(mockNdrBuffer.dec_ndr_long()).thenReturn(0); // When: Decoding output message.decode_out(mockNdrBuffer); // Then: Should decode alias handle and return valueRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java
_src.align(4); _src.align(4); if (name == null) { name = new rpc.unicode_string(); } name.length = (short) _src.dec_ndr_short(); name.maximum_length = (short) _src.dec_ndr_short(); final int _name_bufferp = _src.dec_ndr_long(); _src.align(4); if (dns_domain == null) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 42.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/Suggester.java
* Returns a list of indices associated with the given alias. * @param alias The alias name. * @return A list of index names associated with the alias. */ private List<String> getIndicesForAlias(final String alias) { final List<String> indices = new ArrayList<>(); final IndicesExistsResponse response = client.admin().indices().prepareExists(alias).execute().actionGet(suggestSettings.getIndicesTimeout());Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 21.6K bytes - Viewed (3) -
src/main/java/jcifs/dcerpc/rpc.java
} } @Override public void decode(NdrBuffer _src) throws NdrException { _src.align(4); this.type = _src.dec_ndr_long(); _src.align(4); if (this.uuid == null) { this.uuid = new uuid_t(); } this.uuid.time_low = _src.dec_ndr_long();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/netdfs.java
_dst.align(4); _dst.enc_ndr_referent(this.entry_path, 1); if (this.entry_path != null) { _dst = _dst.deferred; _dst.enc_ndr_string(this.entry_path); } } @Override public void decode(NdrBuffer _src) throws NdrException { _src.align(4);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.8K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/srvsvcTest.java
srvsvc.ShareInfo0 shareInfo0 = new srvsvc.ShareInfo0(); shareInfo0.netname = "TestShare"; shareInfo0.encode(mockNdrBuffer); // Verify the encode operations verify(mockNdrBuffer).align(4); verify(mockNdrBuffer).enc_ndr_referent("TestShare", 1); verify(mockDeferredBuffer).enc_ndr_string("TestShare"); } @Test void testShareInfo0EncodeWithNullNetname() throws NdrException {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12K bytes - Viewed (0)