Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,209 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. 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)
  3. src/crypto/internal/boring/Dockerfile

    # Run this using build.sh.
    
    ARG ubuntu=ubuntu
    FROM $ubuntu:focal
    
    RUN mkdir /boring
    WORKDIR /boring
    
    ENV LANG=C
    ENV LANGUAGE=
    
    # Following NIST submission draft dated July 3, 2021.
    # This corresponds to boringssl.googlesource.com/boringssl tag fips-20210429.
    ENV ClangV=12
    RUN apt-get update && \
            apt-get install --no-install-recommends -y cmake xz-utils wget unzip ca-certificates clang-$ClangV python
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. pilot/pkg/features/pilot.go

    	ClusterName = env.Register("CLUSTER_ID", constants.DefaultClusterName,
    		"Defines the cluster and service registry that this Istiod instance belongs to").Get()
    
    	ExternalIstiod = env.Register("EXTERNAL_ISTIOD", false,
    		"If this is set to true, one Istiod will control remote clusters including CA.").Get()
    
    	EnableCAServer = env.Register("ENABLE_CA_SERVER", true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/gotoolchain_path.txt

    # The full test of toolchain version selection is in gotoolchain.txt.
    
    [short] skip
    
    env TESTGO_VERSION=go1.21pre3
    
    # Compile a fake toolchain to put in the path under various names.
    env GOTOOLCHAIN=
    mkdir $WORK/bin
    go build -o $WORK/bin/go1.50.0$GOEXE ./fakego.go  # adds .exe extension implicitly on Windows
    
    [!GOOS:plan9] env PATH=$WORK/bin
    [GOOS:plan9] env path=$WORK/bin
    
    go version
    stdout go1.21pre3
    
    # GOTOOLCHAIN=go1.50.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 06 22:21:42 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. .github/workflows/iam-integrations.yaml

          openldap:
            image: quay.io/minio/openldap
            ports:
              - "389:389"
              - "636:636"
            env:
              LDAP_ORGANIZATION: "MinIO Inc"
              LDAP_DOMAIN: "min.io"
              LDAP_ADMIN_PASSWORD: "admin"
          etcd:
            image: "quay.io/coreos/etcd:v3.5.1"
            env:
              ETCD_LISTEN_CLIENT_URLS: "http://0.0.0.0:2379"
              ETCD_ADVERTISE_CLIENT_URLS: "http://0.0.0.0:2379"
            ports:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. internal/config/api/api.go

    		apiReplicationFailedWorkers,
    		"expiry_workers",
    	}
    
    	disableODirect := env.Get(EnvAPIDisableODirect, kvs.Get(apiDisableODirect)) == config.EnableOn
    	enableODirect := env.Get(EnvAPIODirect, kvs.Get(apiODirect)) == config.EnableOn
    	gzipObjects := env.Get(EnvAPIGzipObjects, kvs.Get(apiGzipObjects)) == config.EnableOn
    	rootAccess := env.Get(EnvAPIRootAccess, kvs.Get(apiRootAccess)) == config.EnableOn
    
    	cfg = Config{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. internal/kms/config_test.go

    		}
    	}
    }
    
    var isPresentTests = []struct {
    	Env        map[string]string
    	IsPresent  bool
    	ShouldFail bool
    }{
    	{Env: map[string]string{}}, // 0
    	{ // 1
    		Env: map[string]string{
    			EnvKMSSecretKey: "minioy-default-key:6jEQjjMh8iPq8/gqgb4eMDIZFOtPACIsr9kO+vx8JFs=",
    		},
    		IsPresent: true,
    	},
    	{ // 2
    		Env: map[string]string{
    			EnvKMSEndpoint:   "https://127.0.0.1:7373",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/internal/cpu/cpu.go

    func processOptions(env string) {
    field:
    	for env != "" {
    		field := ""
    		i := indexByte(env, ',')
    		if i < 0 {
    			field, env = env, ""
    		} else {
    			field, env = env[:i], env[i+1:]
    		}
    		if len(field) < 4 || field[:4] != "cpu." {
    			continue
    		}
    		i = indexByte(field, '=')
    		if i < 0 {
    			print("GODEBUG: no value specified for \"", field, "\"\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/goroot_executable_trimpath.txt

    go build -trimpath -o $WORK/new/bin/go$GOEXE cmd/go &
    go build -trimpath -o $WORK/bin/check$GOEXE check.go &
    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top