Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for svnReadZip (0.13 sec)

  1. src/cmd/go/internal/modfetch/codehost/svn.go

    	}
    
    	info := &RevInfo{
    		Name:    strconv.FormatInt(log.Logentry.Revision, 10),
    		Short:   fmt.Sprintf("%012d", log.Logentry.Revision),
    		Time:    t.UTC(),
    		Version: rev,
    	}
    	return info, nil
    }
    
    func svnReadZip(ctx context.Context, dst io.Writer, workDir, rev, subdir, remote string) (err error) {
    	// The subversion CLI doesn't provide a command to write the repository
    	// directly to an archive, so we need to export it to the local filesystem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/codehost/vcs.go

    		},
    		parseStat: svnParseStat,
    		latest:    "latest",
    		readFile: func(rev, file, remote string) []string {
    			return []string{"svn", "cat", "--", remote + "/" + file + "@" + rev}
    		},
    		doReadZip: svnReadZip,
    	},
    
    	"bzr": {
    		vcs: "bzr",
    		init: func(remote string) []string {
    			return []string{"bzr", "branch", "--use-existing-dir", "--", remote, "."}
    		},
    		fetch: []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top