Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 148 for downgrade (0.38 sec)

  1. 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)
  2. cluster/images/etcd/migrate/migrate.go

    )
    
    var (
    	migrateCmd = &cobra.Command{
    		Short: "Upgrade/downgrade etcd data across multiple versions",
    		Long: `Upgrade or downgrade etcd data across multiple versions to the target version
    
    Given a 'bin-dir' directory of etcd and etcdctl binaries, an etcd 'data-dir' with a 'version.txt' file and
    a target etcd version, this tool will upgrade or downgrade the etcd data from the version specified in
    'version.txt' to the target version.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 16 23:10:54 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_get_downup_indirect_pruned.txt

    #   \      \
    #    \      \
    #     ----- c.1 ---- d.2
    #
    # b.1 ---- c.2
    #
    # If we downgrade module d to version 1, we must downgrade b as well.
    # If that downgrade selects b version 1, we will upgrade module c to version 2.
    
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod.orig go.mod
    
    # Downgrading d to version 1 downgrades b, which upgrades c.
    go get -v example.com/d@v0.1.0
    go list -m all
    stdout '^example.com/b v0.1.0 '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/policy.go

    		}
    	}
    
    	// kubeadm doesn't support downgrades between two minor versions; e.g. a v1.9 -> v1.7 downgrade is not supported right away
    	if newK8sVersion.Minor() < clusterVersion.Minor()-MaximumAllowedMinorVersionDowngradeSkew {
    		tooLargeDowngradeSkewErr := errors.Errorf("Specified version to downgrade to %q is too low; kubeadm can downgrade only %d minor version at a time", newK8sVersionStr, MaximumAllowedMinorVersionDowngradeSkew)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginDependenciesIntegrationTest.groovy

            succeeds("dependencies", "--configuration", "pmd")
            output.contains "pmd:pmd-java:"
    
            when:
            buildFile << """
                dependencies {
                    //downgrade version:
                    pmd "$testDependency"
                }
    
                pmd {
                    incrementalAnalysis = false
                }
            """.stripIndent()
    
            then:
            fails("check")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. releasenotes/notes/32749.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 32749
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 17 16:36:41 UTC 2021
    - 169 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_downup_pseudo_artifact.txt

    # This test illustrates a case where an upgrade–downgrade–upgrade cycle could
    # add extraneous dependencies due to another module depending on an
    # otherwise-unlisted version (such as a pseudo-version).
    #
    # This case corresponds to the "downhiddenartifact" test in the mvs package.
    
    # The initial package import graph used in the test looks like:
    #
    # a --- b
    #  \     \
    #   \     \
    #    c --- d
    #
    # The module dependency graph initially looks like:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsIntegrationTest.groovy

    import org.gradle.integtests.fixtures.RequiredFeature
    import org.gradle.integtests.resolve.AbstractModuleDependencyResolveTest
    
    class StrictVersionConstraintsIntegrationTest extends AbstractModuleDependencyResolveTest {
        def "can downgrade version"() {
            given:
            repository {
                'org:foo:1.0'()
                'org:foo:2.0'()
                'org:bar:1.0' {
                    dependsOn 'org:foo:2.0'
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/edit.go

    				// If this conflict was just one step in a longer chain of downgrades,
    				// then we would want to keep going past it until we find a version
    				// that doesn't have that problem. However, we only want to downgrade
    				// away from an *existing* requirement if we can confirm that it actually
    				// conflicts with mustSelect. (For example, we don't want
    				// 'go get -u ./...' to incidentally downgrade some dependency whose
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. cluster/images/etcd/migrate/migrator.go

    */
    
    package main
    
    import (
    	"fmt"
    	"os"
    	"time"
    
    	"github.com/blang/semver/v4"
    	"k8s.io/klog/v2"
    )
    
    // EtcdMigrateCfg provides all configuration required to perform etcd data upgrade/downgrade migrations.
    type EtcdMigrateCfg struct {
    	binPath           string
    	name              string
    	initialCluster    string
    	port              uint64
    	peerListenUrls    string
    	peerAdvertiseUrls string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 6.4K bytes
    - Viewed (0)
Back to top