Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for lexicographical (0.15 seconds)

  1. RELEASE.md

            `sequence/TimeseriesGenerator`, and `text/hashing_trick`.
    *   Accelerated Linear Algebra (XLA):
        *   Select and scatter in reference util and evaluator now use
            lexicographical order to break ties.
    *   TensorFlow Debugger (tfdbg) CLI:
        *   During tensor-filter operations, allow exclusion of nodes by regular
            expressions.
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Tue Oct 28 22:27:41 GMT 2025
    - 740.4K bytes
    - Click Count (3)
  2. lib/fips140/v1.1.0-rc1.zip

    ConstantTimeCompare(x, y []byte) int { if len(x) != len(y) { return 0 } var v byte for i := 0; i < len(x); i++ { v |= x[i] ^ y[i] } return constanttime.ByteEq(v, 0) } // ConstantTimeLessOrEq returns 1 if x <= y and 0 otherwise. The comparison // is lexigraphical, or big-endian. The time taken is a function of the length of // the slices and is independent of the contents. If the lengths of x and y do not // match it returns 0 immediately. func ConstantTimeLessOrEq(x, y []byte) int { if len(x) != len(y)...
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Dec 11 16:27:41 GMT 2025
    - 663K bytes
    - Click Count (0)
Back to Top