Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for WINDIR (0.11 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt

        "SDKMAN_CANDIDATES_DIR",
    
        // temp dir
        "TMPDIR",
        "TMP",
        "TEMP",
    
        // Seems important on Windows
        "ALLUSERSPROFILE",
        "PUBLIC",
        "windir",
    
        // Used by performance test to recognize TeamCity buildId
        "BUILD_ID",
        // Used by some tests to be ignored in specific build
        "BUILD_TYPE_ID",
        "JPROFILER_HOME",
    
        "LANG",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 18 01:52:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/main/assemblies/files/service.bat

    )
    
    "%JAVA_HOME%\bin\java" -Xmx50M -version > nul 2>&1
    
    if errorlevel 1 (
    	echo Warning: Could not start JVM to detect version, defaulting to x86:
    	goto x86
    )
    
    "%JAVA_HOME%\bin\java" -Xmx50M -version 2>&1 | "%windir%\System32\find" "64-Bit" >nul:
    
    if errorlevel 1 goto x86
    set EXECUTABLE=%FESS_HOME%\bin\fess-service-x64.exe
    set SERVICE_ID=fess-service-x64
    set ARCH=64-bit
    goto checkExe
    
    :x86
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/vcweb/script.go

    	for _, k := range []string{
    		pathEnvName(),
    		tempEnvName(),
    		"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
    		"ComSpec",           // must be preserved on Windows to be able to run Batch files; golang.org/issue/56555
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 9K bytes
    - Viewed (0)
  4. src/net/http/cgi/host.go

    	case "illumos", "solaris":
    		return []string{"LD_LIBRARY_PATH", "LD_LIBRARY_PATH_32", "LD_LIBRARY_PATH_64"}
    	case "windows":
    		return []string{"SystemRoot", "COMSPEC", "PATHEXT", "WINDIR"}
    	}
    	return nil
    }()
    
    // Handler runs an executable in a subprocess with a CGI environment.
    type Handler struct {
    	Path string // path to the CGI executable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/cmd/go/script_test.go

    			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
    	"LD_LIBRARY_PATH",    // must be preserved on Unix systems to find shared libraries
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. cluster/gce/windows/common.psm1

    Rotate-Files -Pattern '${Pattern}' -Path '${Path}' -Config `$config
    "@
      # The task will execute the rotate-kube-logs.ps1 script created above.
      # We explicitly set -WorkingDirectory to $Path for safety's sake, otherwise
      # it runs in %windir%\system32 by default, which sounds dangerous.
      $action = New-ScheduledTaskAction -Execute "powershell" -Argument "-NoLogo -NonInteractive -File ${scriptPath}" -WorkingDirectory $Path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
Back to top