Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GIT_REDACT_COOKIES (0.45 sec)

  1. src/cmd/go/internal/vcweb/script.go

    		// To help diagnose https://go.dev/issue/52545,
    		// enable tracing for Git HTTPS requests.
    		env = append(env,
    			"GIT_TRACE_CURL=1",
    			"GIT_TRACE_CURL_NO_DATA=1",
    			"GIT_REDACT_COOKIES=o,SSO,GSSO_Uberproxy")
    	}
    
    	return env
    }
    
    // homeEnvName returns the environment variable used by os.UserHomeDir
    // to locate the user's home directory.
    func homeEnvName() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 9K bytes
    - Viewed (0)
  2. src/cmd/go/script_test.go

    		// To help diagnose https://go.dev/issue/52545,
    		// enable tracing for Git HTTPS requests.
    		env = append(env,
    			"GIT_TRACE_CURL=1",
    			"GIT_TRACE_CURL_NO_DATA=1",
    			"GIT_REDACT_COOKIES=o,SSO,GSSO_Uberproxy")
    	}
    	if testing.Short() {
    		// VCS commands are always somewhat slow: they either require access to external hosts,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    		// To help diagnose https://go.dev/issue/52545,
    		// enable tracing for Git HTTPS requests.
    		os.Setenv("GIT_TRACE_CURL", "1")
    		os.Setenv("GIT_TRACE_CURL_NO_DATA", "1")
    		os.Setenv("GIT_REDACT_COOKIES", "o,SSO,GSSO_Uberproxy")
    	}
    
    	r := m.Run()
    	if !*testWork {
    		removeAll(testTmpDir) // os.Exit won't run defer
    	}
    
    	if !*testWork {
    		// There shouldn't be anything left in topTmpdir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top