Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 189 for svn (0.19 sec)

  1. src/cmd/go/internal/vcweb/svn.go

    // that serves the (non-HTTP) 'svn' protocol. The test binary can retrieve the
    // URL for that port by sending an HTTP request with the query parameter
    // "vcwebsvn=1".
    //
    // We take this approach because the 'svn' protocol is implemented by a
    // lightweight 'svnserve' binary that is usually packaged along with the 'svn'
    // client binary, whereas only known implementation of the Subversion HTTP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/codehost/svn.go

    				return vcsErrorf("file reported by 'svn list', but not written by 'svn export': %s", e.Name)
    			}
    			return fmt.Errorf("error opening file created by 'svn export': %v", err)
    		}
    
    		n, err := io.Copy(zf, f)
    		f.Close()
    		if err != nil {
    			return err
    		}
    		if n != e.Size {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/vcstest/svn/test1-svn-git.txt

    cmp stdout ../.git-log
    
    cd ..
    svn add git-README-only
    svn commit -m 'add modified git-README-only'
    svn propset svn:author rsc --revprop -r1
    svn propset svn:date 2017-09-22T15:41:54.145716Z --revprop -r1
    
    svn add pkg.go
    svn commit -m 'use git-README-only/pkg'
    svn propset svn:author rsc --revprop -r2
    svn propset svn:date 2017-09-22T15:49:11.130406Z --revprop -r2
    
    svn add other
    svn commit -m 'add other'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/vcstest/svn/test2-svn-git.txt

    cmp stdout .git-log
    
    rm README
    
    svn add .git pkg
    svn commit -m 'git'
    svn propset svn:author rsc --revprop -r1
    svn propset svn:date 2017-09-27T18:00:52.201719Z --revprop -r1
    
    svn add p1
    svn commit -m 'add p1'
    svn propset svn:author rsc --revprop -r2
    svn propset svn:date 2017-09-27T18:16:14.650893Z --revprop -r2
    
    git remote set-url origin https://vcs-test.golang.org/git/README-only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/vcstest/go/test1-svn-git.txt

    <!DOCTYPE html>
    <html>
    <meta name="go-import" content="vcs-test.golang.org/go/test1-svn-git svn https://vcs-test.golang.org/svn/test1-svn-git">
    -- tiny/index.html --
    <!DOCTYPE html>
    <html>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/vcstest/go/test2-svn-git.txt

    -- test2PKG/p1/index.html --
    <!DOCTYPE html>
    <html>
    <meta name="go-import" content="vcs-test.golang.org/go/test2-svn-git/test2PKG svn https://vcs-test.golang.org/svn/test2-svn-git">
    -- test2PKG/pkg/index.html --
    <!DOCTYPE html>
    <html>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_download_svn.txt

    # Attempting to get a nonexistent module using svn should fail with a
    # reasonable message instead of a panic.
    ! go mod download vcs-test.golang.org/svn/nonexistent.svn@latest
    ! stderr panic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/svn/hello.txt

    handle svn
    
    mkdir db/transactions
    mkdir db/txn-protorevs
    chmod 0755 hooks/pre-revprop-change
    
    env ROOT=$PWD
    cd .checkout
    [GOOS:windows] svn checkout file:///$ROOT .
    [!GOOS:windows] svn checkout file://$ROOT .
    
    svn add hello.go
    svn commit --file MSG
    svn propset svn:author 'rsc' --revprop -r1
    svn propset svn:date '2017-09-22T01:12:45.861368Z' --revprop -r1
    
    svn update
    svn log --xml
    
    [GOOS:windows] replace '\n' '\r\n' .svn-log
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/vcstest/svn/nonexistent.txt

    handle svn
    
    # For this path, we turn on the svn handler but don't actually create the repo.
    # svnserve should use the svn protocol to tell the client that the repo doesn't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 190 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/govcs.txt

    go list
    env GOPROXY=$proxy
    go get rsc.io/quote # ok because used proxy
    env GOPROXY=direct
    
    # svn is disallowed by default
    env GOPRIVATE=
    env GOVCS=
    ! go get rsc.io/nonexist.svn/hello
    stderr '^go: rsc.io/nonexist.svn/hello: GOVCS disallows using svn for public rsc.io/nonexist.svn; see ''go help vcs''$'
    
    # fossil is disallowed by default
    env GOPRIVATE=
    env GOVCS=
    ! go get rsc.io/nonexist.fossil/hello
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top