Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for ActionID (0.63 sec)

  1. src/cmd/go/internal/work/exec.go

    	if err != nil {
    		return err
    	}
    	defer f.Close()
    	_, _, err = c.Put(cache.Subkey(a.actionID, name), f)
    	return err
    }
    
    func (b *Builder) findCachedObjdirFile(a *Action, c cache.Cache, name string) (string, error) {
    	file, _, err := cache.GetFile(c, cache.Subkey(a.actionID, name))
    	if err != nil {
    		return "", fmt.Errorf("loading cached file %s: %w", name, err)
    	}
    	return file, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/gc.go

    	if a.Mode == "link" {
    		// For linking, use the main package's build ID instead of
    		// the binary's build ID, so it is the same hash used in
    		// compiling and linking.
    		// When compiling, we use actionID/actionID (instead of
    		// actionID/contentID) as a temporary build ID to compute
    		// the hash. Do the same here. (See buildid.go:useCache)
    		// The build ID matters because it affects the overall hash
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func WinVerifyTrustEx(hwnd HWND, actionId *GUID, data *WinTrustData) (ret error) {
    	r0, _, _ := syscall.Syscall(procWinVerifyTrustEx.Addr(), 3, uintptr(hwnd), uintptr(unsafe.Pointer(actionId)), uintptr(unsafe.Pointer(data)))
    	if r0 != 0 {
    		ret = syscall.Errno(r0)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	WinVerifyTrustEx(hwnd HWND, actionId *GUID, data *WinTrustData) (ret error) = wintrust.WinVerifyTrustEx
    //sys	RegOpenKeyEx(key Handle, subkey *uint16, options uint32, desiredAccess uint32, result *Handle) (regerrno error) = advapi32.RegOpenKeyExW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top