Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 258 for checksum (0.05 sec)

  1. guava/src/com/google/common/hash/Hashing.java

      /**
       * Returns a hash function implementing the CRC-32 checksum algorithm (32 hash bits).
       *
       * <p>To get the {@code long} value equivalent to {@link Checksum#getValue()} for a {@code
       * HashCode} produced by this function, use {@link HashCode#padToLong()}.
       *
       * <p>This function is best understood as a <a
       * href="https://en.wikipedia.org/wiki/Checksum">checksum</a> rather than a true <a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 22:06:57 UTC 2025
    - 31.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/hash/ChecksumHashFunction.java

        return toString;
      }
    
      /** Hasher that updates a checksum. */
      private final class ChecksumHasher extends AbstractByteHasher {
        private final Checksum checksum;
    
        private ChecksumHasher(Checksum checksum) {
          this.checksum = checkNotNull(checksum);
        }
    
        @Override
        protected void update(byte b) {
          checksum.update(b);
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/Hashing.java

      /**
       * Returns a hash function implementing the CRC-32 checksum algorithm (32 hash bits).
       *
       * <p>To get the {@code long} value equivalent to {@link Checksum#getValue()} for a {@code
       * HashCode} produced by this function, use {@link HashCode#padToLong()}.
       *
       * <p>This function is best understood as a <a
       * href="https://en.wikipedia.org/wiki/Checksum">checksum</a> rather than a true <a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 29.8K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_nl.properties

    constraints.LuhnCheck.message = De Luhn Modulo 11 checksum van {value} is onjuist.
    constraints.Mod10Check.message = De Modulo 10 checksum van {value} is onjuist.
    constraints.Mod11Check.message = De Modulo 11 checksum van {value} is onjuist.
    constraints.ModCheck.message = De {modType} checksum van {value} is onjuist.
    constraints.NotBlank.message = {item} mag niet leeg zijn.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_it.properties

    constraints.LuhnCheck.message = Il checksum Luhn Modulo 11 di {value} non è corretto.
    constraints.Mod10Check.message = Il checksum Modulo 10 di {value} non è corretto.
    constraints.Mod11Check.message = Il checksum Modulo 11 di {value} non è corretto.
    constraints.ModCheck.message = Il checksum {modType} di {value} non è corretto.
    constraints.NotBlank.message = {item} non può essere vuoto.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  6. maven-tests/mvnw

    fi
    
    # If specified, validate the SHA-256 sum of the Maven distribution zip file
    if [ -n "${distributionSha256Sum-}" ]; then
      distributionSha256Result=false
      if [ "$MVN_CMD" = mvnd.sh ]; then
        echo "Checksum validation is not supported for maven-mvnd." >&2
        echo "Please disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2
        exit 1
      elif command -v sha256sum >/dev/null; then
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 12 12:05:57 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  7. src/main/resources/fess_message.properties

    constraints.LuhnCheck.message = The Luhn Modulo 11 checksum of {value} is incorrect.
    constraints.Mod10Check.message = The Modulo 10 checksum of {value} is incorrect.
    constraints.Mod11Check.message = The Modulo 11 checksum of {value} is incorrect.
    constraints.ModCheck.message = The {modType} checksum of {value} is incorrect.
    constraints.NotBlank.message = {item} is required.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_message_en.properties

    constraints.LuhnCheck.message = The Luhn Modulo 11 checksum of {value} is incorrect.
    constraints.Mod10Check.message = The Modulo 10 checksum of {value} is incorrect.
    constraints.Mod11Check.message = The Modulo 11 checksum of {value} is incorrect.
    constraints.ModCheck.message = The {modType} checksum of {value} is incorrect.
    constraints.NotBlank.message = {item} is required.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/Crc32cHashFunction.java

     */
    
    package com.google.common.hash;
    
    import com.google.errorprone.annotations.Immutable;
    import java.nio.ByteBuffer;
    
    /**
     * This class generates a CRC32C checksum, defined by RFC 3720, Section 12.1. The generator
     * polynomial for this checksum is {@code 0x11EDC6F41}.
     *
     * @author Kurt Alfred Kluever
     */
    @Immutable
    final class Crc32cHashFunction extends AbstractHashFunction {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 28 01:26:26 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/hash/Crc32cHashFunctionTest.java

        }
        return ~crc;
      }
    
      /**
       * Verifies that the crc of an array of byte data matches the expected value.
       *
       * @param expectedCrc the expected crc value.
       * @param data the data to run the checksum on.
       */
      private static void assertCrc(int expectedCrc, byte[] data) {
        int actualCrc = Hashing.crc32c().hashBytes(data).asInt();
        assertEquals(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 6.6K bytes
    - Viewed (0)
Back to top