Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,434 for MOD (0.07 sec)

  1. go.sum

    github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=
    github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
    github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
    github.com/klauspost/compress v1.14.4/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/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.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_vendor_auto.txt

    ! go list -m all
    stderr 'go: can''t compute ''all'' using the vendor directory\n\t\(Use -mod=mod or -mod=readonly to bypass.\)'
    
    ! go list -m -f '{{.Dir}}' all
    stderr 'go: can''t compute ''all'' using the vendor directory\n\t\(Use -mod=mod or -mod=readonly to bypass.\)'
    
    # An explicit -mod=mod should force the vendor directory to be ignored.
    env GOFLAGS=-mod=mod
    
    go list -f {{.Dir}} -tags tools -e all
    stdout '^'$WORK'[/\\]auto$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_toolchain.txt

    # go get go should use the latest Go 1.23
    cp go.mod.orig go.mod
    go get go
    stderr '^go: upgraded go 1.21 => 1.23.9$'
    grep 'go 1.23.9' go.mod
    grep 'toolchain go1.99rc1' go.mod
    
    # go get go@1.23 should use the latest Go 1.23
    cp go.mod.orig go.mod
    go get go@1.23
    stderr '^go: upgraded go 1.21 => 1.23.9$'
    grep 'go 1.23.9' go.mod
    grep 'toolchain go1.99rc1' go.mod
    
    # go get go@1.22 should use the latest Go 1.22
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 19:33:16 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_find.txt

    cp $devnull go.mod # can't use touch to create it because Windows
    ! go mod init
    stderr 'go.mod already exists'
    
    # Module path from Godeps/Godeps.json overrides GOPATH.
    cd $GOPATH/src/example.com/x/y/z
    go mod init
    stderr 'unexpected.com/z'
    rm go.mod
    
    # Empty directory outside GOPATH fails.
    mkdir $WORK/empty
    cd $WORK/empty
    ! go mod init
    stderr 'cannot determine module path for source directory'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:14 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32_table_ppc64le.s

    DATA ·IEEEConst+208(SB)/8,$0x00000001b5334592
    DATA ·IEEEConst+216(SB)/8,$0x00000001f8cc6582
    
    	/* x^246848 mod p(x), x^246784 mod p(x) */
    DATA ·IEEEConst+224(SB)/8,$0x000000011f8ee1b4
    DATA ·IEEEConst+232(SB)/8,$0x000000008631ddf0
    
    	/* x^245824 mod p(x), x^245760 mod p(x) */
    DATA ·IEEEConst+240(SB)/8,$0x000000006252e632
    DATA ·IEEEConst+248(SB)/8,$0x000000007e5a76d0
    
    	/* x^244800 mod p(x), x^244736 mod p(x) */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_retention.txt

    # but 'go mod vendor' cannot write go.mod.
    cp go.mod.toodirect go.mod
    go list all
    cmp go.mod go.mod.toodirect
    
    
    # Redundant requirements should be preserved...
    cp go.mod.redundant go.mod
    go list all
    cmp go.mod go.mod.redundant
    go mod vendor
    cmp go.mod go.mod.redundant
    rm -r vendor
    
    # ...except by 'go mod tidy'.
    go mod tidy
    cmp go.mod go.mod.tidy
    
    
    # A missing "go" version directive should be added.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 18:41:57 UTC 2021
    - 3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_edit.txt

    go mod edit -json $WORK/go.mod.deprecation
    cmp stdout $WORK/go.mod.deprecation.json
    
    # go mod edit -json (empty mod file)
    go mod edit -json $WORK/go.mod.empty
    cmp stdout $WORK/go.mod.empty.json
    
    # go mod edit -replace
    go mod edit -replace=x.1@v1.3.0=y.1/v2@v2.3.5 -replace=x.1@v1.4.0=y.1/v2@v2.3.5
    cmpenv go.mod $WORK/go.mod.edit3
    go mod edit -replace=x.1=y.1/v2@v2.3.6
    cmpenv go.mod $WORK/go.mod.edit4
    go mod edit -dropreplace=x.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/modfile_flag.txt

    # other 'go mod' commands should work. 'go mod vendor' is tested later.
    go mod download rsc.io/quote
    go mod graph
    stdout rsc.io/quote
    go mod tidy
    grep rsc.io/quote go.alt.sum
    go mod verify
    go mod why rsc.io/quote
    
    
    # 'go list' and other commands with build flags should work.
    # They should update the alternate go.mod when a dependency is missing.
    go mod edit -droprequire rsc.io/quote
    go list -mod=mod .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  10. go.sum

    github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
    github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
    github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
    github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
Back to top