Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for status (0.2 sec)

  1. 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 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 08 12:17:12 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    //go:cgo_import_static <local>
    
    	In external linking mode, allow unresolved references to
    	<local> in the go.o object file prepared for the host linker,
    	under the assumption that <local> will be supplied by the
    	other object files that will be linked with go.o.
    
    	Example:
    	//go:cgo_import_static puts_wrapper
    
    //go:cgo_export_static <local> <remote>
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  3. 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 30 11:13:12 GMT 2024
    - Last Modified: Thu Oct 28 18:17:57 GMT 2021
    - 431 bytes
    - Viewed (0)
  4. 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 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  5. 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 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  6. 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 30 11:13:12 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    The dynamic type may vary during execution but values stored in interface
    variables are always <a href="#Assignability">assignable</a>
    to the static type of the variable.
    </p>
    
    <pre>
    var x interface{}  // x is nil and has static type interface{}
    var v *T           // v has value nil, static type *T
    x = 42             // x has value 42 and dynamic type int
    x = v              // x has value (*T)(nil) and dynamic type *T
    </pre>
    
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/issue1435.go

    //   for (i = 0; i < nts; i++) {
    //     pthread_join(t[i], NULL);
    //   }
    //   pthread_mutex_destroy(&mu);
    //   free(t);
    // }
    import "C"
    
    // compareStatus is used to confirm the contents of the thread
    // specific status files match expectations.
    func compareStatus(filter, expect string) error {
    	expected := filter + expect
    	pid := syscall.Getpid()
    	fs, err := os.ReadDir(fmt.Sprintf("/proc/%d/task", pid))
    	if err != nil {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Jul 28 21:31:41 GMT 2023
    - 7.5K bytes
    - Viewed (0)
  9. misc/linkcheck/linkcheck.go

    		}
    		if !strings.HasPrefix(newURL.String(), *root) {
    			// Skip off-site redirects.
    			return nil
    		}
    		crawl(newURL.String(), url)
    		return nil
    	}
    	if res.StatusCode != 200 {
    		return errors.New(res.Status)
    	}
    	slurp, err := io.ReadAll(res.Body)
    	res.Body.Close()
    	if err != nil {
    		log.Fatalf("Error reading %s body: %v", url, err)
    	}
    	if *verbose {
    		log.Printf("Len of %s: %d", url, len(slurp))
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Oct 06 15:53:04 GMT 2021
    - 3.9K bytes
    - Viewed (0)
  10. api/go1.12.txt

    pkg syscall (freebsd-386), type Stat_t struct, Nlink uint64
    pkg syscall (freebsd-386), type Stat_t struct, Padding0 int16
    pkg syscall (freebsd-386), type Stat_t struct, Padding1 int32
    pkg syscall (freebsd-386), type Stat_t struct, Rdev uint64
    pkg syscall (freebsd-386), type Stat_t struct, Spare [10]uint64
    pkg syscall (freebsd-386), type Statfs_t struct, Mntfromname [1024]int8
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 02 21:21:53 GMT 2019
    - 13.5K bytes
    - Viewed (0)
Back to top