Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for doCache (0.12 sec)

  1. src/cmd/go/testdata/script/test_fuzz_cgo.txt

    [!fuzz] skip
    [!cgo] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Test that fuzzing works with cgo (issue 65169)
    
    go test -fuzz=. -fuzztime=1x
    stdout ok
    ! stdout FAIL
    
    -- go.mod --
    module example.com/p
    
    go 1.20
    -- c.go --
    package p
    
    import "C"
    -- c_test.go --
    package p
    
    import "testing"
    
    func Fuzz(f *testing.F) {
    	f.Add(0)
    	f.Fuzz(func(t *testing.T, x int) {})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 364 bytes
    - Viewed (0)
  2. src/cmd/go/internal/help/helpdoc.go

    The default location for cache data is a subdirectory named go-build
    in the standard user cache directory for the current operating system.
    Setting the GOCACHE environment variable overrides this default,
    and running 'go env GOCACHE' prints the current cache directory.
    
    The go command periodically deletes cached data that has not been
    used recently. Running 'go clean -cache' deletes all cached data.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // The default location for cache data is a subdirectory named go-build
    // in the standard user cache directory for the current operating system.
    // Setting the GOCACHE environment variable overrides this default,
    // and running 'go env GOCACHE' prints the current cache directory.
    //
    // The go command periodically deletes cached data that has not been
    // used recently. Running 'go clean -cache' deletes all cached data.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top