Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 115 for downgrades (0.16 sec)

  1. src/cmd/go/internal/modload/query.go

    // "upgrade" or "patch", current will be returned if it is a newer
    // semantic version or a chronologically later pseudo-version than the
    // version that would otherwise be chosen. This prevents accidental downgrades
    // from newer pre-release or development versions.
    //
    // The allowed function (which may be nil) is used to filter out unsuitable
    // versions (see AllowedFunc documentation for details). If the query refers to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  2. 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)
  3. cmd/xl-storage-format-v2.go

    //go:generate stringer -type VersionType,ErasureAlgo -output=xl-storage-format-v2_string.go $GOFILE
    
    const (
    	// Breaking changes.
    	// Newer versions cannot be read by older software.
    	// This will prevent downgrades to incompatible versions.
    	xlVersionMajor = 1
    
    	// Non breaking changes.
    	// Bumping this is informational, but should be done
    	// if any change is made to the data stored, bumping this
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_downgrade.txt

    env GO111MODULE=on
    [short] skip
    
    # downgrade sampler should downgrade quote
    cp go.mod.orig go.mod
    go get rsc.io/sampler@v1.0.0
    go list -m all
    stdout 'rsc.io/quote v1.4.0'
    stdout 'rsc.io/sampler v1.0.0'
    
    # downgrade sampler away should downgrade quote further
    go get rsc.io/sampler@none
    go list -m all
    stdout 'rsc.io/quote v1.3.0'
    
    # downgrade should report inconsistencies and not change go.mod
    go get rsc.io/quote@v1.5.1
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_toolchain.txt

    stderr '^go: removed toolchain go1.999testmod$'
    grep 'go 1.23.9' go.mod
    ! grep 'toolchain go1.23.9' go.mod  # implied
    
    # go get toolchain@go1.22 should use the latest Go 1.22 and downgrade go.
    go get toolchain@go1.22
    stderr '^go: downgraded go 1.23.9 => 1.22.9$'
    grep 'go 1.22.9' go.mod
    ! grep 'toolchain go1.22.9' go.mod # implied
    
    # go get toolchain@patch should use the latest patch release
    go get toolchain@go1.22.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 19:33:16 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_toolchain.txt

    stderr '^go: added toolchain go1.22.1$'
    ! stderr '(added|removed|upgraded|downgraded) go'
    grep 'toolchain go1.22.1' go.mod
    
    go get toolchain@none
    stderr '^go: removed toolchain go1.22.1$'
    ! stderr '(added|removed|upgraded|downgraded) go'
    ! grep toolchain go.mod
    
    go get toolchain@go1.22.1
    stderr '^go: added toolchain go1.22.1$'
    ! stderr '(added|removed|upgraded|downgraded) go'
    grep 'toolchain go1.22.1' go.mod
    
    go get go@1.22.3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 22:42:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    //
    // Although most of the loading state is maintained in the loader struct,
    // one key piece - the build list - is a global, so that it can be modified
    // separate from the loading operation, such as during "go get"
    // upgrades/downgrades or in "go mod" operations.
    // TODO(#40775): It might be nice to make the loader take and return
    // a buildList rather than hard-coding use of the global.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_upgrade_pseudo.txt

    go list -m -u all
    stdout '^example.com/pseudoupgrade v0.1.1-0.20190429073117-b5426c86b553$'
    
    # 'get -u' should not downgrade to the (lower) tagged version.
    go get -u
    go list -m -u all
    stdout '^example.com/pseudoupgrade v0.1.1-0.20190429073117-b5426c86b553$'
    
    # 'get example.com/pseudoupgrade@upgrade' should not downgrade.
    go get example.com/pseudoupgrade@upgrade
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.com_downgrade_v2_v2.0.1.txt

    example.com/downgrade/v2 v2.0.1
    written by hand
    
    -- .mod --
    module example.com/downgrade/v2
    
    require rsc.io/quote v1.5.2
    -- .info --
    {"Version":"v2.0.1"}
    -- go.mod --
    module example.com/downgrade/v2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:39:37 UTC 2019
    - 228 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_downgrade_v2.0.0.txt

    example.com/downgrade v2.0.0
    written by hand
    
    -- .mod --
    module example.com/downgrade
    
    require rsc.io/quote v1.5.2
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:39:37 UTC 2019
    - 148 bytes
    - Viewed (0)
Back to top