Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for downgrade (0.15 sec)

  1. src/cmd/go/internal/mvs/mvs_test.go

    B3: D2
    C1: B2.hidden
    C2: D2
    D1:
    D2:
    build A1: A1 B3 D2
    downgrade A1 D1: A1 B1 D1 E1
    build A: A B3 C2 D2
    downgrade A D1: A B2.hidden C1 D1
    
    # Both B3 and C3 require D2.
    # If we downgrade D to D1, then in isolation B3 would downgrade to B1,
    # and C3 would downgrade to C1.
    # But C1 requires B2.hidden, and B1 requires C2.hidden, so we can't
    # downgrade to either of those without pulling the other back up a little.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/mvs/mvs.go

    		target: target,
    		list:   downgraded,
    		Reqs:   reqs,
    	})
    	if err != nil {
    		return nil, err
    	}
    	actualVersion := make(map[string]string, len(actual))
    	for _, m := range actual {
    		actualVersion[m.Path] = m.Version
    	}
    
    	downgraded = downgraded[:0]
    	for _, m := range list {
    		if v, ok := actualVersion[m.Path]; ok {
    			downgraded = append(downgraded, module.Version{Path: m.Path, Version: v})
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/internal/modload/edit.go

    				// If this conflict was just one step in a longer chain of downgrades,
    				// then we would want to keep going past it until we find a version
    				// that doesn't have that problem. However, we only want to downgrade
    				// away from an *existing* requirement if we can confirm that it actually
    				// conflicts with mustSelect. (For example, we don't want
    				// 'go get -u ./...' to incidentally downgrade some dependency whose
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. cluster/gce/upgrade.sh

      else
         # In case of a downgrade, a custom CoreDNS Corefile will be overwritten by a default Corefile. In that case,
         # the user will need to manually modify the resulting (default) Corefile after the downgrade is complete.
         echo "== Applying the latest default CoreDNS configuration =="
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/upgrade/policy_test.go

    				kubeletVersion: minimumControlPlaneVersion.WithPatch(2).String(),
    				kubeadmVersion: currentKubernetesVersion.WithPatch(1).String(),
    			},
    			newK8sVersion: currentKubernetesVersion.String(),
    		},
    		{
    			name: "downgrade",
    			vg: &fakeVersionGetter{
    				clusterVersion: minimumControlPlaneVersion.WithPatch(3).String(),
    				kubeletVersion: minimumKubeletVersion.String(),
    				kubeadmVersion: minimumControlPlaneVersion.WithPatch(3).String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 03:17:05 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/EndorseStrictVersionsIntegrationTest.groovy

    @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
    class EndorseStrictVersionsIntegrationTest extends AbstractModuleDependencyResolveTest {
    
        void "can downgrade version through platform"() {
            given:
            repository {
                'org:platform:1.0'() {
                    constraint(group: 'org', artifact: 'bar', version: '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    Consider upgrading your source code to use a newer version of the library as an alternative approach.
    ====
    
    In general, forcing dependencies is done to downgrade a dependency.
    There might be different use cases for downgrading:
    
    - a bug was discovered in the latest release
    - your code depends on a lower version which is not binary compatible
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. src/cmd/vet/vet_test.go

    			errchk(cmd, files, t)
    		})
    	}
    
    	// The loopclosure analyzer (aka "rangeloop" before CL 140578)
    	// is a no-op for files whose version >= go1.22, so we use a
    	// go.mod file in the rangeloop directory to "downgrade".
    	//
    	// TOOD(adonovan): delete when go1.21 goes away.
    	t.Run("loopclosure", func(t *testing.T) {
    		cmd := testenv.Command(t, testenv.GoToolPath(t), "vet", "-vettool="+vetPath(t), ".")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. pkg/registry/core/service/storage/alloc.go

    	if service.Spec.Type == api.ServiceTypeExternalName {
    		return nil
    	}
    
    	// We don't want to auto-upgrade (add an IP) or downgrade (remove an IP)
    	// PreferDualStack services following a cluster change to/from
    	// dual-stackness.
    	//
    	// That means a PreferDualStack service will only be upgraded/downgraded
    	// when:
    	// - changing ipFamilyPolicy to "RequireDualStack" or "SingleStack" AND
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
Back to top