Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,561 for kenv (0.09 sec)

  1. 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 (1)
  2. src/cmd/go/testdata/vcstest/git/v2repo.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-04-03T11:52:15-04:00
    env GIT_AUTHOR_DATE=2019-04-03T11:44:11-04:00
    git add go.mod
    git commit -m 'all: add go.mod'
    git branch -m master
    git tag 'v2.0.0'
    
    git show-ref --tags --heads
    cmp stdout .git-refs
    
    -- .git-refs --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 592 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/go/testdata/script/chdir.txt

    env OLD=$PWD
    
    # basic -C functionality
    cd $GOROOT/src/math
    go list -C ../strings
    stdout strings
    ! go list -C ../nonexist
    stderr 'chdir.*nonexist'
    
    # check for -C in subcommands with custom flag parsing
    # cmd/go/chdir_test.go handles the normal ones more directly.
    
    # go doc
    go doc -C ../strings HasPrefix
    
    # go env
    go env -C $OLD/custom GOMOD
    stdout 'custom[\\/]go.mod'
    ! go env -C ../nonexist
    stderr '^go: chdir ../nonexist: '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:23:42 UTC 2023
    - 744 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cover_build_simple.txt

    [short] skip
    
    # Hard-wire new coverage for this test.
    env GOEXPERIMENT=coverageredesign
    
    # Build for coverage.
    go build -gcflags=-m -o example.exe -cover example/main &
    [race] go build -o examplewithrace.exe -race -cover example/main &
    wait
    
    # First execute without GOCOVERDIR set...
    env GOCOVERDIR=
    exec ./example.exe normal
    stderr '^warning: GOCOVERDIR not set, no coverage data emitted'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/labels/labels_test.go

    		},
    		{
    			labels1:  map[string]string{"env": "test"},
    			labels2:  map[string]string{"infra": "true"},
    			conflict: false,
    		},
    		{
    			labels1:  map[string]string{"env": "test"},
    			labels2:  map[string]string{"infra": "true", "env": "test"},
    			conflict: false,
    		},
    		{
    			labels1:  map[string]string{"env": "test"},
    			labels2:  map[string]string{"env": "dev"},
    			conflict: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 5.4K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/go/testdata/script/build_cache_arch_mode.txt

    # Issue 9737: verify that GOARM affects the computed build ID
    
    [short] skip
    
    # arm
    env GOOS=linux
    env GOARCH=arm
    env GOARM=5
    go install mycmd
    env GOARM=7
    stale mycmd
    
    
    -- go.mod --
    module mycmd
    
    go 1.16
    -- x.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 02 08:52:16 UTC 2020
    - 243 bytes
    - Viewed (0)
Back to top