Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for Downgrade (0.18 sec)

  1. 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)
  2. src/cmd/go/testdata/mod/example.com_latemigrate_v2_v2.0.1.txt

    example.com/latemigrate/v2 v2.0.1
    written by hand
    
    This repository migrated to modules in v2.0.1 after v2.0.0 was already tagged.
    All versions require rsc.io/quote so we can test downgrades.
    
    v2.0.1 belongs to example.com/latemigrate/v2.
    
    -- .mod --
    module example.com/latemigrate/v2
    
    require rsc.io/quote v1.3.0
    -- .info --
    {"Version":"v2.0.1"}
    -- go.mod --
    module example.com/latemigrate/v2
    
    require rsc.io/quote v1.3.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:39:37 UTC 2019
    - 449 bytes
    - Viewed (0)
  3. 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)
  4. cmd/kubeadm/app/util/error_test.go

    				)
    			}
    		})
    	}
    }
    
    func TestFormatErrMsg(t *testing.T) {
    	errMsg1 := "specified version to upgrade to v1.9.0-alpha.3 is equal to or lower than the cluster version v1.10.0-alpha.0.69+638add6ddfb6d2. Downgrades are not supported yet"
    	errMsg2 := "specified version to upgrade to v1.9.0-alpha.3 is higher than the kubeadm version v1.9.0-alpha.1.3121+84178212527295-dirty. Upgrade kubeadm first using the tool you used to install kubeadm"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 04 08:41:27 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  5. 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)
  6. 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