Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for squareMod (0.41 sec)

  1. android/guava/src/com/google/common/math/LongMath.java

        /** Returns a^2 mod m. */
        abstract long squareMod(long a, long m);
    
        /** Returns a^p mod m. */
        private long powMod(long a, long p, long m) {
          long res = 1;
          for (; p != 0; p >>= 1) {
            if ((p & 1) != 0) {
              res = mulMod(res, a, m);
            }
            a = squareMod(a, m);
          }
          return res;
        }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 44.6K bytes
    - Viewed (0)
  2. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    1F14A         ; mapped                 ; 0068 0076     # 5.2  SQUARED HV
    1F14B         ; mapped                 ; 006D 0076     # 5.2  SQUARED MV
    1F14C         ; mapped                 ; 0073 0064     # 5.2  SQUARED SD
    1F14D         ; mapped                 ; 0073 0073     # 5.2  SQUARED SS
    1F14E         ; mapped                 ; 0070 0070 0076 #5.2  SQUARED PPV
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Feb 10 11:25:47 GMT 2024
    - 854.1K bytes
    - Viewed (2)
  3. RELEASE.md

        *   DType is no longer convertible to an int. Use `dtype.as_datatype_enum`
            instead of `int(dtype)` to get the same result.
        *   Support both binary and -1/1 label input in v2 hinge and squared hinge
            losses.
        *   Added `LinearOperator.adjoint` and `LinearOperator.H` (alias).
        *   Expose CriticalSection in core as `tf.CriticalSection`.
        *   Enhanced graphviz output.
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top