Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for reached (0.74 sec)

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

    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb
    ! go get rsc.io/fortune
    stderr 'SECURITY ERROR\ngo.sum database server misbehavior detected!'
    stderr 'proof of misbehavior:'
    
    # removing the cached wrong tree head and cached tiles clears the bad data
    rm $GOPATH/pkg/sumdb/$dbname/latest
    go clean -modcache
    go get rsc.io/fortune
    
    -- go.mod.orig --
    module m
    
    go 1.16
    -- m.go --
    package m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_cache_trimpath.txt

    # Varying -trimpath should cause a rebuild.
    go build -x -o a.out -trimpath
    stderr '(compile|gccgo)( |\.exe)'
    stderr 'link( |\.exe)'
    
    # Two distinct versions of the same module with identical content should
    # still be cached separately.
    # Verifies golang.org/issue/35412.
    go get example.com/stack@v1.0.0
    go run -trimpath printstack.go
    stdout '^example.com/stack@v1.0.0/stack.go$'
    go get example.com/stack@v1.0.1
    go run -trimpath printstack.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 865 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_overlay.txt

    stderr '(compile|gccgo)( |\.exe).*test_cache.go'
    go build -x -overlay overlay.json ./test_cache
    ! stderr '(compile|gccgo)( |\.exe).*test_cache.go'  # cached
    cp overlay/test_cache_different.go overlay/test_cache.go
    go build -x -overlay overlay.json ./test_cache
    stderr '(compile|gccgo)( |\.exe).*test_cache.go'  # not cached
    env CACHE=$OLD_GOCACHE
    
    # Run same tests but with gccgo.
    env GO111MODULE=off
    [!exec:gccgo] stop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 29 00:40:18 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  4. src/cmd/internal/test2json/testdata/smiley.test

        --- PASS: Test☺☹Dirs/divergent (0.05s)
        --- PASS: Test☺☹Dirs/buildtag (0.06s)
        --- PASS: Test☺☹Dirs/incomplete (0.05s)
        --- PASS: Test☺☹Dirs/cgo (0.04s)
    --- PASS: Test☺☹Asm (0.75s)
    PASS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 01 16:13:47 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_patch.txt

    cmp go.mod go.mod.orig
    
    
    # On the other hand, "-u=patch ./..." should patch-upgrade dependencies until
    # they reach a fixed point, even if that results in higher-than-patch upgrades.
    
    go get -u=patch ./...
    go list -m all
    stdout '^example.net/a v0.1.1 '
    stdout '^example.net/b v0.2.1 '
    
    
    -- go.mod --
    module example
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_missing_repo.txt

    # Regression test for golang.org/issue/34094: modules hosted within gitlab.com
    # subgroups could not be fetched because the server returned bogus go-import
    # tags for prefixes of the module path.
    
    [short] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    ! go mod download vcs-test.golang.org/go/missingrepo/missingrepo-git@latest
    stderr 'vcs-test.golang.org/go/missingrepo/missingrepo-git: git ls-remote .*: exit status .*'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 534 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_cache_inputs.txt

    ! stdout '\(cached\)'
    go test testcache -run=TestLookupEnv
    stdout '\(cached\)'
    
    # Changes in arguments forwarded to the test should invalidate cached test
    # results.
    go test testcache -run=TestOSArgs -v hello
    ! stdout '\(cached\)'
    stdout 'hello'
    go test testcache -run=TestOSArgs -v goodbye
    ! stdout '\(cached\)'
    stdout 'goodbye'
    
    # golang.org/issue/36134: that includes the `-timeout` argument.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 22:23:53 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cgo_stale_precompiled.txt

    # package to appear stale, and it could not be rebuilt due to a missing $CC.
    
    [!cgo] skip
    
    # This test may start with the runtime/cgo package already stale.
    # Explicitly rebuild it to ensure that it is cached.
    # (See https://go.dev/issue/50892.)
    #
    # If running in non-short mode, explicitly vary CGO_CFLAGS
    # as a control case (to ensure that our regexps do catch rebuilds).
    
    [!short] env GOCACHE=$WORK/cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_pgo.txt

    # store the build ID
    go list -export -json=BuildID -pgo=prof triv.go
    stdout '"BuildID":' # check that output actually contains a build ID
    cp stdout list.out
    
    # build again with the same profile, should be cached
    go build -x -pgo=prof -o triv.exe triv.go
    ! stderr 'compile.*triv.go'
    
    # check that the build ID is the same
    go list -export -json=BuildID -pgo=prof triv.go
    cmp stdout list.out
    
    # overwrite the prof
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_fuzz_dup_cache.txt

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # This test checks that cached corpus loading properly handles duplicate entries (this can
    # happen when a f.Add value has a duplicate entry in the cached corpus.) Duplicate entries
    # should be discarded, and the rest of the cache should be loaded as normal.
    
    env GOCACHE=$WORK/cache
    env GODEBUG=fuzzdebug=1
    
    mkdir -p $GOCACHE/fuzz/fuzztest/FuzzTarget
    go run ./populate $GOCACHE/fuzz/fuzztest/FuzzTarget
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top