Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Wijden (0.33 sec)

  1. ChangeLog.md

    - [`KT-65653`](https://youtrack.jetbrains.com/issue/KT-65653) SLC: wrong binary resolution to function with value class
    - [`KT-65393`](https://youtrack.jetbrains.com/issue/KT-65393) SLC: missing deprecated-hidden property
    - [`KT-64772`](https://youtrack.jetbrains.com/issue/KT-64772) SLC: presence of source PSI for compiler-generated declaration
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    			breal := s.newValue1(ssa.OpComplexReal, pt, b)
    			aimag := s.newValue1(ssa.OpComplexImag, pt, a)
    			bimag := s.newValue1(ssa.OpComplexImag, pt, b)
    
    			if pt != wt { // Widen for calculation
    				areal = s.newValueOrSfCall1(ssa.OpCvt32Fto64F, wt, areal)
    				breal = s.newValueOrSfCall1(ssa.OpCvt32Fto64F, wt, breal)
    				aimag = s.newValueOrSfCall1(ssa.OpCvt32Fto64F, wt, aimag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. doc/go_spec.html

    package are considered. If other, hidden, data dependencies exists between
    variables, the initialization order between those variables is unspecified.
    </p>
    
    <p>
    For instance, given the declarations
    </p>
    
    <pre>
    var x = I(T{}).ab()   // x has an undetected, hidden dependency on a and b
    var _ = sideEffect()  // unrelated to x, a, or b
    var a = b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top