Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for user_profile (0.15 sec)

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

    wait
    
    env TESTGOROOT=$GOROOT
    env GOROOT=
    
    # Unset GOPATH and any variables that its default may be derived from,
    # so that we can check for a spurious warning.
    env GOPATH=
    env HOME=''
    env USERPROFILE=''
    env home=''
    
    # Relocated Executable
    # Since we built with -trimpath and the binary isn't installed in a
    # normal-looking GOROOT, this command should fail.
    
    ! exec $WORK/new/bin/go$GOEXE env GOROOT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. docs/en/docs/how-to/nosql-databases-couchbase.md

    ```Python hl_lines="36-42"
    {!../../../docs_src/nosql_databases/tutorial001.py!}
    ```
    
    ### f-strings
    
    If you are not familiar with the `f"userprofile::{username}"`, it is a Python "<a href="https://docs.python.org/3/glossary.html#term-f-string" class="external-link" target="_blank">f-string</a>".
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. src/os/file.go

    // On Windows, it returns %USERPROFILE%.
    // On Plan 9, it returns the $home environment variable.
    //
    // If the expected variable is not set in the environment, UserHomeDir
    // returns either a platform-specific default value or a non-nil error.
    func UserHomeDir() (string, error) {
    	env, enverr := "HOME", "$HOME"
    	switch runtime.GOOS {
    	case "windows":
    		env, enverr = "USERPROFILE", "%userprofile%"
    	case "plan9":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  4. test-site/activator

    declare -r java_opts=( "${ACTIVATOR_OPTS[@]}" "${SBT_OPTS[@]}" "${JAVA_OPTS[@]}" "${java_opts[@]}" )
    userhome="$HOME"
    if is_cygwin; then
      # cygwin sets home to something f-d up, set to real windows homedir
      userhome="$USERPROFILE"
    fi
    declare -r activator_user_home_dir="${userhome}/.activator"
    declare -r java_opts_config_home="${activator_user_home_dir}/activatorconfig.txt"
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    The _outcome label_ `FROM-CACHE` lets the user know that Gradle has fetched the task results from the local build cache.
    
    The local Gradle Build Cache is located at:
    
    - **On Windows**: %USERPROFILE%\.gradle\caches
    - **On OS X / UNIX**: ~/.gradle/caches/
    
    Gradle will periodically clean up the local build cache directory by removing entries that have not been used recently to conserve disk space.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. src/cmd/go/scriptreadme_test.go

    	GODEBUG=<actual GODEBUG>
    	devnull=<value of os.DevNull>
    	goversion=<current Go version; for example, 1.12>
    
    On Plan 9, the variables $path and $home are set instead of $PATH and $HOME.
    On Windows, the variables $USERPROFILE and $TMP are set instead of
    $HOME and $TMPDIR.
    
    The lines at the top of the script are a sequence of commands to be executed by
    a small script engine configured in ../../script_test.go (not the system shell).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcweb/script.go

    	return env
    }
    
    // homeEnvName returns the environment variable used by os.UserHomeDir
    // to locate the user's home directory.
    func homeEnvName() string {
    	switch runtime.GOOS {
    	case "windows":
    		return "USERPROFILE"
    	case "plan9":
    		return "home"
    	default:
    		return "HOME"
    	}
    }
    
    // tempEnvName returns the environment variable used by os.TempDir
    // to locate the default directory for temporary files.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 9K bytes
    - Viewed (0)
  8. docs/tls/README.md

    Copy the existing private key and public certificate to the `certs` directory. The default certs directory is:
    
    * **Linux:** `${HOME}/.minio/certs`
    * **Windows:** `%%USERPROFILE%%\.minio\certs`
    
    **Note:**
    
    * Location of custom certs directory can be specified using `--certs-dir` command line option.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    	"                      ${name}.debug, $dir/.debug/${name}.debug,\n" +
    	"                      usr/lib/debug/$dir/${name}.debug\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/README

    	GODEBUG=<actual GODEBUG>
    	devnull=<value of os.DevNull>
    	goversion=<current Go version; for example, 1.12>
    
    On Plan 9, the variables $path and $home are set instead of $PATH and $HOME.
    On Windows, the variables $USERPROFILE and $TMP are set instead of
    $HOME and $TMPDIR.
    
    The lines at the top of the script are a sequence of commands to be executed by
    a small script engine configured in ../../script_test.go (not the system shell).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top