Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Wignall (0.21 sec)

  1. api/go1.18.txt

    pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Pdeathsig Signal
    pkg syscall (freebsd-amd64), type SysProcAttr struct, Pdeathsig Signal
    pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Pdeathsig Signal
    pkg syscall (freebsd-arm), type SysProcAttr struct, Pdeathsig Signal
    pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Pdeathsig Signal
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 13K bytes
    - Viewed (0)
  2. api/go1.16.txt

    pkg syscall (darwin-arm64), const SIGIOT = 6
    pkg syscall (darwin-arm64), const SIGIOT Signal
    pkg syscall (darwin-arm64), const SIGPROF = 27
    pkg syscall (darwin-arm64), const SIGPROF Signal
    pkg syscall (darwin-arm64), const SIGSTOP = 17
    pkg syscall (darwin-arm64), const SIGSTOP Signal
    pkg syscall (darwin-arm64), const SIGSYS = 12
    pkg syscall (darwin-arm64), const SIGSYS Signal
    pkg syscall (darwin-arm64), const SIGTSTP = 18
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  3. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SIGIOT = 6
    pkg syscall (freebsd-arm64), const SIGIOT Signal
    pkg syscall (freebsd-arm64), const SIGLIBRT = 33
    pkg syscall (freebsd-arm64), const SIGLIBRT Signal
    pkg syscall (freebsd-arm64), const SIGLWP = 32
    pkg syscall (freebsd-arm64), const SIGLWP Signal
    pkg syscall (freebsd-arm64), const SIGPROF = 27
    pkg syscall (freebsd-arm64), const SIGPROF Signal
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  4. src/archive/tar/strconv.go

    		if b[0]&0x40 != 0 {
    			inv = 0xff
    		}
    
    		var x uint64
    		for i, c := range b {
    			c ^= inv // Inverts c only if inv is 0xff, otherwise does nothing
    			if i == 0 {
    				c &= 0x7f // Ignore signal bit in first byte
    			}
    			if (x >> 56) > 0 {
    				p.err = ErrHeader // Integer overflow
    				return 0
    			}
    			x = x<<8 | uint64(c)
    		}
    		if (x >> 63) > 0 {
    			p.err = ErrHeader // Integer overflow
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 01 14:28:42 GMT 2023
    - 9K bytes
    - Viewed (0)
  5. misc/ios/go_ios_exec.go

    	sys.exit(1)
    
    # Don't stop on signals.
    sigs = process.GetUnixSignals()
    for i in range(0, sigs.GetNumSignals()):
    	sig = sigs.GetSignalAtIndex(i)
    	sigs.SetShouldStop(sig, False)
    	sigs.SetShouldNotify(sig, False)
    
    event = lldb.SBEvent()
    running = False
    prev_handler = None
    
    def signal_handler(signal, frame):
    	process.Signal(signal)
    
    def run_program():
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  6. misc/go_android_exec/main.go

    		return 0, err
    	}
    
    	// Forward SIGQUIT from the go command to show backtraces from
    	// the binary instead of from this wrapper.
    	quit := make(chan os.Signal, 1)
    	signal.Notify(quit, syscall.SIGQUIT)
    	go func() {
    		for range quit {
    			// We don't have the PID of the running process; use the
    			// binary name instead.
    			adb("exec-out", "killall -QUIT "+binName)
    		}
    	}()
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Aug 21 17:46:57 GMT 2023
    - 15.3K bytes
    - Viewed (0)
  7. src/archive/zip/writer.go

    		b.uint16(h.ModifiedDate)
    		b.uint32(h.CRC32)
    		if h.isZip64() || h.offset >= uint32max {
    			// the file needs a zip64 header. store maxint in both
    			// 32 bit size fields (and offset later) to signal that the
    			// zip64 extra header should be used.
    			b.uint32(uint32max) // compressed size
    			b.uint32(uint32max) // uncompressed size
    
    			// append a zip64 extra block to Extra
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 04 14:28:57 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  8. misc/cgo/gmp/gmp.go

    it compiles into a shared object (.so) that is dynamically linked into
    any 6.out that imports the first two files.
    
    The stanza
    
    	// #include <gmp.h>
    	import "C"
    
    is a signal to cgo.  The doc comment on the import of "C" provides
    additional context for the C file.  Here it is just a single #include
    but it could contain arbitrary C definitions to be imported and used.
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 9.5K bytes
    - Viewed (0)
  9. api/go1.1.txt

    pkg os, const O_RDWR = 2
    pkg os, const O_WRONLY = 1
    pkg os, const SEEK_CUR = 1
    pkg os, const SEEK_END = 2
    pkg os, const SEEK_SET = 0
    pkg os, method (FileMode) IsRegular() bool
    pkg os/signal, func Stop(chan<- os.Signal)
    pkg path/filepath (darwin-386), const ListSeparator = 58
    pkg path/filepath (darwin-386), const Separator = 47
    pkg path/filepath (darwin-386-cgo), const ListSeparator = 58
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  10. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const SIGCHLD Signal #53466
    pkg syscall (freebsd-riscv64), const SIGCONT = 19 #53466
    pkg syscall (freebsd-riscv64), const SIGCONT Signal #53466
    pkg syscall (freebsd-riscv64), const SIGEMT = 7 #53466
    pkg syscall (freebsd-riscv64), const SIGEMT Signal #53466
    pkg syscall (freebsd-riscv64), const SIGINFO = 29 #53466
    pkg syscall (freebsd-riscv64), const SIGINFO Signal #53466
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
Back to top