Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 265 for 0L (0.01 sec)

  1. src/main/java/jcifs/smb1/util/MD4.java

            // as per rfc-1320; they are low-order byte first
            context[0] = 0x67452301;
            context[1] = 0xEFCDAB89;
            context[2] = 0x98BADCFE;
            context[3] = 0x10325476;
            count = 0L;
            for (int i = 0; i < BLOCK_LENGTH; i++) {
                buffer[i] = 0;
            }
        }
    
        /**
         * Continues an MD4 message digest using the input byte.
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/SmbTreeHandleImplTest.java

            SmbNegotiationResponse otherNego = mock(SmbNegotiationResponse.class);
            when(transport.getNegotiateResponse()).thenReturn(otherNego);
    
            assertEquals(0L, handle.getServerTimeZoneOffset());
            assertNull(handle.getOEMDomainName());
        }
    
        @Test
        @DisplayName("Tree properties delegate: getTreeType/getConnectedShare")
        void treePropertiesDelegate() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

                return "id-" + dataMap.get("url");
            }
        }
    
        private static class TestSearchLogHelper extends SearchLogHelper {
            int clickCount = 0;
            long favoriteCount = 0L;
    
            @Override
            public int getClickCount(String url) {
                return clickCount;
            }
    
            @Override
            public long getFavoriteCount(String url) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/primitives/BytesTest.java

        List<Short> shorts = Arrays.asList((short) 0, (short) 1, (short) 2);
        List<Integer> ints = Arrays.asList(0, 1, 2);
        List<Float> floats = Arrays.asList(0.0f, 1.0f, 2.0f);
        List<Long> longs = Arrays.asList(0L, 1L, 2L);
        List<Double> doubles = Arrays.asList(0.0, 1.0, 2.0);
    
        assertThat(Bytes.toArray(bytes)).isEqualTo(array);
        assertThat(Bytes.toArray(shorts)).isEqualTo(array);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java

         * everywhere.
         */
        static final class Sync<V> extends AbstractQueuedSynchronizer {
    
          private static final long serialVersionUID = 0L;
    
          /* Valid states. */
          static final int RUNNING = 0;
          static final int COMPLETING = 1;
          static final int COMPLETED = 2;
          static final int CANCELLED = 4;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jan 30 16:59:10 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/CommonServerMessageBlockResponseTest.java

            // Test reset functionality
            concreteResponse.setMid(789L);
            concreteResponse.setCommand(0x42);
            concreteResponse.setDigest(digest);
            concreteResponse.reset();
            assertEquals(0L, concreteResponse.getMid());
            assertEquals(0, concreteResponse.getCommand());
            assertNull(concreteResponse.getDigest());
            assertNull(concreteResponse.getException());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/MultipartReaderTest.kt

          headersOf(
            "header-name",
            "header-value",
            "Content-Type",
            "application/octet-stream",
          ),
        )
        val readBuff = Buffer()
        var byteCount = 0L
        while (true) {
          val readByteCount = onlyPart.body.read(readBuff, 1024L)
          if (readByteCount == -1L) break
          byteCount += readByteCount
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 02:11:14 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb1/netbios/SocketInputStreamTest.java

            // Should throw NullPointerException when reading with null array
            assertThrows(NullPointerException.class, () -> sis.read((byte[]) null));
        }
    
        @ParameterizedTest
        @ValueSource(longs = { 0L, -1L, -10L })
        @DisplayName("Skip returns 0 for zero or negative values")
        void skipReturnsZeroForNegativeOrZero(long skipBytes) throws IOException {
            // Create message with 5 bytes of data
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb1/SMB1SigningDigestTest.java

        }
    
        @Test
        @DisplayName("Test writeUTime with zero time")
        void testWriteUTimeWithZeroTime() {
            byte[] dst = new byte[4];
    
            SMB1SigningDigest.writeUTime(mockConfig, 0L, dst, 0);
    
            assertEquals((byte) 0xFF, dst[0]);
            assertEquals((byte) 0xFF, dst[1]);
            assertEquals((byte) 0xFF, dst[2]);
            assertEquals((byte) 0xFF, dst[3]);
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/math/QuantilesTest.java

              196.0);
    
      private static final ImmutableList<Long> SIXTEEN_SQUARES_LONGS =
          ImmutableList.of(
              25L, 100L, 0L, 144L, 9L, 121L, 4L, 225L, 169L, 64L, 49L, 16L, 36L, 1L, 81L, 196L);
      private static final ImmutableList<Integer> SIXTEEN_SQUARES_INTEGERS =
          ImmutableList.of(25, 100, 0, 144, 9, 121, 4, 225, 169, 64, 49, 16, 36, 1, 81, 196);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top