Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,551 for kenv (0.12 sec)

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

    env TESTGO_VERSION=go1.500
    env TESTGO_VERSION_SWITCH=switch
    
    # GOTOOLCHAIN=auto runs default toolchain without a go.mod or go.work
    env GOTOOLCHAIN=auto
    go version
    stdout go1.500
    
    # GOTOOLCHAIN=path runs default toolchain without a go.mod or go.work
    env GOTOOLCHAIN=path
    go version
    stdout go1.500
    
    # GOTOOLCHAIN=asdf is a syntax error
    env GOTOOLCHAIN=asdf
    ! go version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 21:19:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    ! stderr preferlinkext
    env CGO_CFLAGS=-flto
    go build -x -n -o dummy.exe ./usesInternalCgo
    stderr preferlinkext
    env CGO_CFLAGS=-fplugin
    go build -x -n -o dummy.exe ./usesInternalCgo
    stderr preferlinkext
    env CGO_CFLAGS=-fprofile-instr-generate
    go build -x -n -o dummy.exe ./usesInternalCgo
    stderr preferlinkext
    
    # The -fdebug-prefix-map=path is permitted for internal linking.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. pilot/pkg/features/telemetry.go

    // limitations under the License.
    
    package features
    
    import (
    	"time"
    
    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/log"
    )
    
    // Define telemetry related features here.
    var (
    	traceSamplingVar = env.Register(
    		"PILOT_TRACE_SAMPLING",
    		1.0,
    		"Sets the mesh-wide trace sampling percentage. Should be 0.0 - 100.0. Precision to 0.01. "+
    			"Default is 1.0.",
    	)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile.go

    			Type:   errType,
    			Detail: errorString,
    		}
    	}
    
    	env, err := c.varEnvs[envVarName].Env(environment.StoredExpressions)
    	if err != nil {
    		return resultError(fmt.Sprintf("unexpected error loading CEL environment: %v", err), apiservercel.ErrorTypeInternal)
    	}
    
    	ast, issues := env.Compile(expressionAccessor.GetExpression())
    	if issues != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/discovery.go

    	generators[v3.EndpointType] = edsGen
    	ecdsGen := &xds.EcdsGenerator{ConfigGenerator: cg}
    	if env.CredentialsController != nil {
    		generators[v3.SecretType] = xds.NewSecretGen(env.CredentialsController, s.Cache, clusterID, env.Mesh())
    		ecdsGen.SetCredController(env.CredentialsController)
    	}
    	generators[v3.ExtensionConfigurationType] = ecdsGen
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/get_insecure.txt

    [!net:insecure.go-get-issue-15410.appspot.com] skip
    [!git] skip
    
    env PATH=$WORK/tmp/bin${:}$PATH
    go build -o $WORK/tmp/bin/ssh ssh.go
    
    # Modules: Set up
    env GOPATH=$WORK/m/gp
    mkdir $WORK/m
    cp module_file $WORK/m/go.mod
    cd $WORK/m
    env GO111MODULE=on
    env GOPROXY=''
    
    # Modules: Try go get -d of HTTP-only repo (should fail).
    ! go get -d insecure.go-get-issue-15410.appspot.com/pkg/p
    
    # Modules: Try again with GOINSECURE (should succeed).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 937 bytes
    - Viewed (0)
  9. cluster/images/etcd/migrate/options.go

    			"If unset fallbacks to ETCD_CREDS env.")
    }
    
    func lookupEnv(env string) (string, error) {
    	result, ok := os.LookupEnv(env)
    	if !ok || len(result) == 0 {
    		return result, fmt.Errorf("%s variable unset - expected failure", env)
    	}
    	return result, nil
    }
    
    func fallbackToEnv(flag, env string) (string, error) {
    	klog.Infof("--%s unset - falling back to %s variable", flag, env)
    	return lookupEnv(env)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m8/JavaConfigurabilityCrossVersionSpec.groovy

            when:
            BuildEnvironment env = withConnection {
                def model = it.model(BuildEnvironment.class)
                model
                    .setJvmArguments("-Xmx333m", "-Xms13m")
                    .get()
            }
    
            then:
            env.java.javaHome
            env.java.jvmArguments.contains "-Xms13m"
            env.java.jvmArguments.contains "-Xmx333m"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top