Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for gocacheverify (0.14 sec)

  1. src/cmd/go/internal/cache/cache.go

    //
    // verify is enabled by setting the environment variable
    // GODEBUG=gocacheverify=1.
    var verify = false
    
    var errVerifyMode = errors.New("gocacheverify=1")
    
    // DebugTest is set when GODEBUG=gocachetest=1 is in the environment.
    var DebugTest = false
    
    func init() { initEnv() }
    
    var (
    	gocacheverify = godebug.New("gocacheverify")
    	gocachehash   = godebug.New("gocachehash")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. doc/godebug.md

    This setting will be removed in a future release, Go 1.22 at the earliest.
    
    ### Go 1.10
    
    Go 1.10 changed how build caching worked and added test caching, along
    with the [`gocacheverify`, `gocachehash`, and `gocachetest` settings](/cmd/go/#hdr-Build_and_test_caching).
    There is no plan to remove these settings.
    
    ### Go 1.6
    
    Go 1.6 introduced transparent support for HTTP/2,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. src/runtime/metrics/doc.go

    		package due to a non-default GODEBUG=gocachetest=... setting.
    
    	/godebug/non-default-behavior/gocacheverify:events
    		The number of non-default behaviors executed by the cmd/go
    		package due to a non-default GODEBUG=gocacheverify=... setting.
    
    	/godebug/non-default-behavior/gotypesalias:events
    		The number of non-default behaviors executed by the go/types
    		package due to a non-default GODEBUG=gotypesalias=... setting.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    This may make fuzzing less effective, temporarily.
    
    The GODEBUG environment variable can enable printing of debugging
    information about the state of the cache:
    
    GODEBUG=gocacheverify=1 causes the go command to bypass the
    use of any cache entries and instead rebuild everything and check
    that the results match existing cache entries.
    
    GODEBUG=gocachehash=1 causes the go command to print the inputs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top