Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 23179ee8a569 (0.19 sec)

  1. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180214005840-23179ee8a569.txt

    rsc.io/quote@v0.0.0-20180214005840-23179ee8a569
    
    -- .mod --
    module "rsc.io/quote"
    
    require "rsc.io/sampler" v1.3.0
    -- .info --
    {"Version":"v0.0.0-20180214005840-23179ee8a569","Name":"23179ee8a569bb05d896ae05c6503ec69a19f99f","Short":"23179ee8a569","Time":"2018-02-14T00:58:40Z"}
    -- go.mod --
    module "rsc.io/quote"
    
    require "rsc.io/sampler" v1.3.0
    -- quote.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_commit.txt

    stderr '^go: module golang.org/x/text@14c0d48 found \(v0.3.0\), but does not contain package golang.org/x/text/foo$'
    
    # get pseudo-version should record that version
    go get rsc.io/quote@v0.0.0-20180214005840-23179ee8a569
    grep 'rsc.io/quote v0.0.0-20180214005840-23179ee8a569' go.mod
    
    # but as commit should record as v1.5.1
    go get rsc.io/quote@23179ee8
    grep 'rsc.io/quote v1.5.1' go.mod
    
    # go mod edit -require does not interpret commits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 21 20:57:57 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/rsc.io_quote_v1.5.1.txt

    rsc.io/quote@23179ee8a569
    
    -- .mod --
    module "rsc.io/quote"
    
    require "rsc.io/sampler" v1.3.0
    -- .info --
    {"Version":"v1.5.1","Name":"23179ee8a569bb05d896ae05c6503ec69a19f99f","Short":"23179ee8a569","Time":"2018-02-14T00:58:40Z"}
    -- go.mod --
    module "rsc.io/quote"
    
    require "rsc.io/sampler" v1.3.0
    -- quote.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2K bytes
    - Viewed (0)
Back to top