Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Bradshaw (0.12 sec)

  1. src/time/zoneinfo_ios.go

    			continue
    		}
    		defer syscall.Close(fd)
    		if err := syscall.Fstat(fd, &st); err == nil {
    			return r + "/zoneinfo.zip", true
    		}
    	}
    	return "", false
    }
    
    func initLocal() {
    	// TODO(crawshaw): [NSTimeZone localTimeZone]
    	localLoc = *UTC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 20:57:35 UTC 2022
    - 1K bytes
    - Viewed (0)
  2. src/runtime/cgo/signal_ios_arm64.s

    TEXT xx_cgo_panicmem(SB),NOSPLIT|NOFRAME,$0
    	// If in external C code, we need to load the g register.
    	BL  runtime·load_g(SB)
    	CMP $0, g
    	BNE ongothread
    
    	// On a foreign thread.
    	// TODO(crawshaw): call badsignal
    	MOVD.W $0, -16(RSP)
    	MOVW $139, R1
    	MOVW R1, 8(RSP)
    	B    runtime·exit(SB)
    
    ongothread:
    	// Trigger a SIGSEGV panic.
    	//
    	// The goal is to arrange the stack so it looks like the runtime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 06 22:54:58 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  3. src/plugin/plugin_dlopen.go

    	}
    	var cErr *C.char
    	h := C.pluginOpen((*C.char)(unsafe.Pointer(&cPath[0])), &cErr)
    	if h == 0 {
    		pluginsMu.Unlock()
    		return nil, errors.New(`plugin.Open("` + name + `"): ` + C.GoString(cErr))
    	}
    	// TODO(crawshaw): look for plugin note, confirm it is a Go plugin
    	// and it was built with the correct toolchain.
    	if len(name) > 3 && name[len(name)-3:] == ".so" {
    		name = name[:len(name)-3]
    	}
    	if plugins == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 16:55:22 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top