Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ambiguous (0.04 sec)

  1. CHANGELOG/CHANGELOG-1.32.md

    - Applyconfiguration-gen no longer generates duplicate methods and ambiguous member accesses when types end up with multiple members of the same name (through embedded structs). ([#127001](https://github.com/kubernetes/kubernetes/pull/127001), [@skitt](https://github.com/skitt)) [SIG API Machinery]
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Tue Oct 29 20:17:52 UTC 2024
    - 121.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    func()(x)        // function signature func() x
    (func())(x)      // x is converted to func()
    (func() int)(x)  // x is converted to func() int
    func() int(x)    // x is converted to func() int (unambiguous)
    </pre>
    
    <p>
    A <a href="#Constants">constant</a> value <code>x</code> can be converted to
    type <code>T</code> if <code>x</code> is <a href="#Representability">representable</a>
    by a value of <code>T</code>.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 10 18:25:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top