Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 216 for downgraded (0.35 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/proxy/serviceport.go

    	}
    
    	// filter external ips, source ranges and ingress ips
    	// prior to dual stack services, this was considered an error, but with dual stack
    	// services, this is actually expected. Hence we downgraded from reporting by events
    	// to just log lines with high verbosity
    	ipFamilyMap := proxyutil.MapIPsByIPFamily(service.Spec.ExternalIPs)
    	info.externalIPs = ipFamilyMap[ipFamily]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. 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)
  9. operator/cmd/mesh/install.go

    				revisionWarning = ""
    			}
    			if icpTag < tag {
    				p.Printf("%s Istio is being upgraded from %s to %s.\n"+revisionWarning+check,
    					warnMarker, icpTag, tag)
    			} else {
    				p.Printf("%s Istio is being downgraded from %s to %s.\n"+revisionWarning+check,
    					warnMarker, icpTag, tag)
    			}
    		}
    	}
    	return nil
    }
    
    // GetTagVersion returns istio tag version
    func GetTagVersion(tagInfo string) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/get.go

    				v := module.Version{Path: q.pattern}
    				// The user has explicitly requested to downgrade their own module to
    				// version "none". This is not an entirely unreasonable request: it
    				// could plausibly mean “downgrade away everything that depends on any
    				// explicit version of the main module”, or “downgrade away the
    				// package with the same path as the main module, found in a module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top