Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for int32_t (0.06 sec)

  1. doc/go_spec.html

    var i = 1<<s                   // 1 has type int
    var j int32 = 1<<s             // 1 has type int32; j == 0
    var k = uint64(1<<s)           // 1 has type uint64; k == 1<<33
    var m int = 1.0<<s             // 1.0 has type int; m == 1<<33
    var n = 1.0<<s == j            // 1.0 has type int32; n == true
    var o = 1<<s == 2<<s           // 1 and 2 have type int; o == false
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Tue Dec 02 23:07:19 UTC 2025
    - 286.5K bytes
    - Viewed (1)
  2. lib/fips140/v1.1.0-rc1.zip

    returns yes if a <= b, no otherwise, in constant time. func constantTimeSelectLe(a, b, yes, no int32) int32 { return int32(constanttime.Select(constanttime.LessOrEq(int(a), int(b)), int(yes), int(no))) } // constantTimeSelectEq returns yes if a == b, no otherwise, in constant time. func constantTimeSelectEq(a, b, yes, no uint32) uint32 { return uint32(constanttime.Select(constanttime.Eq(int32(a), int32(b)), int(yes), int(no))) } // constantTimeAbs returns the absolute value of x in constant time....
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.35.md

    - Fixed `replicaCount` calculation exceeding max `int32`. ([#126979](https://github.com/kubernetes/kubernetes/pull/126979), [@omerap12](https://github.com/omerap12)) [SIG Apps and Autoscaling]
    - Fixed a Windows kube-proxy (winkernel) issue where stale `RemoteEndpoints`
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Wed Dec 17 13:01:55 UTC 2025
    - 228.5K bytes
    - Viewed (0)
Back to top