Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for GOSUMDB (0.19 sec)

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

    # When converting a commit to a pseudo-version, don't use a retracted version
    # as the base.
    # Verifies golang.org/issue/41700.
    
    [short] skip
    [!git] skip
    env GOPROXY=direct
    env GOSUMDB=off
    go mod init m
    
    # Control: check that v1.0.0 is the only version and is retracted.
    go list -m -versions vcs-test.golang.org/git/retract-pseudo.git
    stdout '^vcs-test.golang.org/git/retract-pseudo.git$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_replace_gopkgin.txt

    	# TODO(#54043): Make this test hermetic and re-enable it.
    
    [!net:gopkg.in] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    env GOFLAGS=-mod=mod
    
    # Replacing gopkg.in/[…].vN with a repository with a root go.mod file
    # specifying […].vN and a compatible version should succeed, even if
    # the replacement path is not a gopkg.in path.
    cd 4-to-4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/zip_sum_test/zip_sum_test.go

    		}
    		if *debugZipSum {
    			fmt.Fprintf(os.Stderr, "TestZipSums: modCacheDir: %s\n", tmpDir)
    		} else {
    			defer os.RemoveAll(tmpDir)
    		}
    		cfg.BuildContext.GOPATH = tmpDir
    	}
    
    	cfg.GOPROXY = "direct"
    	cfg.GOSUMDB = "off"
    	modload.Init()
    
    	// Shard tests by downloading only every nth module when shard flags are set.
    	// This makes it easier to test small groups of modules quickly. We avoid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 19:33:59 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top