Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for GetEnv (0.17 sec)

  1. src/cmd/go/internal/work/exec.go

    		// for debugging the compiler, they are not settable using 'go env -w',
    		// and so here we use os.Getenv, not cfg.Getenv.
    		magic := []string{
    			"GOCLOBBERDEADHASH",
    			"GOSSAFUNC",
    			"GOSSADIR",
    			"GOCOMPILEDEBUG",
    		}
    		for _, env := range magic {
    			if x := os.Getenv(env); x != "" {
    				fmt.Fprintf(h, "magic %s=%s\n", env, x)
    			}
    		}
    
    	case "gccgo":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    //	$ go tool pprof http.test http.prof
    //	(pprof) web
    func BenchmarkServer(b *testing.B) {
    	b.ReportAllocs()
    	// Child process mode;
    	if url := os.Getenv("TEST_BENCH_SERVER_URL"); url != "" {
    		n, err := strconv.Atoi(os.Getenv("TEST_BENCH_CLIENT_N"))
    		if err != nil {
    			panic(err)
    		}
    		for i := 0; i < n; i++ {
    			res, err := Get(url)
    			if err != nil {
    				log.Panicf("Get: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	if cfg.BuildContext.CgoEnabled && !cfg.BuildTrimpath {
    		for _, name := range []string{"CGO_CFLAGS", "CGO_CPPFLAGS", "CGO_CXXFLAGS", "CGO_LDFLAGS"} {
    			appendSetting(name, cfg.Getenv(name))
    		}
    	}
    	appendSetting("GOARCH", cfg.BuildContext.GOARCH)
    	if cfg.RawGOEXPERIMENT != "" {
    		appendSetting("GOEXPERIMENT", cfg.RawGOEXPERIMENT)
    	}
    	appendSetting("GOOS", cfg.BuildContext.GOOS)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    	ResetProxyEnv()
    	defer ResetProxyEnv()
    	for _, tt := range proxyFromEnvTests {
    		testProxyForRequest(t, tt, func(req *Request) (*url.URL, error) {
    			os.Setenv("HTTP_PROXY", tt.env)
    			os.Setenv("HTTPS_PROXY", tt.httpsenv)
    			os.Setenv("NO_PROXY", tt.noenv)
    			os.Setenv("REQUEST_METHOD", tt.reqmeth)
    			ResetCachedEnvironment()
    			return ProxyFromEnvironment(req)
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. src/crypto/x509/x509_test.go

    	}
    	if _, ok := err.(InsecureAlgorithmError); !ok {
    		t.Fatalf("certificate verification returned %v (%T), wanted InsecureAlgorithmError", err, err)
    	}
    
    	t.Setenv("GODEBUG", "x509sha1=1")
    	if err = cert.CheckSignatureFrom(cert); err != nil {
    		t.Fatalf("SHA-1 certificate did not verify with GODEBUG=x509sha1=1: %v", err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  6. src/crypto/x509/verify_test.go

    				}
    			}
    		}
    	}
    }
    
    func TestGoVerify(t *testing.T) {
    	// Temporarily enable SHA-1 verification since a number of test chains
    	// require it. TODO(filippo): regenerate test chains.
    	t.Setenv("GODEBUG", "x509sha1=1")
    
    	for _, test := range verifyTests {
    		t.Run(test.name, func(t *testing.T) {
    			testVerify(t, test, false)
    		})
    	}
    }
    
    func TestSystemVerify(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
Back to top