Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,310 for mod$ (0.05 sec)

  1. staging/src/k8s.io/cli-runtime/go.sum

    golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
    golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
    golang.org/x/mod v0.15.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
    golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
    golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_load_badmod.txt

    go list -m -mod=mod all
    
    # ... and in replaced dependency go.mod files.
    cp go.mod go.mod.usesub
    go list -m -mod=mod all
    
    # ... but not in the main module.
    cp go.mod.bad go.mod
    ! go list -m -mod=mod all
    stderr 'unknown directive: hello'
    
    -- go.mod --
    module m
    require rsc.io/badmod v1.0.0
    -- go.mod.bad --
    module m
    hello world
    -- go.mod.usesub --
    module m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 11 13:08:54 UTC 2020
    - 524 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/go.sum

    cloud.google.com/go/ids v1.4.1/go.mod h1:np41ed8YMU8zOgv53MMMoCntLTn2lF+SUzlM+O3u/jw=
    cloud.google.com/go/iot v1.7.1/go.mod h1:46Mgw7ev1k9KqK1ao0ayW9h0lI+3hxeanz+L1zmbbbk=
    cloud.google.com/go/kms v1.15.0/go.mod h1:c9J991h5DTl+kg7gi3MYomh12YEENGrf48ee/N/2CDM=
    cloud.google.com/go/language v1.10.1/go.mod h1:CPp94nsdVNiQEt1CNjF5WkTcisLiHPyIbMhvR8H2AW0=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_compat_ambiguous.txt

    [exec:patch] mv go.mod go.mod.tidyResult
    [exec:patch] mv go.sum go.sum.tidyResult
    [exec:patch] cp go.mod.orig go.mod
    [exec:patch] ! go mod tidy -e -diff
    [exec:patch] ! stderr '\n\tgo mod tidy'
    [exec:patch] cp stdout diff.patch
    [exec:patch] exec patch -p1 -i diff.patch
    [exec:patch] go mod tidy -e -diff
    [exec:patch] ! stdout .
    [exec:patch] cmp go.mod go.mod.tidyResult
    [exec:patch] cmp go.sum go.sum.tidyResult
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/cmd/go.sum

    golang.org/x/build v0.0.0-20240603162849-5dfbda438323/go.mod h1:yz9anu0Z63yrVrqnoOxoJuyBRDwtGUoOFJwtfvs+D+U=
    golang.org/x/mod v0.18.0 h1:5+9lSbEzPSdWkH32vYPBwEpX8KwDbM52Ud9xBUvNlb0=
    golang.org/x/mod v0.18.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
    golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M=
    golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_exclude_go121.txt

    # go.dev/issue/60028: use semver sort in exclude block in 1.21
    cp $WORK/go.mod.badfmtexclude go.mod
    go mod edit -go=1.20
    cmp go.mod $WORK/go.mod.goodfmtexclude120
    go mod edit -go=1.21
    cmp go.mod $WORK/go.mod.goodfmtexclude121
    
    -- $WORK/go.mod.badfmtexclude --
    module     x.x/y/z
    exclude  (
    	x.1   v1.11.0
    	x.1    v1.10.0
    	x.1     v1.9.0
    )
    -- $WORK/go.mod.goodfmtexclude120 --
    module x.x/y/z
    
    go 1.20
    
    exclude (
    	x.1 v1.10.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 17:26:48 UTC 2023
    - 563 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_vendor_trimpath.txt

    # As with -mod=mod, the version should appear as part of the module path.
    go run -mod=vendor -trimpath main.go
    stdout '^example.com/stack@v1.0.0/stack.go$'
    
    # With pristinely vendored source code, a trimmed binary built from vendored
    # code should have the same behavior as one build from the module cache.
    go run -mod=mod -trimpath main.go
    stdout '^example.com/stack@v1.0.0/stack.go$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 13 00:19:50 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/gotoolchain_modcmds.txt

    # If the main module's go.mod file lists a version lower than the version
    # required by its dependencies, the commands that fetch and diagnose the module
    # graph (such as 'go mod graph' and 'go mod verify') should fail explicitly:
    # they can't interpret the graph themselves, and they aren't allowed to update
    # the go.mod file to record a specific, stable toolchain version that can.
    
    ! go mod verify
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. go.sum

    cloud.google.com/go/beyondcorp v1.0.0/go.mod h1:YhxDWw946SCbmcWo3fAhw3V4XZMSpQ/VYfcKGAEU8/4=
    cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o=
    cloud.google.com/go/bigquery v1.53.0/go.mod h1:3b/iXjRQGU4nKa87cXeg6/gogLjO8C6PmuM8i5Bi/u4=
    cloud.google.com/go/billing v1.16.0/go.mod h1:y8vx09JSSJG02k5QxbycNRrN7FGZB6F3CAcgum7jvGA=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/vcstest/hg/vgotest1.txt

    echo 'module "github.com/rsc/vgotest" // v2/go.mod'
    cp stdout v2/go.mod
    git add v2/go.mod
    git commit -m 'v2/go.mod: bad go.mod (no version)'
    git tag v2.0.3
    
    # 5
    at 2018-02-19T19:03:38-05:00
    env GIT_AUTHOR_DATE=2018-02-19T18:16:38-05:00
    echo 'module "github.com/rsc/vgotest1/v2" // v2/go.mod'
    cp stdout v2/go.mod
    git add v2/go.mod
    git commit -m 'v2/go.mod: fix'
    git tag v2.0.4
    
    # 6
    at 2018-02-19T19:03:59-05:00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 9.2K bytes
    - Viewed (0)
Back to top