Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for mts (0.04 sec)

  1. src/runtime/os_solaris.go

    package runtime
    
    import "unsafe"
    
    type mts struct {
    	tv_sec  int64
    	tv_nsec int64
    }
    
    type mscratch struct {
    	v [6]uintptr
    }
    
    type mOS struct {
    	waitsema uintptr // semaphore for parking on locks
    	perrno   *int32  // pointer to tls errno
    	// these are here because they are too large to be on the stack
    	// of low-level NOSPLIT functions.
    	//LibCall       libcall;
    	ts      mts
    	scratch mscratch
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. src/runtime/os3_solaris.go

    	sysvicall2(&libc_munmap, uintptr(addr), uintptr(n))
    }
    
    const (
    	_CLOCK_REALTIME  = 3
    	_CLOCK_MONOTONIC = 4
    )
    
    //go:nosplit
    func nanotime1() int64 {
    	var ts mts
    	sysvicall2(&libc_clock_gettime, _CLOCK_MONOTONIC, uintptr(unsafe.Pointer(&ts)))
    	return ts.tv_sec*1e9 + ts.tv_nsec
    }
    
    //go:nosplit
    func open(path *byte, mode, perm int32) int32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="model/vnd.gs.gdl"/>
      <mime-type type="model/vnd.gtw">
        <glob pattern="*.gtw"/>
      </mime-type>
      <mime-type type="model/vnd.moml+xml"/>
      <mime-type type="model/vnd.mts">
        <glob pattern="*.mts"/>
      </mime-type>
      <mime-type type="model/vnd.parasolid.transmit.binary"/>
      <mime-type type="model/vnd.parasolid.transmit.text"/>
      <mime-type type="model/vnd.vtu">
        <glob pattern="*.vtu"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    ])!s[1].startsWith(".")||(yield*uh(s[1],e,t,r))}function wo(i){return i===null?new Set:new Set(uh(i,Z.dirname(i),new Set))}var LC,NC,$C,fh=C(()=>{l();je();gt();LC=[".js",".cjs",".mjs"],NC=["",".js",".cjs",".mjs",".ts",".cts",".mts",".jsx",".tsx"],$C=["",".ts",".cts",".mts",".tsx",".js",".cjs",".mjs",".jsx"]});function zC(i,e){if(bo.has(i))return bo.get(i);let t=ih(i,e);return bo.set(i,t).get(i)}function VC(i){let e=ms(i);if(e!==null){let[r,n,a,s]=ph.get(e)||[],o=wo(e),u=!1,c=new Map;for(let p of...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
Back to top