Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for lexicographical (0.17 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 Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Mar 30 18:31:38 GMT 2026
    - 746.5K bytes
    - Click Count (3)
  2. lib/fips140/v1.26.0.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 Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Jan 08 17:58:32 GMT 2026
    - 660.3K bytes
    - Click Count (0)
Back to Top