Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 144 for jmod (0.15 sec)

  1. guava-tests/test/com/google/common/primitives/UnsignedIntegerTest.java

              int expected = aUnsigned.bigIntegerValue().mod(bUnsigned.bigIntegerValue()).intValue();
              UnsignedInteger unsignedRem = aUnsigned.mod(bUnsigned);
              assertThat(unsignedRem.intValue()).isEqualTo(expected);
            }
          }
        }
      }
    
      public void testModByZero() {
        for (int a : TEST_INTS) {
          try {
            UnsignedInteger.fromIntBits(a).mod(UnsignedInteger.ZERO);
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Jun 01 09:32:35 GMT 2023
    - 9.6K bytes
    - Viewed (0)
  2. go.env

    # Use the Go module mirror and checksum database by default.
    # See https://proxy.golang.org for details.
    GOPROXY=https://proxy.golang.org,direct
    GOSUMDB=sum.golang.org
    
    # Automatically download newer toolchains as directed by go.mod files.
    # See https://go.dev/doc/toolchain for details.
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Jun 06 19:18:46 GMT 2023
    - 505 bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/math/LongMathTest.java

          for (int m : POSITIVE_INTEGER_CANDIDATES) {
            assertEquals(valueOf(x).mod(valueOf(m)).intValue(), LongMath.mod(x, m));
          }
        }
      }
    
      @GwtIncompatible // TODO
      public void testIntModNegativeModulusFails() {
        for (long x : ALL_LONG_CANDIDATES) {
          for (int m : NEGATIVE_INTEGER_CANDIDATES) {
            try {
              LongMath.mod(x, m);
              fail("Expected ArithmeticException");
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Mar 04 20:15:57 GMT 2024
    - 32.5K bytes
    - Viewed (0)
  4. docs/debugging/reorder-disks/go.sum

    github.com/minio/pkg/v2 v2.0.6 h1:n+PpbSMaJK1FfQkP55l1y0wj5Hi9R5w2DtGhxiGdP9I=
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Dec 19 02:35:20 GMT 2023
    - 165 bytes
    - Viewed (0)
  5. maven-core/src/test/projects/lifecycle-executor/project-with-inheritance/pom.xml

          <subscribe>******@****.***</subscribe>
          <unsubscribe>******@****.***</unsubscribe>
          <post>******@****.***</post>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
          <otherArchives>
            <otherArchive>http://www.mail-archive.com/******@****.***/</otherArchive>
            <otherArchive>http://www.nabble.com/Maven-Developers-f179.html</otherArchive>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Aug 03 09:29:10 GMT 2023
    - 22.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/UnsignedInteger.java

        return fromIntBits(UnsignedInts.divide(value, checkNotNull(val).value));
      }
    
      /**
       * Returns this mod {@code val}.
       *
       * @throws ArithmeticException if {@code val} is zero
       * @since 14.0
       */
      public UnsignedInteger mod(UnsignedInteger val) {
        return fromIntBits(UnsignedInts.remainder(value, checkNotNull(val).value));
      }
    
      /**
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 23 18:45:50 GMT 2023
    - 8.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/SipHashFunction.java

        // The number of bytes in the input.
        private long b = 0;
    
        // The final 64-bit chunk includes the last 0 through 7 bytes of m followed by null bytes
        // and ending with a byte encoding the positive integer b mod 256.
        private long finalM = 0;
    
        SipHasher(int c, int d, long k0, long k1) {
          super(CHUNK_SIZE);
          this.c = c;
          this.d = d;
          this.v0 ^= k0;
          this.v1 ^= k1;
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Apr 20 18:43:59 GMT 2021
    - 5.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/MD4.java

         * reset.
         *
         * @return the array of bytes for the resulting hash value.
         */
        public byte[] engineDigest () {
            // pad output to 56 mod 64; as RFC1320 puts it: congruent to 448 mod 512
            int bufferNdx = (int)(count % BLOCK_LENGTH);
            int padLen = (bufferNdx < 56) ? (56 - bufferNdx) : (120 - bufferNdx);
    
            // padding is alwas binary 1 followed by binary 0s
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9.3K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess/da/stopwords.txt

    kunne
    ind
    når
    være
    dog
    noget
    ville
    jo
    deres
    efter
    ned
    skulle
    denne
    end
    dette
    mit
    også
    under
    have
    dig
    anden
    hende
    mine
    alt
    meget
    sit
    sine
    vor
    mod
    disse
    hvis
    din
    nogle
    hos
    blive
    mange
    ad
    bliver
    hendes
    været
    thi
    jer
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 564 bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/primitives/UnsignedLongTest.java

              UnsignedLong unsignedRem = aUnsigned.mod(bUnsigned);
              assertThat(unsignedRem.longValue()).isEqualTo(expected);
            }
          }
        }
      }
    
      public void testModByZero() {
        for (long a : TEST_LONGS) {
          try {
            UnsignedLong.fromLongBits(a).mod(UnsignedLong.ZERO);
            fail("Expected ArithmeticException");
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Feb 06 16:10:08 GMT 2024
    - 10.5K bytes
    - Viewed (0)
Back to top