Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 179 for downgrading (0.15 sec)

  1. src/cmd/go/testdata/script/mod_lazy_downgrade.txt

    # This test illustrates the interaction between lazy loading and downgrading in
    # 'go get'.
    
    # The package import graph used in this test looks like:
    #
    # lazy ---- a
    #           |
    #           a_test ---- b
    #                       b_test ---- c
    #
    # The module dependency graph initially looks like:
    #
    # lazy ---- a.1 ---- b.1 ---- c.1
    #      \                     /
    #        b.3 ---- c.2    b.2
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  2. releasenotes/notes/29183.yaml

    apiVersion: release-notes/v2
    kind:
      bug-fix
    area:
      istioctl
    issue:
      - 29183
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 30 17:26:02 UTC 2020
    - 198 bytes
    - Viewed (0)
  3. src/cmd/go/internal/modcmd/mod.go

    	Long: `Go mod provides access to operations on modules.
    
    Note that support for modules is built into all the go commands,
    not just 'go mod'. For example, day-to-day adding, removing, upgrading,
    and downgrading of dependencies should be done using 'go get'.
    See 'go help modules' for an overview of module functionality.
    	`,
    
    	Commands: []*base.Command{
    		cmdDownload,
    		cmdEdit,
    		cmdGraph,
    		cmdInit,
    		cmdTidy,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 807 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_downup_indirect.txt

    # This test illustrates a case where downgrading one module may upgrade another.
    # Compare to the downcross1 test case in cmd/go/internal/mvs/mvs_test.go.
    
    # The package import graph used in this test looks like:
    #
    # a ---- b
    #   \     \
    #    \     \
    #     ----- c ---- d
    #
    # The module dependency graph originally looks like:
    #
    # a ---- b.2
    #   \      \
    #    \      \
    #     ----- c.1 ---- d.2
    #
    # b.1 ---- c.2
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue66285.go

    // -lang=go1.21
    
    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Note: Downgrading to go1.13 requires at least go1.21,
    //       hence the need for -lang=go1.21 at the top.
    
    //go:build go1.13
    
    package p
    
    import "io"
    
    // A "duplicate method" error should be reported for
    // all these interfaces, irrespective of which package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 766 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_downup_indirect_pruned.txt

    # This test illustrates a case where downgrading one module may upgrade another.
    # This is the same as mod_get_downup_indirect, but using modules
    # with graph pruning enabled (go ≥ 1.17).
    # Compare to the downcross1 test case in cmd/go/internal/mvs/mvs_test.go.
    
    # The package import graph used in this test looks like:
    #
    # a ---- b
    #   \     \
    #    \     \
    #     ----- c ---- d
    #
    # The module dependency graph originally looks like:
    #
    # a ---- b.2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_downadd_indirect.txt

    # This test illustrates a case where downgrading one module may upgrade another.
    # Compare to the downcross2 test case in cmd/go/internal/mvs/mvs_test.go.
    
    # The initial package import graph used in this test looks like:
    #
    # a ---- b ---- d
    #
    # The module dependency graph originally looks like:
    #
    # a ---- b.2 ---- d.2
    #
    # b.1 ---- c.1
    #
    # If we downgrade module d to version 1, we must downgrade b as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_downgrade.txt

    cp go.mod.empty go.mod
    go get -u rsc.io/quote@v1.4.0 rsc.io/sampler@v1.0.0
    go list -m all
    stdout 'rsc.io/quote v1.4.0'
    stdout 'rsc.io/sampler v1.0.0'
    ! stdout golang.org/x/text
    
    # downgrading away quote should also downgrade away latemigrate/v2,
    # since there are no older versions. v2.0.0 is incompatible.
    cp go.mod.orig go.mod
    go list -m -versions example.com/latemigrate/v2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_changes.txt

    go get rsc.io/sampler@none
    stderr '^go: downgraded rsc.io/quote v1.5.2 => v1.3.0$'
    stderr '^go: removed rsc.io/sampler v1.3.0$'
    ! stderr '^go get.*golang.org/x/text'
    cmp go.mod go.mod.downgrade
    
    # When removing or downgrading a requirement, 'go get' also prints a message
    # for explicit dependencies removed as a consequence.
    cp go.mod.usequote go.mod
    go get rsc.io/quote@v1.5.1
    stderr '^go: downgraded rsc.io/quote v1.5.2 => v1.5.1$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_skip_write.txt

    # Commands used to debug the module graph should not write go.mod or go.sum
    # or report errors when those files need to be updated.
    
    # Everything's okay initially.
    go list -m all
    
    # Downgrading sampler makes go.mod inconsistent, but 'go mod graph',
    # 'go mod verify', and 'go mod why' still work.
    cp go.mod go.mod.orig
    go mod edit -require=rsc.io/sampler@v1.2.0
    cp go.mod go.mod.edit
    ! go list -m all
    stderr 'updates to go.mod needed'
    
    go mod graph
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top