Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,561 for kenv (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/go/testdata/script/mod_sumdb.txt

    env GO111MODULE=on
    env sumdb=$GOSUMDB
    env proxy=$GOPROXY
    env GOPROXY GONOPROXY GOSUMDB GONOSUMDB
    env dbname=localhost.localdev/sumdb
    
    # disagreeing with the sumdb produces security errors
    # (this also populates tiles on the sumdb server).
    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb' '$proxy/sumdb-wrong
    ! go get rsc.io/quote
    stderr 'go: rsc.io/quote@v1.5.2: verifying module: checksum mismatch'
    stderr 'downloaded: h1:3fEy'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/io_test.cc

      const absl::Status write_status =
          WriteStringToFile(dst_file_path, "test_string");
      ASSERT_THAT(write_status, IsOk());
    
      auto* const env = tsl::Env::Default();
      ASSERT_THAT(env->FileExists(dst_file_path), IsOk());
    
      std::string data{};
      ASSERT_THAT(tsl::ReadFileToString(env, dst_file_path, &data), IsOk());
    
      EXPECT_THAT(data, Eq("test_string"));
    }
    
    TEST(IoTest, ReadFileToString) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. pilot/pkg/features/tuning.go

    import (
    	"runtime"
    	"time"
    
    	"istio.io/istio/pkg/env"
    )
    
    // Define performance tuning related features here.
    var (
    	MaxConcurrentStreams = env.Register(
    		"ISTIO_GPRC_MAXSTREAMS",
    		100000,
    		"Sets the maximum number of concurrent grpc streams.",
    	).Get()
    
    	// MaxRecvMsgSize The max receive buffer size of gRPC received channel of Pilot in bytes.
    	MaxRecvMsgSize = env.Register(
    		"ISTIO_GPRC_MAXRECVMSGSIZE",
    		4*1024*1024,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (1)
  8. src/cmd/go/testdata/script/mod_get_fossil.txt

    # and parsed correctly.
    # Verifies golang.org/issue/42323.
    
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # 'go get' for the fossil repo will fail if fossil
    # is unable to determine your fossil user. Easiest
    # way to set it for use by 'go get' is specifying
    # a any non-empty $USER; the value doesn't otherwise matter.
    env USER=fossiluser
    env FOSSIL_HOME=$WORK/home
    
    # Attempt to get the latest version of a fossil repo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 773 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/repro_build.txt

    [short] skip
    [GOOS:aix] env CGO_ENABLED=0  # go.dev/issue/56896
    env GOMAXPROCS=16
    go build -a -o http16.o net/http
    env GOMAXPROCS=17
    go build -a -o http17.o net/http
    cmp -q http16.o http17.o
    env GOMAXPROCS=18
    go build -a -o http18.o net/http
    cmp -q http16.o http18.o
    
    # Check that goroutine scheduling does not affect linker output.
    env GOMAXPROCS=16
    go build -a -o gofmt16.exe cmd/gofmt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 18:59:19 UTC 2023
    - 686 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/vcstest/git/emptytest.txt

    handle git
    
    env GIT_AUTHOR_NAME='Russ Cox'
    env GIT_AUTHOR_EMAIL='******@****.***'
    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    git init
    
    at 2018-07-03T22:35:49-04:00
    git add go.mod
    git commit -m 'initial'
    git branch -m master
    
    git log --oneline
    cmp stdout .git-log
    
    -- .git-log --
    7bb9146 initial
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 392 bytes
    - Viewed (0)
Back to top