Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,430 for kenv (0.05 sec)

  1. pilot/cmd/pilot-agent/options/options.go

    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/jwt"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/wasm"
    )
    
    var (
    	InstanceIPVar        = env.Register("INSTANCE_IP", "", "")
    	PodNameVar           = env.Register("POD_NAME", "", "")
    	PodNamespaceVar      = env.Register("POD_NAMESPACE", "", "")
    	kubeAppProberNameVar = env.Register(status.KubeAppProberEnvName, "", "")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/generate_env.txt

    # Install an env command because Windows and plan9 don't have it.
    env GOBIN=$WORK/tmp/bin
    go install env.go
    [GOOS:plan9] env path=$GOBIN${:}$path
    [!GOOS:plan9] env PATH=$GOBIN${:}$PATH
    
    # Test generators have access to the environment
    go generate ./printenv.go
    stdout '^GOARCH='$GOARCH
    stdout '^GOOS='$GOOS
    stdout '^GOFILE='
    stdout '^GOLINE='
    stdout '^GOPACKAGE='
    stdout '^DOLLAR='
    
    -- env.go --
    package main
    
    import (
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 554 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/io.h

    // `tsl::Env::Default` is used to generate the name.
    absl::StatusOr<std::string> GetLocalTmpFileName();
    
    // Creates a temporary directory on an environment defined by the implementation
    // of `tsl::Env` and returns its path. Returns an InternalError status if
    // failed.
    absl::StatusOr<std::string> CreateTmpDir(tsl::Env* env);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_sumdb_proxy.txt

    env GO111MODULE=on
    env sumdb=$GOSUMDB
    env proxy=$GOPROXY
    env GOPROXY GONOPROXY GOSUMDB GONOSUMDB
    
    # basic fetch (through proxy) works
    cp go.mod.orig go.mod
    go get rsc.io/fortune@v1.0.0 # note: must use test proxy, does not exist in real world
    rm $GOPATH/pkg/mod/cache/download/sumdb # rm sumdb cache but NOT package download cache
    rm go.sum
    
    # can fetch by explicit URL
    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb' '$proxy/sumdb-direct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/goflags.txt

    env GO111MODULE=off
    
    # GOFLAGS sets flags for commands
    
    env GOFLAGS='-e -f={{.Dir}} --test.benchtime=1s -count=10'
    go list asdfasdfasdf  # succeeds because of -e
    go list runtime
    stdout '[\\/]runtime$'
    
    env GOFLAGS=-race OLDGOARCH=$GOARCH OLDGOOS=$GOOS GOARCH=386 GOOS=linux
    ! go list runtime
    stderr 'race is not supported on linux/386'
    
    env GOARCH=$OLDGOARCH GOOS=$OLDGOOS
    
    # go env succeeds even though -f={{.Dir}} is inappropriate
    go env
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:47:27 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/vcstest/git/v3pkg.txt

    handle git
    
    env GIT_AUTHOR_NAME='Bryan C. Mills'
    env GIT_AUTHOR_EMAIL='******@****.***'
    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    git init
    
    at 2019-07-15T14:01:24-04:00
    env GIT_AUTHOR_DATE=2019-07-15T13:59:34-04:00
    git add go.mod v3pkg.go
    git commit -a -m 'all: add go.mod with v3 path'
    git branch -m master
    git tag 'v3.0.0'
    
    git show-ref --tags --heads
    cmp stdout .git-refs
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 648 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_proxy_list.txt

    env GO111MODULE=on
    env proxy=$GOPROXY
    
    # Proxy that can't serve should fail.
    env GOPROXY=$proxy/404
    ! go get rsc.io/quote@v1.0.0
    stderr '404 Not Found'
    
    # get should walk down the proxy list past 404 and 410 responses.
    env GOPROXY=$proxy/404,$proxy/410,$proxy
    go get rsc.io/quote@v1.1.0
    
    # get should not walk past other 4xx errors if proxies are separated with ','.
    env GOPROXY=$proxy/403,$proxy
    ! go get rsc.io/quote@v1.2.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/get_issue53955.txt

    cd $WORK/repo
    
    env GIT_AUTHOR_NAME='Go Gopher'
    env GIT_AUTHOR_EMAIL='******@****.***'
    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    exec git init
    
    env GIT_COMMITTER_DATE=2022-07-19T11:07:00-04:00
    env GIT_AUTHOR_DATE=2022-07-19T11:07:00-04:00
    exec git add go.mod issue53955.go
    exec git commit -m 'initial commit'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/cc_op_gen_test.cc

      TF_ASSERT_OK(ReadFileToString(env, h_file_path, h_file_text));
      TF_ASSERT_OK(
          ReadFileToString(env, internal_h_file_path, internal_h_file_text));
    }
    
    TEST(CcOpGenTest, TestVisibilityChangedToHidden) {
      const string api_def = R"(
    op {
      graph_op_name: "Foo"
      visibility: HIDDEN
    }
    )";
      Env* env = Env::Default();
      OpList op_defs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 29 20:04:30 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  10. misc/wasm/go_wasip1_wasm_exec

    #!/usr/bin/env bash
    # Copyright 2023 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    case "$GOWASIRUNTIME" in
    	"wasmedge")
    		exec wasmedge --dir=/ --env PWD="$PWD" --env PATH="$PATH" ${GOWASIRUNTIMEARGS:-} "$1" "${@:2}"
    		;;
    	"wasmer")
    		exec wasmer run --dir=/ --env PWD="$PWD" --env PATH="$PATH" ${GOWASIRUNTIMEARGS:-} "$1" -- "${@:2}"
    		;;
    	"wazero")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 17:09:10 UTC 2024
    - 797 bytes
    - Viewed (0)
Back to top