Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 266 for tid1 (0.17 sec)

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

    # With bad go.sum, sync (which must download) fails.
    rm go.sum
    cp go.sum.bad go.sum
    ! go mod tidy
    stderr 'checksum mismatch'
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.1.0.zip
    
    # With good go.sum, sync works.
    rm go.sum
    cp go.sum.good go.sum
    go mod tidy
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.1.0.zip
    exists $GOPATH/pkg/mod/rsc.io/quote@v1.1.0/quote.go
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_fileproxy_vcs_missing_issue51589.txt

    # This test checks that "go mod tidy -e" do not panic when
    # using a file goproxy that is missing some modules.
    # Verifies golang.org/issue/51589
    
    # download the modules first
    env GO111MODULE=on
    env GOPATH=$WORK/gopath
    cd $WORK/x
    go mod tidy
    
    # Use download cache as file:/// proxy.
    [GOOS:windows] env GOPROXY=file:///$WORK/gopath/pkg/mod/cache/download
    [!GOOS:windows] env GOPROXY=file://$WORK/gopath/pkg/mod/cache/download
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 990 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_lazy_self.txt

    # 'go mod tidy' should not panic if the main module initially
    # requires an older version of itself.
    
    # A module may require an older version of itself without error. This is
    # inconsistent (the required version is never selected), but we still get
    # a reproducible build list.
    go list -m all
    stdout '^golang.org/issue/46078$'
    
    # 'go mod tidy' should fix this (and not crash).
    go mod tidy
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 09 20:06:35 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_cycle.txt

    # Regression test for https://golang.org/issue/34086:
    # 'go mod tidy' produced different go.mod file from other
    # subcommands when certain kinds of cycles were present
    # in the build graph.
    
    env GO111MODULE=on
    
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod go.mod.orig
    
    # If the go.mod file is already tidy, 'go mod graph' should not modify it.
    go mod graph
    cmp go.mod go.mod.orig
    
    -- go.mod --
    module root
    
    go 1.13
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 19 15:51:38 UTC 2019
    - 949 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_in_testdata_dir.txt

    go mod tidy
    grep 'rsc.io/quote' go.mod
    
    [short] stop
    
    # Vendoring the module's dependencies should work too.
    go mod vendor
    exists vendor/rsc.io/quote
    
    # The same should work in directories with names starting with underscores.
    cd $WORK/_ignored
    go mod init testdata.tld/foo
    
    go get
    grep 'rsc.io/quote' go.mod
    
    go mod tidy
    grep 'rsc.io/quote' go.mod
    
    go mod vendor
    exists vendor/rsc.io/quote
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 969 bytes
    - Viewed (0)
  6. common/Makefile.common.mk

    tidy-go:
    	@find -name go.mod -execdir go mod tidy \;
    
    mod-download-go:
    	@-GOFLAGS="-mod=readonly" find -name go.mod -execdir go mod download \;
    # go mod tidy is needed with Golang 1.16+ as go mod download affects go.sum
    # https://github.com/golang/go/issues/43994
    	@find -name go.mod -execdir go mod tidy \;
    
    format-go: tidy-go
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_readonly.txt

    cmp go.mod go.mod.empty
    
    env GOFLAGS=-mod=readonly
    
    # update go.mod - go get allowed
    go get rsc.io/quote
    grep rsc.io/quote go.mod
    
    # update go.mod - go mod tidy allowed
    cp go.mod.empty go.mod
    go mod tidy
    cp go.mod go.mod.tidy
    
    # -mod=readonly must succeed once go.mod is up-to-date...
    go list all
    
    # ... even if it needs downloads
    go clean -modcache
    go list all
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/goline_order.txt

    env TESTGO_VERSION=go1.21.2
    cp go.mod.orig go.mod
    ! go list -deps -tags usem1
    stderr 'updates to go.mod needed'
    stderr 'go mod tidy'
    go mod tidy
    go list -deps -tags usem1
    
    # go get also works
    cp go.mod.orig go.mod
    ! go list -deps -tags usem1
    stderr 'updates to go.mod needed'
    stderr 'go mod tidy'
    go get go@1.21.2
    go list -deps -tags usem1
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_goproxy_off.txt

    go work init
    go work use . ./sub
    
    # Verify that the go.mod files for both modules in the workspace are tidy,
    # and add missing go.sum entries as needed.
    
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod go.mod.orig
    
    cd sub
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod go.mod.orig
    cd ..
    
    go list -m all
    stdout '^rsc\.io/quote v1\.5\.1$'
    stdout '^rsc\.io/sampler v1\.3\.1$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 14 19:05:09 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/binder_test.go

    			expectedVolumes: newVolumeArray("volume1-7", "10Gi", "uid1-777", "claim1-7", v1.VolumeAvailable, v1.PersistentVolumeReclaimRetain, classEmpty),
    			initialClaims:   newClaimArray("claim1-7", "uid1-7", "1Gi", "", v1.ClaimPending, nil),
    			expectedClaims:  newClaimArray("claim1-7", "uid1-7", "1Gi", "", v1.ClaimPending, nil),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
Back to top