Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,310 for mod$ (0.42 sec)

  1. 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)
  2. src/cmd/go/testdata/script/mod_replace_readonly.txt

    # Check that with -mod=readonly, when we load a package in a module that is
    # replaced but not required, we emit an error with the command to add the
    # requirement.
    # Verifies golang.org/issue/41416, golang.org/issue/41577.
    cp go.mod go.mod.orig
    
    # Replace all versions of a module without requiring it.
    # With -mod=mod, we'd add a requirement for a "zero" pseudo-version, but we
    # can't in readonly mode, since its go.mod may alter the build list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_compat_deleted.txt

    [exec:patch] ! exists go.sum
    [exec:patch] cp go.mod.orig go.mod
    [exec:patch] ! go mod tidy -e -diff
    [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] ! exists go.sum
    
    # In 'go 1.16' mode we should error out in the way we claimed.
    
    cd 116-outside
    ! go list -deps -f $MODFMT example.com/m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_vendor_replace.txt

    env GO111MODULE=on
    
    # Replacement should not use a vendor directory as the target.
    ! go mod vendor
    stderr 'replacement path ./vendor/not-rsc.io/quote/v3 inside vendor directory'
    
    cp go.mod1 go.mod
    rm -r vendor
    
    # Before vendoring, we expect to see the original directory.
    go list -f '{{with .Module}}{{.Version}}{{end}} {{.Dir}}' rsc.io/quote/v3
    stdout 'v3.0.0'
    stdout '.*[/\\]not-rsc.io[/\\]quote[/\\]v3'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 19:40:02 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_lazy_test_of_test_dep.txt

    stdout '^example.com/c v0.1.0 '
    
    cmp go.mod go.mod.b
    
    
    # We should reach the same state if we arrive at it via `go test -mod=mod`.
    
    cp go.mod.117 go.mod
    
    [short] go list -mod=mod -test -deps example.com/a
    [!short] go test -mod=mod -c -o $devnull example.com/a
    
    [short] go list -mod=mod -test -deps example.com/b
    [!short] go test -mod=mod -c -o $devnull example.com/b
    
    cmp go.mod go.mod.b
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 08 19:32:28 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_graph_version.txt

    # the main module).
    
    cp go.mod go.mod.orig
    
    go mod graph
    cp stdout graph-1.17.txt
    stdout '^example\.com/m example\.com/retract/incompatible@v1\.0\.0$'
    stdout '^example\.net/lazy@v0\.1\.0 example\.com/retract/incompatible@v1\.0\.0$'
    ! stdout 'example\.com/retract/incompatible@v2\.0\.0\+incompatible'
    
    go mod graph -go=1.17
    cmp stdout graph-1.17.txt
    
    cmp go.mod go.mod.orig
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 21:10:42 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/go/internal/modcmd/download.go

    	}
    
    	// If there were explicit arguments, update go.mod and especially go.sum.
    	// 'go mod download mod@version' is a useful way to add a sum without using
    	// 'go get mod@version', which may have other side effects. We print this in
    	// some error message hints.
    	//
    	// If we're in workspace mode, update go.work.sum with checksums for all of
    	// the modules we downloaded that aren't already recorded. Since a requirement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  10. 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)
Back to top