- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 81 for 4321 (2.61 sec)
-
src/main/java/jcifs/internal/util/SMBUtil.java
* @return the 64-bit integer value */ public static long readInt8(final byte[] src, final int srcIndex) { return (readInt4(src, srcIndex) & 0xFFFFFFFFL) + ((long) readInt4(src, srcIndex + 4) << 32); } /** * Writes a 64-bit integer value to a byte array in little-endian format * @param val the value to write * @param dst the destination byte array
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/LsaPolicyHandleTest.java
verify(mockDcerpcHandle, times(1)).sendrecv(any(MsrpcLsarClose.class)); } @Test void close_shouldThrowSmbExceptionOnRpcError() throws IOException { // Arrange int errorCode = 54321; // First, successfully create an LsaPolicyHandle instance doAnswer(invocation -> { MsrpcLsarOpenPolicy2 rpc = invocation.getArgument(0); rpc.retval = 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.9K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/UnsignedInts.java
static int flip(int value) { return value ^ Integer.MIN_VALUE; } /** * Compares the two specified {@code int} values, treating them as unsigned values between {@code * 0} and {@code 2^32 - 1} inclusive. * * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated; use the * equivalent {@link Integer#compareUnsigned(int, int)} method instead. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Feb 09 16:22:33 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/jcifs/NetbiosAddress.java
* JMORRIS2 <20> UNIQUE Registered * BILLING-NY <1E> GROUP Registered * JMORRIS <03> UNIQUE Registered * * MAC Address = 00-B0-34-21-FA-3B * </pre> * * </blockquote> * * * The hostname of this machine is <code>JMORRIS2</code>. It is * a member of the group(a.k.a workgroup and domain) <code>BILLING-NY</code>. To
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/SetViewTest.java
.addEqualityGroup( newHashSet(3, 2), union(singleton(3), singleton(2)), intersection(newHashSet(3, 2), newHashSet(3, 2, 1)), difference(newHashSet(3, 2, 1), newHashSet(1)), symmetricDifference(newHashSet(3, 1), newHashSet(2, 1))) .addEqualityGroup( newHashSet(1, 2, 3),
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.9K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
* JMORRIS2 <20> UNIQUE Registered * BILLING-NY <1E> GROUP Registered * JMORRIS <03> UNIQUE Registered * * MAC Address = 00-B0-34-21-FA-3B * </pre> * * </blockquote> * * * The hostname of this machine is <code>JMORRIS2</code>. It is * a member of the group(a.k.a workgroup and domain) <code>BILLING-NY</code>. To
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/TreeConnectResponseTest.java
@DisplayName("Should return tree ID from getTreeId") void testGetTid() { // Given response.setTreeId(54321); // When int tid = response.getTid(); // Then assertEquals(54321, tid, "getTid should return tree ID"); } @Test @DisplayName("Should validate tree ID correctly")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java
b.addDependency("c", "3.3.0-v3346"); ArtifactSpec c = createArtifactSpec("c", "3.2.1-v3235e"); OverConstrainedVersionException e = assertThrows( OverConstrainedVersionException.class, () -> collect(createSet(new Object[] {a.artifact}))); assertTrue(e.getMessage().contains("[3.2.1-v3235e, 3.3.0-v3346]"), "Versions unordered");
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 42.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java
checkInitialCapacity(2, 7, 4); checkInitialCapacity(2, 8, 4); checkInitialCapacity(4, 0, 1); checkInitialCapacity(4, 1, 1); checkInitialCapacity(4, 2, 1); checkInitialCapacity(4, 3, 1); checkInitialCapacity(4, 4, 1); checkInitialCapacity(4, 5, 2); checkInitialCapacity(4, 6, 2); checkInitialCapacity(4, 7, 2); checkInitialCapacity(4, 8, 2); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 35.1K bytes - Viewed (0)