Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 398 for Director (1.52 sec)

  1. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    // Heading with no content are removed.
    // The link keys must be unique, and are combined into a single map.
    //
    // Files in the "minor changes" directory (the unique directory matching the glob
    // "*stdlib/*minor") are named after the package to which they refer, and will have
    // the package heading inserted automatically and links to other standard library
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. src/README.vendor

    The module requirements of std and cmd do not influence version
    selection in other modules. They are only considered when running
    module commands like 'go get' and 'go mod vendor' from a directory
    in GOROOT/src.
    
    Maintaining vendor directories
    ==============================
    
    Before updating vendor directories, ensure that module mode is enabled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_edit_no_modcache.txt

    # 'go mod edit' opportunistically locks the side-lock file in the module cache,
    # for compatibility with older versions of the 'go' command.
    # It does not otherwise depend on the module cache, so it should not
    # fail if the module cache directory cannot be created.
    
    [root] skip
    
    mkdir $WORK/readonly
    chmod 0555 $WORK/readonly
    env GOPATH=$WORK/readonly/nonexist
    
    go mod edit -go=1.17
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 21 14:10:22 UTC 2021
    - 419 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/work_use_deleted.txt

    cmp go.work go.work.want
    
    -- go.work --
    go 1.18
    
    use (
    	.
    	./sub
    	./sub/dir/deleted
    )
    -- go.work.want --
    go 1.18
    
    use ./sub/dir
    -- sub/README.txt --
    A go.mod file has been deleted from this directory.
    In addition, the entire subdirectory sub/dir/deleted
    has been deleted, along with sub/dir/deleted/go.mod.
    -- sub/dir/go.mod --
    module example/sub/dir
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 03 21:19:37 UTC 2022
    - 376 bytes
    - Viewed (0)
  5. src/cmd/go/internal/vcweb/dir.go

    // license that can be found in the LICENSE file.
    
    package vcweb
    
    import (
    	"log"
    	"net/http"
    )
    
    // dirHandler is a vcsHandler that serves the raw contents of a directory.
    type dirHandler struct{}
    
    func (*dirHandler) Available() bool { return true }
    
    func (*dirHandler) Handler(dir string, env []string, logger *log.Logger) (http.Handler, error) {
    	return http.FileServer(http.Dir(dir)), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 503 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/build_buildvcs_auto.txt

    stderr '\Aerror obtaining VCS status: main package is in repository ".*" but current directory is in repository ".*"\n\tUse -buildvcs=false to disable VCS stamping.\n\z'
    
    cd ./sub
    go build -o sub.exe .
    go version -m sub.exe
    ! stdout '^\tbuild\tvcs'
    
    ! go build -buildvcs -o sub.exe .
    stderr '\Aerror obtaining VCS status: main module is in repository ".*" but current directory is in repository ".*"\n\tUse -buildvcs=false to disable VCS stamping.\n\z'
    cd ..
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/dist/doc.go

    //
    //	banner         print installation banner
    //	bootstrap      rebuild everything
    //	clean          deletes all built files
    //	env [-p]       print environment (-p: include $PATH)
    //	install [dir]  install individual directory
    //	list [-json]   list all supported platforms
    //	test [-h]      run Go test(s)
    //	version        print Go version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 645 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/install_cross_gobin.txt

    go install mycmd
    exists $GOPATH/bin/linux_$GOARCH/mycmd
    
    # cross-compile install with explicit GOBIN cannot make subdirectory
    env GOBIN=$WORK/bin
    ! go install mycmd
    ! exists $GOBIN/linux_$GOARCH
    
    # The install directory for a cross-compiled standard command should include GOARCH.
    go list -f '{{.Target}}'  cmd/pack
    stdout ${GOROOT}[/\\]pkg[/\\]tool[/\\]${GOOS}_${GOARCH}[/\\]pack$
    
    -- mycmd/x.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 667 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_sum_noroot.txt

    # When 'go get' is invoked on a module without a package in the root directory,
    # it should add sums for the module's go.mod file and its content to go.sum.
    # Verifies golang.org/issue/41103.
    go mod init m
    go get rsc.io/QUOTE
    grep '^rsc.io/QUOTE v1.5.2/go.mod ' go.sum
    grep '^rsc.io/QUOTE v1.5.2 ' go.sum
    
    # Double-check rsc.io/QUOTE does not have a root package.
    ! go list -mod=readonly rsc.io/QUOTE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 503 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    go mod download rsc.io/fortune@v1.0.0
    ! go install $GOPATH/pkg/mod/rsc.io/fortune@v1.0.0
    stderr '^go: go\.mod file not found in current directory or any parent directory; see ''go help modules''$'
    ! go install ../pkg/mod/rsc.io/fortune@v1.0.0
    stderr '^go: go\.mod file not found in current directory or any parent directory; see ''go help modules''$'
    mkdir tmp
    cd tmp
    go mod init tmp
    go mod edit -require=rsc.io/fortune@v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top