Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for svn (0.03 sec)

  1. src/cmd/go/alldocs.go

    // that repository. The supported version control systems are:
    //
    //	Bazaar      .bzr
    //	Fossil      .fossil
    //	Git         .git
    //	Mercurial   .hg
    //	Subversion  .svn
    //
    // For example,
    //
    //	import "example.org/user/foo.hg"
    //
    // denotes the root directory of the Mercurial repository at
    // example.org/user/foo or foo.hg, and
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    		return true
    	}
    	switch name {
    	// Empty string should be impossible but make it bad.
    	case "":
    		return true
    	// Version control directories won't be present in module.
    	case ".bzr", ".hg", ".git", ".svn":
    		return true
    	}
    	return false
    }
    
    // vcsStatusCache maps repository directories (string)
    // to their VCS information.
    var vcsStatusCache par.ErrCache[string, vcs.Status]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top