Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 5,503 for version1 (0.19 sec)

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

    	// but should "no latest version" just return m instead?
    	Upgrade(m module.Version) (module.Version, error)
    }
    
    // A DowngradeReqs is a Reqs that can also identify available downgrades.
    type DowngradeReqs interface {
    	Reqs
    
    	// Previous returns the version of m.Path immediately prior to m.Version,
    	// or "none" if no such version is known.
    	Previous(m module.Version) (module.Version, error)
    }
    
    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/suppliers/CustomVersionListerWithSupplierIntegrationTest.groovy

                        if ($logQueries) { println("Listing versions for module \$id.name") }
                        repositoryResourceAccessor.withResource("\${id.group}/\${id.name}/metadata.json") {
                            def json = new JsonSlurper().parse(it, 'utf-8')
                            def versions = json.collect { it.version }
                            if ($logQueries) { println("Listed \$versions for \$id") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    						if existing.Versions[i].Version == v.Version {
    							existing.Versions[i] = v
    							break
    						}
    					}
    
    				} else {
    					// New group-version, just append
    					existing.Versions = append(existing.Versions, v)
    				}
    
    				sourcesUsed[gv] = key.source
    				groupsToUse[key.name] = existing
    			}
    			// Check to see if we have overlapping versions. If we do, take the one
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/coderepo.go

    			versions = versions[:i]
    			break
    		}
    	}
    	if len(versions) == 0 {
    		return func(string) bool { return false }, nil
    	}
    
    	var highest string
    	for i := len(versions) - 1; i >= 0; i-- {
    		v := versions[i]
    		if semver.Prerelease(v) == "" {
    			highest = v
    			break
    		}
    	}
    	if highest == "" {
    		highest = versions[len(versions)-1]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:replacement=<group>,<version>,<kind>" tags in types.go.
    func (in *MutatingWebhookConfiguration) APILifecycleReplacement() schema.GroupVersionKind {
    	return schema.GroupVersionKind{Group: "admissionregistration.k8s.io", Version: "v1", Kind: "MutatingWebhookConfiguration"}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_version_alignment.adoc

    - `jackson-core` version `2.9.5` (brought by `vertx-core`)
    - `jackson-databind` version `2.9.5` (by conflict resolution)
    - `jackson-annotation` version `2.9.0` (dependency of `jackson-databind:2.9.5`)
    
    It's easy to end up with a set of versions which do not work well together.
    To fix this, Gradle supports dependency version alignment, which is supported by the concept of platforms.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/extensions/v1beta1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:replacement=<group>,<version>,<kind>" tags in types.go.
    func (in *DaemonSetList) APILifecycleReplacement() schema.GroupVersionKind {
    	return schema.GroupVersionKind{Group: "apps", Version: "v1", Kind: "DaemonSetList"}
    }
    
    // APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 06 09:29:23 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/build.go

    			return
    		}
    
    		checksumOk := func(suffix string) bool {
    			return rs == nil || m.Version == "" || !mustHaveSums() ||
    				modfetch.HaveSum(module.Version{Path: m.Path, Version: m.Version + suffix})
    		}
    
    		mod := module.Version{Path: m.Path, Version: m.Version}
    
    		if m.Version != "" {
    			if old := reuse[mod]; old != nil {
    				if err := checkReuse(ctx, mod, old.Origin); err == nil {
    					*m = *old
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/ModuleVersionNotFoundExceptionTest.groovy

            expect:
            exception.message == toPlatformLineSeparators("""Could not find any version that matches org:a:1.+.
    Versions that do not match:
      - 0.9
      - 0.10
    Versions rejected by component selection rules: 1.2
    Versions rejected by attribute matching:
      - 1.1:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    1. *Released wrapper distributions:* Distributions and related version-specific caches corresponding to released versions (e.g., `4.6.2` or `8.0`).
    +
    Default retention for unused versions is 30 days.
    2. *Snapshot wrapper distributions:* Distributions and related version-specific caches corresponding to snapshot versions (e.g. `7.6-20221130141522+0000`).
    +
    Default retention for unused versions is 7 days.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top