Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 115 for downgrades (0.14 sec)

  1. 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)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionConstraint.java

        /**
         * The required version of a module (which may be an exact version or a version range).
         *
         * The required version of a module can typically be upgraded during dependency resolution, but not downgraded.
         *
         * @return the required version, or empty string if no required version specified. Never null.
         */
        String getRequiredVersion();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 11:49:12 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_constraints.adoc

    NOTE: Dependency constraints are only published when using <<publishing_gradle_module_metadata.adoc#sec:understanding-gradle-module-md,Gradle Module Metadata>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/NewerGradleNeededByPluginFailureDescriber.java

        }
    
        private String suggestDowngradePlugin(String pluginId) {
            return "Downgrade plugin " + pluginId + " to an older version compatible with " + currentGradleVersion + ".";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. internal/config/browser/browser.go

    	cfg.HSTSPreload = hstsPreload
    
    	referrerPolicy := env.Get(EnvBrowserReferrerPolicy, kvs.GetWithDefault(browserReferrerPolicy, DefaultKVS))
    	switch referrerPolicy {
    	case "no-referrer", "no-referrer-when-downgrade", "origin", "origin-when-cross-origin", "same-origin", "strict-origin", "strict-origin-when-cross-origin", "unsafe-url":
    		cfg.ReferrerPolicy = referrerPolicy
    	default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (1)
Back to top