- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 83 for 0x7f (0.02 sec)
-
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
} /** * LSA lookup SIDs message. */ public static class LsarLookupSids extends DcerpcMessage { @Override public int getOpnum() { return 0x0f; } /** Return value from the RPC call. */ public int retval; /** Policy handle for the LSA operation. */ public rpc.policy_handle handle;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/main/java/jcifs/dcerpc/msrpc/srvsvc.java
/** * RPC message for enumerating all shares on a server. */ public static class ShareEnumAll extends DcerpcMessage { @Override public int getOpnum() { return 0x0f; } /** * The return value of the operation. */ public int retval; /** * The name of the server. */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 27K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.java
*/ public static class SamrEnumerateAliasesInDomain extends DcerpcMessage { @Override public int getOpnum() { return 0x0f; } /** The return value of the operation */ public int retval; /** The handle to the domain */ public rpc.policy_handle domain_handle;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
*/ public static class SamrEnumerateAliasesInDomain extends DcerpcMessage { @Override public int getOpnum() { return 0x0f; } /** The return value of the operation */ public int retval; /** The handle to the domain */ public rpc.policy_handle domain_handle;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/org/codelibs/core/lang/StringUtil.java
*/ public static void appendHex(final StringBuilder buf, final int i) { buf.append(Integer.toHexString(i >> 24 & 0xff)); buf.append(Integer.toHexString(i >> 16 & 0xff)); buf.append(Integer.toHexString(i >> 8 & 0xff)); buf.append(Integer.toHexString(i & 0xff)); } /** * Converts an underscore-separated string to camel case. * <p> * Usage example:Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 21.5K bytes - Viewed (0) -
okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt
005B..0060 ; disallowed_STD3_valid # 1.1 LEFT SQUARE BRACKET..GRAVE ACCENT 0061..007A ; valid # 1.1 LATIN SMALL LETTER A..LATIN SMALL LETTER Z 007B..007F ; disallowed_STD3_valid # 1.1 LEFT CURLY BRACKET..<control-007F> 0080..009F ; disallowed # 1.1 <control-0080>..<control-009F> 00A0 ; disallowed_STD3_mapped ; 0020 # 1.1 NO-BREAK SPACE
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Feb 10 11:25:47 UTC 2024 - 854.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java
new samr.SamrEnumerateAliasesInDomain(mockPolicyHandle, 1, 2, new samr.SamrSamArray(), 3); // Then: Should have correct values assertEquals(0x0f, message.getOpnum()); assertEquals(mockPolicyHandle, message.domain_handle); assertEquals(1, message.resume_handle); assertEquals(2, message.acct_flags);
Registered: 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
} /** * LSA lookup SIDs message. */ public static class LsarLookupSids extends DcerpcMessage { @Override public int getOpnum() { return 0x0f; } /** Return value from the RPC call. */ public int retval; /** Policy handle for the LSA operation. */ public rpc.policy_handle handle;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/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java
assertEquals(mockDomains, lookupSids.domains); assertEquals(mockNames, lookupSids.names); assertEquals(1, lookupSids.level); assertEquals(10, lookupSids.count); assertEquals(0x0f, lookupSids.getOpnum()); } @Test void testLsarLookupSidsEncodeIn() throws NdrException { rpc.policy_handle mockHandle = mock(rpc.policy_handle.class);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 60.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMakerInternalMap.java
* of reads and delaying a lock acquisition until the threshold is crossed or a mutation occurs. * * <p>This must be a (2^n)-1 as it is used as a mask. */ static final int DRAIN_THRESHOLD = 0x3F; /** * Maximum number of entries to be drained in a single cleanup run. This applies independently to * the cleanup queue and both reference queues. */ // TODO(fry): empirically optimize this
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 18:35:44 UTC 2025 - 89.9K bytes - Viewed (0)