Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 115 for downgrades (0.26 sec)

  1. cluster/gce/upgrade.sh

      else
         # In case of a downgrade, a custom CoreDNS Corefile will be overwritten by a default Corefile. In that case,
         # the user will need to manually modify the resulting (default) Corefile after the downgrade is complete.
         echo "== Applying the latest default CoreDNS configuration =="
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. pkg/registry/core/service/storage/alloc.go

    	if service.Spec.Type == api.ServiceTypeExternalName {
    		return nil
    	}
    
    	// We don't want to auto-upgrade (add an IP) or downgrade (remove an IP)
    	// PreferDualStack services following a cluster change to/from
    	// dual-stackness.
    	//
    	// That means a PreferDualStack service will only be upgraded/downgraded
    	// when:
    	// - changing ipFamilyPolicy to "RequireDualStack" or "SingleStack" AND
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_get_downadd_indirect.txt

    #
    # 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.
    # If that downgrade selects b version 1, we will add a new dependency on module c.
    
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod.orig go.mod
    
    go get example.com/d@v0.1.0
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.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. src/cmd/go/testdata/script/mod_get_retract.txt

    go mod edit -require example.com/retract/self/prev@v1.1.0
    go get example.com/retract/self/prev
    go list -m example.com/retract/self/prev
    stdout '^example.com/retract/self/prev v1.1.0$'
    
    # 'go get pkg' should not downgrade from a retracted version when no higher
    # version is available.
    cp go.mod.orig go.mod
    go mod edit -require example.com/retract/self/prev@v1.9.0
    go get example.com/retract/self/prev
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  6. 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)
  7. CHANGELOG/CHANGELOG-1.5.md

    ### Other notable changes
    
    * kube-up (with gce/gci and gce/coreos providers) now ensures the authentication token file contains correct tokens for the control plane components, even if the file already exists (ensures upgrades and downgrades work successfully) ([#43676](https://github.com/kubernetes/kubernetes/pull/43676), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top