Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for stats (0.16 sec)

  1. api/go1.5.txt

    pkg crypto/x509, type Certificate struct, UnhandledCriticalExtensions []asn1.ObjectIdentifier
    pkg crypto/x509/pkix, type Name struct, ExtraNames []AttributeTypeAndValue
    pkg database/sql, method (*DB) Stats() DBStats
    pkg database/sql, type DBStats struct
    pkg database/sql, type DBStats struct, OpenConnections int
    pkg debug/dwarf, const ClassAddress = 1
    pkg debug/dwarf, const ClassAddress Class
    pkg debug/dwarf, const ClassBlock = 2
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  2. src/archive/tar/stat_actime1.go

    //go:build aix || linux || dragonfly || openbsd || solaris
    
    package tar
    
    import (
    	"syscall"
    	"time"
    )
    
    func statAtime(st *syscall.Stat_t) time.Time {
    	return time.Unix(st.Atim.Unix())
    }
    
    func statCtime(st *syscall.Stat_t) time.Time {
    	return time.Unix(st.Ctim.Unix())
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Oct 28 18:17:57 GMT 2021
    - 431 bytes
    - Viewed (0)
  3. api/go1.3.txt

    pkg syscall (openbsd-amd64), type RtMetrics struct, Pad uint32
    pkg syscall (openbsd-amd64), type Stat_t struct, Ino uint64
    pkg syscall (openbsd-amd64), type Stat_t struct, Pad_cgo_0 [4]uint8
    pkg syscall (openbsd-amd64), type Statfs_t struct, F_ctime uint64
    pkg syscall (openbsd-amd64), type Statfs_t struct, F_mntfromspec [90]int8
    pkg syscall (openbsd-amd64), type Statfs_t struct, Pad_cgo_1 [2]uint8
    pkg syscall (openbsd-amd64), type Termios struct
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  4. src/bufio/bufio_test.go

    	_, _, err = r.ReadRune() // reset state
    	if err != nil {
    		t.Error("unexpected error on ReadRune (2):", err)
    	}
    	_, err = r.Read(buf)
    	if err != nil {
    		t.Error("unexpected error on Read (2):", err)
    	}
    	if r.UnreadRune() == nil {
    		t.Error("expected error after Read (2)")
    	}
    	// Test error after ReadByte.
    	_, _, err = r.ReadRune() // reset state
    	if err != nil {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  5. misc/wasm/wasm_exec.js

    			const argv = offset;
    			argvPtrs.forEach((ptr) => {
    				this.mem.setUint32(offset, ptr, true);
    				this.mem.setUint32(offset + 4, 0, true);
    				offset += 8;
    			});
    
    			// The linker guarantees global data starts from at least wasmMinDataAddr.
    			// Keep in sync with cmd/link/internal/ld/data.go:wasmMinDataAddr.
    			const wasmMinDataAddr = 4096 + 8192;
    			if (offset >= wasmMinDataAddr) {
    JavaScript
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon May 22 17:47:47 GMT 2023
    - 16.3K bytes
    - Viewed (1)
  6. src/cmd/asm/internal/asm/testdata/mips64.s

    //
    // store floats
    //
    //	LMOVW freg ',' addr
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MOVD	F1, foo<>+3(SB)
    	MOVD	F1, 16(R2)
    	MOVD	F1, (R2)
    
    //
    // floating point status
    //
    //	LMOVW fpscr ',' freg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MOVW	FCR31, R1 // 4441f800
    
    //	LMOVW freg ','  fpscr
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 08 12:17:12 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    that can be converted to type <code>T</code>.
    </p>
    
    <pre class="ebnf">
    Conversion = Type "(" Expression [ "," ] ")" .
    </pre>
    
    <p>
    If the type starts with the operator <code>*</code> or <code>&lt;-</code>,
    or if the type starts with the keyword <code>func</code>
    and has no result list, it must be parenthesized when
    necessary to avoid ambiguity:
    </p>
    
    <pre>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  8. src/cmd/cgo/doc.go

    cases section below.
    
    To access a struct, union, or enum type directly, prefix it with
    struct_, union_, or enum_, as in C.struct_stat.
    
    The size of any C type T is available as C.sizeof_T, as in
    C.sizeof_struct_stat.
    
    A C function may be declared in the Go file with a parameter type of
    the special name _GoString_. This function may be called with an
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  9. api/go1.13.txt

    pkg syscall (netbsd-arm64), type Stat_t struct, Flags uint32
    pkg syscall (netbsd-arm64), type Stat_t struct, Gen uint32
    pkg syscall (netbsd-arm64), type Stat_t struct, Gid uint32
    pkg syscall (netbsd-arm64), type Stat_t struct, Ino uint64
    pkg syscall (netbsd-arm64), type Stat_t struct, Mode uint32
    pkg syscall (netbsd-arm64), type Stat_t struct, Mtimespec Timespec
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  10. api/go1.txt

    pkg syscall (darwin-386), type Statfs_t struct, Bsize uint32
    pkg syscall (darwin-386), type Statfs_t struct, Ffree uint64
    pkg syscall (darwin-386), type Statfs_t struct, Files uint64
    pkg syscall (darwin-386), type Statfs_t struct, Flags uint32
    pkg syscall (darwin-386), type Statfs_t struct, Fsid Fsid
    pkg syscall (darwin-386), type Statfs_t struct, Fssubtype uint32
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top