Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for appData (0.17 sec)

  1. src/cmd/go/testdata/script/telemetry.txt

    go help telemetry
    env TEST_TELEMETRY_DIR=
    
    # Set userconfig dir, which is determined by os.UserConfigDir.
    # The telemetry dir is determined using that.
    mkdir $WORK/userconfig
    env AppData=$WORK\userconfig # windows
    [GOOS:windows] env userconfig=$AppData
    env HOME=$WORK/userconfig # darwin,unix,ios
    [GOOS:darwin] env userconfig=$HOME'/Library/Application Support'
    [GOOS:ios] env userconfig=$HOME'/Library/Application Support'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/ResolverEventLogger.kt

                    isWindows ->
                        System.getenv("LOCALAPPDATA")
                            ?.let { File("$it/gradle-kotlin-dsl/log") }
                            ?: userHome().resolve("AppData/Local/gradle-kotlin-dsl/log")
                    else -> userHome().resolve(".gradle-kotlin-dsl/log")
                }
            }
    
        private
        fun now() = GregorianCalendar.getInstance().time
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/CommandLineToolVersionLocatorTest.groovy

                    "channelId": "VisualStudio.15.Release",
                    "channelPath": "C:\\\\Users\\\\IEUser\\\\AppData\\\\Local\\\\Microsoft\\\\VisualStudio\\\\Packages\\\\_Channels\\\\4CB340F5\\\\catalog.json",
                    "channelUri": "https://aka.ms/vs/15/release/channel",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/env_write.txt

    env GO111MODULE=off
    
    # go env should default to the right places
    env AppData=$HOME/windowsappdata
    env home=$HOME/plan9home
    go env GOENV
    [GOOS:aix] stdout $HOME/.config/go/env
    [GOOS:darwin] stdout $HOME'/Library/Application Support/go/env'
    [GOOS:freebsd] stdout $HOME/.config/go/env
    [GOOS:linux] stdout $HOME/.config/go/env
    [GOOS:netbsd] stdout $HOME/.config/go/env
    [GOOS:openbsd] stdout $HOME/.config/go/env
    [GOOS:plan9] stdout $HOME/plan9home/lib/go/env
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 18:42:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. src/os/file.go

    // On Windows, it returns %AppData%.
    // On Plan 9, it returns $home/lib.
    //
    // If the location cannot be determined (for example, $HOME is not defined),
    // then it will return an error.
    func UserConfigDir() (string, error) {
    	var dir string
    
    	switch runtime.GOOS {
    	case "windows":
    		dir = Getenv("AppData")
    		if dir == "" {
    			return "", errors.New("%AppData% is not defined")
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. pkg/volume/util/subpath/subpath_windows.go

    			return path, nil
    		}
    	}
    	// This command will give the target path of a given symlink
    	// The -Force parameter will allow Get-Item to also evaluate hidden folders, like AppData.
    	cmd := exec.Command("powershell", "/c", "$ErrorActionPreference = 'Stop'; (Get-Item -Force -LiteralPath $env:linkpath).Target")
    	cmd.Env = append(os.Environ(), fmt.Sprintf("linkpath=%s", upperpath))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 12:57:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  7. build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy

    -D$java.rmi.server.hostname=127.0.0.1 -Xmx1024m -XX:MaxMetaspaceSize=512m -Dkotlin.environment.keepalive -ea --add-exports java.base/sun.nio.ch=ALL-UNNAMED org.jetbrains.kotlin.daemon.KotlinCompileDaemon --daemon-runFilesPath C:\\Users\\tcagent1\\AppData\\Local\\kotlin\\daemon --daemon-autoshutdownIdleSeconds=7200 --daemon-compilerClasspath C:\\tcagent1\\work\\f63322e10dd6b396\\intTestHomeDir\\distributions-full\\caches\\modules-2\\files-2.1\\org.jetbrains.kotlin\\kotlin-compiler-embeddable\\1.9....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:00:39 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  8. src/os/os_windows_test.go

    	// such reparse points are treated as irregular (but executable) files, not
    	// broken symlinks.
    	appdata := os.Getenv("LOCALAPPDATA")
    	if appdata == "" {
    		t.Skipf("skipping: LOCALAPPDATA not set")
    	}
    
    	pythonExeName := "python3.exe"
    	pythonPath := filepath.Join(appdata, `Microsoft\WindowsApps`, pythonExeName)
    
    	lfi, err := os.Lstat(pythonPath)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  9. configure.py

      """Set ANDROID_NDK_HOME and write Android NDK WORKSPACE rule."""
      if is_windows() or is_cygwin():
        default_ndk_path = cygpath('%s/Android/Sdk/ndk-bundle' %
                                   environ_cp['APPDATA'])
      elif is_macos():
        default_ndk_path = '%s/library/Android/Sdk/ndk-bundle' % environ_cp['HOME']
      else:
        default_ndk_path = '%s/Android/Sdk/ndk-bundle' % environ_cp['HOME']
    
      def valid_ndk_path(path):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    * Run `./gradle tasks` to get more details
    * Check the logs in one of these locations:
    ** `$HOME/Library/Logs/gradle-kotlin-dsl` on Mac OS X
    ** `$HOME/.gradle-kotlin-dsl/log` on Linux
    ** `$HOME/AppData/Local/gradle-kotlin-dsl/log` on Windows
    * Open an issue on the link:{gradle-issues}[Gradle issue tracker], including as much detail as you can.
    
    From version 5.1 onwards, the log directory is cleaned up automatically.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top