Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for Win32 (0.13 sec)

  1. src/runtime/os_windows.go

    		throw("usage")
    	}
    	f := stdcall2(_GetProcAddress, lib, uintptr(unsafe.Pointer(&name[0])))
    	return stdFunction(unsafe.Pointer(f))
    }
    
    const _MAX_PATH = 260 // https://docs.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation
    var sysDirectory [_MAX_PATH + 1]byte
    var sysDirectoryLen uintptr
    
    func initSysDirectory() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  2. cmd/kubelet/app/options/options.go

    	// The default priority class associated with any process in Windows is NORMAL_PRIORITY_CLASS. Keeping it as is
    	// to maintain backwards compatibility.
    	// Source: https://docs.microsoft.com/en-us/windows/win32/procthread/scheduling-priorities
    	WindowsPriorityClass string
    
    	// experimentalMounterPath is the path of mounter binary. Leave empty to use the default mount path
    	ExperimentalMounterPath string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. src/os/exec/exec_test.go

    			// in the Windows registry, and I'm not sure if it is possible to remove
    			// a registry variable in a program's environment.
    			//
    			// Per https://learn.microsoft.com/en-us/windows/win32/api/processenv/nf-processenv-needcurrentdirectoryforexepathw#remarks,
    			// “the existence of the NoDefaultCurrentDirectoryInExePath environment
    			// variable is checked, and not its value.”
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
Back to top