Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for Downgrade (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/go/internal/modload/help.go

    To add missing module requirements or remove unneeded requirements,
    use 'go mod tidy'. For details, see 'go help mod tidy' or
    https://golang.org/ref/mod#go-mod-tidy.
    
    To add, upgrade, downgrade, or remove a specific module requirement, use
    'go get'. For details, see 'go help module-get' or
    https://golang.org/ref/mod#go-get.
    
    To make other changes or to parse go.mod as JSON for use by other tools,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 30 17:07:46 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/internal/mvs/errors.go

    // occurred at a module found along the given path of requirements and/or
    // upgrades, which must be non-empty.
    //
    // The isVersionChange function reports whether a path step is due to an
    // explicit upgrade or downgrade (as opposed to an existing requirement in a
    // go.mod file). A nil isVersionChange function indicates that none of the path
    // steps are due to explicit version changes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 17:22:28 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/crossVersionTest/groovy/org/gradle/integtests/resolve/ResolveCrossVersionIntegrationTest.groovy

        def ivyHttpRepo = new IvyHttpRepository(server, new IvyFileRepository(file("ivy-repo")))
    
        def setup() {
            requireOwnGradleUserHomeDir()
            server.start()
        }
    
        def "can upgrade and downgrade Gradle version"() {
            given:
            mavenHttpRepo.module("test", "io", "1.4").publish()
            mavenHttpRepo.module("test", "lang", "2.4").publish()
            mavenHttpRepo.module("test", "lang", "2.6").publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_toolchain.txt

    stderr '^go: removed toolchain go1.999testmod$'
    grep 'go 1.23.9' go.mod
    ! grep 'toolchain go1.23.9' go.mod  # implied
    
    # go get toolchain@go1.22 should use the latest Go 1.22 and downgrade go.
    go get toolchain@go1.22
    stderr '^go: downgraded go 1.23.9 => 1.22.9$'
    grep 'go 1.22.9' go.mod
    ! grep 'toolchain go1.22.9' go.mod # implied
    
    # go get toolchain@patch should use the latest patch release
    go get toolchain@go1.22.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 19:33:16 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_downup_artifact.txt

    # This test illustrates a case where an upgrade–downgrade–upgrade cycle can
    # result in upgrades of otherwise-irrelevant dependencies.
    #
    # This case has no corresponding test in the mvs package, because it is an
    # artifact that results from the composition of *multiple* MVS operations.
    
    # The initial package import graph used in the test looks like:
    #
    # m ---- a
    # |      |
    # +----- b
    # |      |
    # +----- c
    # |
    # +----- d
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top