Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for Downgrade (0.11 sec)

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

    
    go mod tidy -go=1.16
    cmp go.mod go.mod.116
    
    go mod tidy
    cmp go.mod go.mod.116
    
    
    go mod tidy -go=1.17
    cmp go.mod go.mod.117
    
    go mod tidy
    cmp go.mod go.mod.117
    
    
    # If we downgrade back to 1.15, we should re-resolve d to v0.2.0 instead
    # of the original v0.1.0 (because the original requirement is lost).
    
    go mod tidy -go=1.15
    cmp go.mod go.mod.115-2
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. 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)
  3. cluster/images/etcd/README.md

    utility bundled with the image.
    
    In addition to the latest etcd version, each `registry.k8s.io/etcd` image contains
    etcd and etcdctl binaries for older versions of etcd. These are used by the
    migration operator utility when performing downgrades and multi-step upgrades,
    but can also be used as the etcd target version.
    
    #### Usage
    
    Always run `/usr/local/bin/migrate` (or the
    `/usr/local/bin/migrate-if-needed.sh` wrapper script) before starting the etcd
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 12:41:39 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_goline.txt

    go get example.com/a@v1.0.2 go@1.28rc1
    go list -f '{{.Module.GoVersion}}'
    stdout 1.28rc1
    go get go@1.24.2
    stderr '^go: downgraded go 1.28rc1 => 1.24.2$'
    stderr '^go: downgraded example.com/a v1.0.2 => v1.0.1$'
    stderr '^go: downgraded example.com/b v1.0.2 => v1.0.1$'
    go list -f '{{.Module.GoVersion}}'
    stdout 1.24.2
    
    -- go.mod --
    module m
    go 1.21
    
    require (
    	example.com/a v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionConstraint.java

        /**
         * The required version of a module (which may be an exact version or a version range).
         *
         * The required version of a module can typically be upgraded during dependency resolution, but not downgraded.
         *
         * @return the required version, or empty string if no required version specified. Never null.
         */
        String getRequiredVersion();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 11:49:12 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_constraints.adoc

    NOTE: Dependency constraints are only published when using <<publishing_gradle_module_metadata.adoc#sec:understanding-gradle-module-md,Gradle Module Metadata>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. docs/debugging/inspect/export.go

    	// Current version being written.
    	xlVersionCurrent [4]byte
    )
    
    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: Tue Nov 08 15:58:02 UTC 2022
    - 9.1K bytes
    - Viewed (0)
Back to top