- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 67 for 0_15 (0.03 sec)
-
guava/src/com/google/common/reflect/Types.java
} boolean jdkTypeDuplicatesOwnerName() { return true; } } /** * Per <a href="https://github.com/google/guava/issues/1635">issue 1635</a>, In JDK 1.7.0_51-b13, * {@link TypeVariableImpl#equals(Object)} is changed to no longer be equal to custom TypeVariable * implementations. As a result, we need to make sure our TypeVariable implementation respects
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 23.5K bytes - Viewed (0) -
src/test/java/jcifs/netbios/SessionRequestPacketTest.java
TestNetbiosName(String name, int type, String scope) { // Ensure names are uppercase and limited to 15 characters this.name = name != null && name.length() > 15 ? name.substring(0, 15).toUpperCase() : (name != null ? name.toUpperCase() : ""); this.type = type; this.scope = scope; } @Override public String getName() { return name;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NodeStatusResponseTest.java
byte[] testMac = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06 }; System.arraycopy(testMac, 0, src, macOffset, 6); // Statistics byte[] stats = { 0x10, 0x11, 0x12, 0x13, 0x14, 0x15 }; System.arraycopy(stats, 0, src, macOffset + 6, 6); int result = response.readRDataWireFormat(src, srcIndex); assertEquals(dataLength, result); // Verify all names were parsed
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/HexdumpTest.java
assertNotNull(output); assertTrue(output.contains("00000:")); assertTrue(output.contains("00010:")); // Second line offset // Verify first line contains bytes 0-15 assertTrue(output.contains(" 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F")); // Verify second line contains bytes 16-31 assertTrue(output.contains(" 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Longs.java
* {@code ByteBuffer.allocate(8).putLong(value).array()}. For example, the input value {@code * 0x1213141516171819L} would yield the byte array {@code {0x12, 0x13, 0x14, 0x15, 0x16, 0x17, * 0x18, 0x19}}. * * <p>If you need to convert and concatenate several values (possibly even of different types), * use a shared {@link java.nio.ByteBuffer} instance, or use {@link
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/smb1/dcerpc/msrpc/netdfs.java
* DCE/RPC message for NetrDfsEnumEx operation to enumerate DFS entries */ public static class NetrDfsEnumEx extends DcerpcMessage { @Override public int getOpnum() { return 0x15; } /** * Return value from the RPC call */ public int retval; /** * DFS name to enumerate */ public String dfs_name;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.2K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/Types.java
} boolean jdkTypeDuplicatesOwnerName() { return true; } } /** * Per <a href="https://github.com/google/guava/issues/1635">issue 1635</a>, In JDK 1.7.0_51-b13, * {@link TypeVariableImpl#equals(Object)} is changed to no longer be equal to custom TypeVariable * implementations. As a result, we need to make sure our TypeVariable implementation respects
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 23.6K bytes - Viewed (0) -
cmd/endpoint-ellipses_test.go
Seq: getSequences(1, 4, 0), }, }, }, nil, [][]uint64{{16, 16, 16, 16}}, }, true, }, // Supporting kubernetes cases. { "http://minio{0...15}.mydomain.net/data{0...1}", endpointSet{ []ellipses.ArgPattern{ []ellipses.Pattern{ { Prefix: "", Suffix: "", Seq: getSequences(0, 1, 0), }, {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/srvsvc.java
* RPC message for retrieving server information at various detail levels */ public static class ServerGetInfo extends DcerpcMessage { @Override public int getOpnum() { return 0x15; } /** * The return value of the operation. */ public int retval; /** * The name of the server. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 27K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/netdfsTest.java
assertEquals(level, enumEx.level); assertEquals(prefmaxlen, enumEx.prefmaxlen); assertEquals(info, enumEx.info); assertEquals(totalentries, enumEx.totalentries); assertEquals(0x15, enumEx.getOpnum()); } @Test void testNetrDfsEnumEx_EncodeInDecodeOut() throws NdrException { String dfsName = "test_dfs"; int level = 1; int prefmaxlen = 100;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.9K bytes - Viewed (0)