Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 115 for downgrades (0.33 sec)

  1. 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)
  2. src/cmd/go/testdata/script/mod_import_issue41113.txt

    # split-incompatible/subpkg module). modload.QueryPattern will suggest
    # split-incompatible v2.0.0+incompatible, which we cannot use (because it would
    # be an implicit downgrade), and split-incompatible/subpkg v0.1.0, which we
    # *should* use.
    
    go mod tidy
    
    go list -m all
    stdout '^example.com/split-incompatible/subpkg v0\.1\.0$'
    ! stdout '^example.com/split-incompatible .*'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 20:45:27 UTC 2020
    - 932 bytes
    - Viewed (0)
  3. 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)
  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/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/consistency/ProjectLocalDependencyResolutionConsistencyIntegrationTest.groovy

       Constraint path ':test:unspecified' --> 'org:foo:{strictly 1.0}' because of the following reason: version resolved in configuration ':other' by consistent resolution"""
        }
    
        def "first level dependency can be downgraded only if it's a preferred version"() {
            repository {
                'org:foo:1.0'()
                'org:foo:1.1'()
            }
    
            buildFile << """
                configurations {
                    other
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  6. 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)
  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. 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)
  9. 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)
  10. 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)
Back to top