Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for converter (0.18 sec)

  1. doc/go_spec.html

    <pre>
    *Point(p)        // same as *(Point(p))
    (*Point)(p)      // p is converted to *Point
    &lt;-chan int(c)    // same as &lt;-(chan int(c))
    (&lt;-chan int)(c)  // c is converted to &lt;-chan int
    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>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    }
    
    // boundsCheck generates bounds checking code. Checks if 0 <= idx <[=] len, branches to exit if not.
    // Starts a new block on return.
    // On input, len must be converted to full int width and be nonnegative.
    // Returns idx converted to full int width.
    // If bounded is true then caller guarantees the index is not out of bounds
    // (but boundsCheck will still extend the index to full int width).
    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. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
    
      <mime-type type="application/mac-binhex40">
        <alias type="application/mac-binhex"/>
        <alias type="application/binhex"/>
        <magic priority="50">
          <match value="must be converted with BinHex" type="string" offset="11"/>
        </magic>
        <glob pattern="*.hqx"/>
      </mime-type>
    
      <mime-type type="application/mac-compactpro">
        <glob pattern="*.cpt"/>
      </mime-type>
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top