Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Downgrade (0.17 sec)

  1. src/cmd/go/testdata/script/mod_get_downup_indirect.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 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.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignment/kotlin/build.gradle.kts

    }
    // end::use_bom_rule[]
    } else {
    // tag::use_rule[]
    dependencies {
        components.all<JacksonAlignmentRule>()
    }
    // end::use_rule[]
    // tag::enforced_platform[]
    dependencies {
        // Forcefully downgrade the virtual Jackson platform to 2.8.9
        implementation(enforcedPlatform("com.fasterxml.jackson:jackson-virtual-platform:2.8.9"))
    }
    // end::enforced_platform[]
    }
    
    // tag::bom-alignment-rule[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java/src/crossVersionTest/groovy/org/gradle/integtests/JavaProjectCrossVersionIntegrationTest.groovy

     */
    package org.gradle.integtests
    
    import org.gradle.integtests.fixtures.CrossVersionIntegrationSpec
    
    class JavaProjectCrossVersionIntegrationTest extends CrossVersionIntegrationSpec {
        def "can upgrade and downgrade Gradle version used to build Java project"() {
            given:
            buildFile << """
    apply plugin: 'java'
    
    task custom(type: org.gradle.CustomTask)
            """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:37:02 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_split.txt

    #
    # In particular, if the module that previously provided the package has a
    # matching version, but does not itself match the pattern and contains no
    # matching packages, we should not change its version. (We should *not* downgrade
    # module example.net/split to v0.1.0, despite the fact that
    # example.net/split v0.2.0 currently provides the package with the requested path.)
    #
    # TODO(#27899): Maybe we should resolve the ambiguities by upgrading.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignment/groovy/build.gradle

    }
    // end::use_bom_rule[]
    } else {
    // tag::use_rule[]
    dependencies {
        components.all(JacksonAlignmentRule)
    }
    // end::use_rule[]
    // tag::enforced_platform[]
    dependencies {
        // Forcefully downgrade the virtual Jackson platform to 2.8.9
        implementation enforcedPlatform('com.fasterxml.jackson:jackson-virtual-platform:2.8.9')
    }
    // end::enforced_platform[]
    }
    
    // tag::bom-alignment-rule[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/FallbackTestClientSocketFactory.kt

        }
      }
    
      companion object {
        /**
         * The cipher suite used during TLS connection fallback to indicate a fallback. See
         * https://tools.ietf.org/html/draft-ietf-tls-downgrade-scsv-00
         */
        const val TLS_FALLBACK_SCSV = "TLS_FALLBACK_SCSV"
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginDependenciesIntegrationTest.groovy

            succeeds("dependencies", "--configuration", "checkstyle")
            output.contains "com.puppycrawl.tools:checkstyle:"
    
            when:
            buildFile << """
                dependencies {
                    //downgrade version:
                    checkstyle "com.puppycrawl.tools:checkstyle:5.5"
                }
            """
    
            then:
            fails("check")
            failure.assertHasErrorOutput("Name 'class1' must match pattern")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top