Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 2,561 for kenv (0.09 sec)

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

    # Instead, we build a fresh copy of the binary with known settings.
    go build -o $WORK/new/bin/go$GOEXE cmd/go &
    go build -trimpath -o $WORK/bin/check$GOEXE check.go &
    wait
    
    env TESTGOROOT=$GOROOT
    env GOROOT=
    
    # Relocated Executable
    exec $WORK/bin/check$GOEXE $WORK/new/bin/go$GOEXE $TESTGOROOT
    
    # Relocated Tree:
    # If the binary is sitting in a bin dir next to ../pkg/tool, that counts as a GOROOT,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pilot/pkg/features/security.go

    	"strings"
    
    	"k8s.io/apimachinery/pkg/types"
    
    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // Define security related features here.
    var (
    	// SkipValidateTrustDomain tells the server proxy to not to check the peer's trust domain when
    	// mTLS is enabled in authentication policy.
    	SkipValidateTrustDomain = env.Register(
    		"PILOT_SKIP_VALIDATE_TRUST_DOMAIN",
    		false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 13 03:50:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/get_404_meta.txt

    # golang.org/issue/13037: 'go get' was not parsing <meta> tags in 404 served over HTTPS.
    
    [!net:bazil.org] skip
    [!git] skip
    
    env GONOSUMDB=bazil.org,github.com,golang.org
    env GO111MODULE=on
    env GOPROXY=direct
    go get bazil.org/fuse/fs/fstestutil
    
    
    -- go.mod --
    module m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 278 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_darwin_cc_arch.txt

    # Test that we pass -arch flag to C compiler on Darwin (issue 43692).
    
    [!GOOS:darwin] skip
    [!cgo] skip
    
    # clear CC, in case user sets it
    env CC=
    
    env CGO_ENABLED=1
    
    env GOARCH=amd64
    go build -n -x c.go
    stderr 'clang.*-arch x86_64'
    
    env GOARCH=arm64
    go build -n -x c.go
    stderr 'clang.*-arch arm64'
    
    -- c.go --
    package main
    
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 350 bytes
    - Viewed (0)
  5. pilot/pkg/model/network_test.go

    		// the original
    		assert.EventuallyEqual(t, env.NetworkManager.AllGateways, gateways)
    		xdsUpdater.WaitOrFail(t, "xds full")
    	})
    
    	workingDNSServer.setFailure(true)
    	gateways = env.NetworkManager.AllGateways()
    	t.Run("resolution failed", func(t *testing.T) {
    		xdsUpdater.AssertEmpty(t, 10*model.MinGatewayTTL)
    		// the gateways should remain
    		currentGateways := env.NetworkManager.AllGateways()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cgo_path_space.txt

    # that becomes the default.
    [exec:clang] env CC=clang
    [exec:gcc] env CC=gcc
    [!exec:clang] [!exec:gcc] skip 'Unknown C compiler'
    
    [!GOOS:windows] chmod 0755 $WORK/'program files'/clang
    [!GOOS:windows] chmod 0755 $WORK/'program files'/gcc
    [!GOOS:windows] exists -exec $WORK/'program files'/clang
    [!GOOS:windows] exists -exec $WORK/'program files'/gcc
    [!GOOS:windows] env PATH=$WORK/'program files':$PATH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/vet_flags.txt

    # the defaults.
    go vet .
    env GOFLAGS='-tags=buggy'
    ! go vet .
    stderr 'possible Printf formatting directive'
    
    # Enabling one analyzer in GOFLAGS should disable the rest implicitly...
    env GOFLAGS='-tags=buggy -unsafeptr'
    go vet .
    
    # ...but enabling one on the command line should not disable the analyzers
    # enabled via GOFLAGS.
    env GOFLAGS='-tags=buggy -printf'
    ! go vet -unsafeptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_proxy_https.txt

    env GO111MODULE=on
    
    # GOPROXY file paths must provide the "file://" prefix explicitly.
    env GOPROXY=$WORK/proxydir
    ! go list -versions -m golang.org/x/text
    stderr 'invalid proxy URL.*proxydir'
    
    [!net:proxy.golang.org] stop
    
    # GOPROXY HTTPS paths may elide the "https://" prefix.
    # (See golang.org/issue/32191.)
    env GOPROXY=proxy.golang.org
    env GOSUMDB=
    go list -versions -m golang.org/x/text
    
    -- go.mod --
    module example.com
    go 1.13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 492 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/version_buildvcs_fossil.txt

    # The Git test covers common functionality.
    
    # "fossil" is the Fossil file server on Plan 9.
    [GOOS:plan9] skip
    [!exec:fossil] skip
    [short] skip
    env GOBIN=$WORK/gopath/bin
    env oldpath=$PATH
    env HOME=$WORK
    env USER=gopher
    [!GOOS:windows] env fslckout=.fslckout
    [GOOS:windows] env fslckout=_FOSSIL_
    exec pwd
    exec fossil init repo.fossil
    cd repo/a
    
    # If there's no local repository, there's no VCS info.
    go install
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. pilot/pkg/features/xds.go

    // limitations under the License.
    
    package features
    
    import (
    	"istio.io/istio/pkg/env"
    )
    
    // Define flags that affect XDS config generation here.
    var (
    	// EnableMysqlFilter enables injection of `envoy.filters.network.mysql_proxy` in the filter chain.
    	// Pilot injects this outbound filter if the service port name is `mysql`.
    	EnableMysqlFilter = env.Register(
    		"PILOT_ENABLE_MYSQL_FILTER",
    		false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 06:18:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top