Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 81 for 4321 (2.61 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/main/java/jcifs/NetbiosAddress.java

     * JMORRIS2        &lt;20&gt;  UNIQUE      Registered
     * BILLING-NY      &lt;1E&gt;  GROUP       Registered
     * JMORRIS         &lt;03&gt;  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)
  5. 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)
  6. src/main/java/jcifs/netbios/NbtAddress.java

     * JMORRIS2        &lt;20&gt;  UNIQUE      Registered
     * BILLING-NY      &lt;1E&gt;  GROUP       Registered
     * JMORRIS         &lt;03&gt;  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)
  7. 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)
  8. 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)
  9. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

            final int len = str.length();
            int ch, size = 0;
            byte[] dst;
    
            for (int i = 0; i < len; i++) {
                ch = str.charAt(i);
                size += ch > 0x07F ? ch > 0x7FF ? 3 : 2 : 1;
            }
            dst = new byte[size];
            writeShort(size);
            try {
                Encdec.enc_utf8(str, dst, 0, size);
            } catch (final IOException ioe) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top