Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for Downgrade (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/go/testdata/script/mod_tidy_downgrade_ambiguous.txt

    stdout '^rsc.io/quote@v1.5.2$'
    ! stdout 'rsc.io/quote/v3'
    go list -e all
    ! stdout '^rsc.io/quote$'
    
    # 'go mod tidy' should preserve the requirement on rsc.io/quote but mark it
    # indirect. This prevents a downgrade to v1.5.1, which could introduce
    # an ambiguity.
    go mod tidy
    go list -m -f '{{.Path}}@{{.Version}}{{if .Indirect}} indirect{{end}}' all
    stdout '^rsc.io/quote@v1.5.2 indirect$'
    stdout '^rsc.io/quote/v3@v3.0.0$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 17:32:52 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/rich_versions.adoc

    [[sec:strict-version]]
    `strictly`::
    Any version not matched by this version notation will be excluded.
    This is the strongest version declaration.
    On a declared dependency, a `strictly` can downgrade a version.
    When on a transitive dependency, it will cause dependency resolution to fail if no version acceptable by this clause can be selected.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top