Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for caps (0.8 sec)

  1. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/vnd.ctct.ws+xml"/>
      <mime-type type="application/vnd.cups-pdf"/>
      <mime-type type="application/vnd.cups-postscript"/>
      <mime-type type="application/vnd.cups-ppd">
        <glob pattern="*.ppd"/>
      </mime-type>
      <mime-type type="application/vnd.cups-raster"/>
      <mime-type type="application/vnd.cups-raw"/>
      <mime-type type="application/vnd.curl.car">
        <glob pattern="*.car"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  2. doc/go_spec.html

    </p>
    
    <pre>
    s := make([]int, 10, 100)       // slice with len(s) == 10, cap(s) == 100
    s := make([]int, 1e3)           // slice with len(s) == cap(s) == 1000
    s := make([]int, 1&lt;&lt;63)         // illegal: len(s) is not representable by a value of type int
    s := make([]int, 10, 0)         // illegal: len(s) > cap(s)
    c := make(chan int, 10)         // channel with a buffer size of 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), type BpfProgram struct, Pad_cgo_0 [4]uint8
    pkg syscall (netbsd-arm64-cgo), type BpfStat struct
    pkg syscall (netbsd-arm64-cgo), type BpfStat struct, Capt uint64
    pkg syscall (netbsd-arm64-cgo), type BpfStat struct, Drop uint64
    pkg syscall (netbsd-arm64-cgo), type BpfStat struct, Padding [13]uint64
    pkg syscall (netbsd-arm64-cgo), type BpfStat struct, Recv uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  4. ChangeLog.md

    ### Tools. JPS
    
    - [`KT-65043`](https://youtrack.jetbrains.com/issue/KT-65043) JPS dumb mode should respect maps needed for the compiler
    - [`KT-55393`](https://youtrack.jetbrains.com/issue/KT-55393) JPS: Java synthetic properties incremental compilation is broken
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top