Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,252 for kenv (0.04 sec)

  1. 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)
  2. src/cmd/go/testdata/script/env_changed.txt

    # Test query for non-defaults in the env
    
    env GOROOT=./a
    env GOTOOLCHAIN=local
    env GOSUMDB=nodefault
    env GOPROXY=nodefault
    env GO111MODULE=auto
    env CGO_CFLAGS=nodefault
    env CGO_CPPFLAGS=nodefault
    
    go env -changed
    # linux output like GOTOOLCHAIN='local'
    # windows output like GOTOOLCHAIN=local
    stdout 'GOTOOLCHAIN=''?local''?'
    stdout 'GOSUMDB=''?nodefault''?'
    stdout 'GOPROXY=''?nodefault''?'
    stdout 'GO111MODULE=''?auto''?'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:49:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/net/http/cgi/host.go

    		env = append(env, fmt.Sprintf("CONTENT_LENGTH=%d", req.ContentLength))
    	}
    	if ctype := req.Header.Get("Content-Type"); ctype != "" {
    		env = append(env, "CONTENT_TYPE="+ctype)
    	}
    
    	envPath := os.Getenv("PATH")
    	if envPath == "" {
    		envPath = "/bin:/usr/bin:/usr/ucb:/usr/bsd:/usr/local/bin"
    	}
    	env = append(env, "PATH="+envPath)
    
    	for _, e := range h.InheritEnv {
    		if v := os.Getenv(e); v != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/processenvironment/ProcessEnvironmentTest.groovy

        @Rule final SetSystemProperties systemProperties = new SetSystemProperties()
        final ProcessEnvironment env = NativeServicesTestFixture.getInstance().get(ProcessEnvironment)
    
        def "can set and remove environment variable"() {
            when:
            env.setEnvironmentVariable("TEST_ENV_1", "value")
            env.maybeSetEnvironmentVariable("TEST_ENV_2", "value")
    
            then:
            System.getenv("TEST_ENV_1") == "value"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller_test.go

    	env, ctx := setup(t)
    	env.runFunc()
    	defer env.cleanFunc()
    
    	env.Interface.ApiextensionsV1().CustomResourceDefinitions().Create(ctx, coolMultiVersion, metav1.CreateOptions{})
    	env.pollForPathExists("/apis/stable.example.com/v1/coolbars")
    	env.pollForPathExists("/apis/stable.example.com/v1beta1/coolbars")
    	s := env.fetchOpenAPIOrDie()
    	env.expectPath(s, "/apis/stable.example.com/v1/coolbars")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 17:10:53 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. Makefile

    	@env bash $(PWD)/docs/distributed/decom-encrypted-sse-s3.sh
    	@env bash $(PWD)/docs/distributed/decom-compressed-sse-s3.sh
    	@env bash $(PWD)/docs/distributed/decom-encrypted-kes.sh
    
    test-versioning: install-race
    	@echo "Running minio versioning tests"
    	@env bash $(PWD)/docs/bucket/versioning/versioning-tests.sh
    
    test-configfile: install-race
    	@env bash $(PWD)/docs/distributed/distributed-from-config-file.sh
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/govcs.txt

    env GO111MODULE=on
    env proxy=$GOPROXY
    env GOPROXY=direct
    
    # GOVCS stops go get
    env GOVCS='*:none'
    ! go get github.com/google/go-cmp
    stderr '^go: GOVCS disallows using git for public github.com/google/go-cmp; see ''go help vcs''$'
    env GOPRIVATE='github.com/google'
    ! go get github.com/google/go-cmp
    stderr '^go: GOVCS disallows using git for private github.com/google/go-cmp; see ''go help vcs''$'
    
    # public pattern works
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/build_git_missing_tree.txt

    # Unnecessary git tree object required
    
    [short] skip 'constructs a local git repo'
    [!git] skip
    
    env GIT_AUTHOR_NAME='Go Gopher'
    env GIT_AUTHOR_EMAIL='******@****.***'
    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    # Create 2 commit
    env GIT_COMMITTER_DATE=2024-01-30T10:52:00+08:00
    env GIT_AUTHOR_DATE=2024-01-30T10:52:00+08:00
    
    cd $WORK/repo
    exec git init
    exec git add go.mod main.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/gotoolchain_net.txt

    [!GOARCH:amd64] [!GOARCH:arm64] skip
    
    env GOPROXY=
    [go-builder] env GOSUMDB=
    [!go-builder] env GOSUMDB=sum.golang.org  # Set explicitly in case GOROOT/go.env is modified.
    env GOTOOLCHAIN=go1.20.1
    
    	# Avoid resolving a "go1.20.1" from the user's real $PATH.
    	# That would not only cause the "downloading go1.20.1" message
    	# to be suppressed, but may spuriously fail:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 17:16:47 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. pilot/pkg/features/experimental.go

    	).Get()
    
    	MCSAPIGroup = env.Register("MCS_API_GROUP", "multicluster.x-k8s.io",
    		"The group to be used for the Kubernetes Multi-Cluster Services (MCS) API.").Get()
    
    	MCSAPIVersion = env.Register("MCS_API_VERSION", "v1alpha1",
    		"The version to be used for the Kubernetes Multi-Cluster Services (MCS) API.").Get()
    
    	EnableMCSAutoExport = env.Register(
    		"ENABLE_MCS_AUTO_EXPORT",
    		false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top