Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for SYSTEMROOT (0.08 sec)

  1. src/cmd/go/script_test.go

    	}
    
    	for _, key := range extraEnvKeys {
    		if val, ok := os.LookupEnv(key); ok {
    			env = append(env, key+"="+val)
    		}
    	}
    
    	return env, nil
    }
    
    var extraEnvKeys = []string{
    	"SYSTEMROOT",         // must be preserved on Windows to find DLLs; golang.org/issue/25210
    	"WINDIR",             // must be preserved on Windows to be able to run PowerShell command; golang.org/issue/30711
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/internal/syscall/windows/registry/value.go

    		// This approach works with tzres.dll but may have to be revised
    		// in the future to allow callers to provide custom search paths.
    
    		var s string
    		s, err = ExpandString("%SystemRoot%\\system32\\")
    		if err != nil {
    			return "", err
    		}
    		pdir, err = syscall.UTF16PtrFromString(s)
    		if err != nil {
    			return "", err
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. src/os/os_test.go

    				break
    			}
    		}
    		if found {
    			return sd
    		}
    		// In a self-hosted iOS build the above files might
    		// not exist. Look for system files instead below.
    	case "windows":
    		return &sysDir{
    			Getenv("SystemRoot") + "\\system32\\drivers\\etc",
    			[]string{
    				"networks",
    				"protocol",
    				"services",
    			},
    		}
    	case "plan9":
    		return &sysDir{
    			"/lib/ndb",
    			[]string{
    				"common",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top