Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 93 for PWD (0.04 sec)

  1. src/internal/testenv/exec.go

    // variables that could modify the behavior of the Go tools such as
    // GODEBUG and GOTRACEBACK.
    //
    // If the caller wants to set cmd.Dir, set it before calling this function,
    // so PWD will be set correctly in the environment.
    func CleanCmdEnv(cmd *exec.Cmd) *exec.Cmd {
    	if cmd.Env != nil {
    		panic("environment already set")
    	}
    	for _, env := range cmd.Environ() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 27 17:53:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. gradlew

    # This is normally unused
    # shellcheck disable=SC2034
    APP_BASE_NAME=${0##*/}
    # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
    APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
    
    # Use the maximum available, or set MAX_FD != -1 to use that value.
    MAX_FD=maximum
    
    warn () {
        echo "$*"
    } >&2
    
    die () {
        echo
        echo "$*"
        echo
        exit 1
    } >&2
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 24 09:00:26 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. src/make.bash

    		fi
    	done
    fi
    export GOROOT_BOOTSTRAP
    
    bootstrapenv() {
    	GOROOT="$GOROOT_BOOTSTRAP" GO111MODULE=off GOENV=off GOOS= GOARCH= GOEXPERIMENT= GOFLAGS= "$@"
    }
    
    export GOROOT="$(cd .. && pwd)"
    IFS=$'\n'; for go_exe in $(type -ap go); do
    	if [[ ! -x "$GOROOT_BOOTSTRAP/bin/go" ]]; then
    		goroot_bootstrap=$GOROOT_BOOTSTRAP
    		GOROOT_BOOTSTRAP=""
    		goroot=$(bootstrapenv "$go_exe" env GOROOT)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. docs/site-replication/run-sse-kms-object-replication.sh

    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    
    	exit 1
    }
    
    cleanup() {
    	echo -n "Cleaning up instances of MinIO ..."
    	pkill -9 minio || sudo pkill -9 minio
    	pkill -9 kes || sudo pkill -9 kes
    	rm -rf ${PWD}/keys
    	rm -rf /tmp/minio{1,2}
    	echo "done"
    }
    
    cleanup
    
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    export MINIO_ROOT_PASSWORD="minio123"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    APP_BASE_NAME=\${0##*/}
    # Discard cd standard output in case \$CDPATH is set (https://github.com/gradle/gradle/issues/25036)
    APP_HOME=\$( cd -P "\${APP_HOME:-./}${appHomeRelativePath}" > /dev/null && printf '%s\n' "\$PWD" ) || exit
    
    # Use the maximum available, or set MAX_FD != -1 to use that value.
    MAX_FD=maximum
    
    warn () {
        echo "\$*"
    } >&2
    
    die () {
        echo
        echo "\$*"
        echo
        exit 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	modRoot := filepath.Join(GOPATH, "src", "testcarchive")
    	if err := cgotest.OverlayDir(modRoot, "testdata"); err != nil {
    		log.Panic(err)
    	}
    	if err := os.Chdir(modRoot); err != nil {
    		log.Panic(err)
    	}
    	os.Setenv("PWD", modRoot)
    	if err := os.WriteFile("go.mod", []byte("module testcarchive\n"), 0666); err != nil {
    		log.Panic(err)
    	}
    
    	GOOS = goEnv("GOOS")
    	GOARCH = goEnv("GOARCH")
    	bin = cmdToRun("./testp")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  7. src/cmd/distpack/pack.go

    //
    //	GOOS=goos GOARCH=goarch ./make.bash -distpack
    //
    // To test that the module downloads are usable with the go command:
    //
    //	./make.bash -distpack
    //	mkdir -p /tmp/goproxy/golang.org/toolchain/
    //	ln -sf $(pwd)/../pkg/distpack /tmp/goproxy/golang.org/toolchain/@v
    //	GOPROXY=file:///tmp/goproxy GOTOOLCHAIN=$(sed 1q ../VERSION) gotip version
    //
    // gotip can be replaced with an older released Go version once there is one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. src/cmd/internal/testdir/testdir_test.go

    		if runInDir != "" {
    			cmd.Dir = runInDir
    			// Set PWD to match Dir to speed up os.Getwd in the child process.
    			cmd.Env = append(cmd.Env, "PWD="+cmd.Dir)
    		} else {
    			// Default to running in the GOROOT/test directory.
    			cmd.Dir = t.gorootTestDir
    			// Set PWD to match Dir to speed up os.Getwd in the child process.
    			cmd.Env = append(cmd.Env, "PWD="+cmd.Dir)
    		}
    		if tempDirIsGOPATH {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/html.go

    	if err != nil {
    		f.Fatalf("%v", err)
    	}
    	reportPath := path
    	if !filepath.IsAbs(reportPath) {
    		pwd, err := os.Getwd()
    		if err != nil {
    			f.Fatalf("%v", err)
    		}
    		reportPath = filepath.Join(pwd, path)
    	}
    	html := HTMLWriter{
    		w:    out,
    		Func: f,
    		path: reportPath,
    		dot:  newDotWriter(cfgMask),
    	}
    	html.start()
    	return &html
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  10. cluster/common.sh

    # limitations under the License.
    
    # Common utilities for kube-up/kube-down
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. && pwd)
    
    DEFAULT_KUBECONFIG="${HOME:-.}/.kube/config"
    
    source "${KUBE_ROOT}/hack/lib/util.sh"
    # KUBE_RELEASE_VERSION_REGEX matches things like "v1.2.3" or "v1.2.3-alpha.4"
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
Back to top