Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 6,115 for version2 (0.17 sec)

  1. src/cmd/go/internal/modload/modfile.go

    	}
    	return summary.deprecated, nil
    }
    
    func replacement(mod module.Version, replace map[module.Version]module.Version) (fromVersion string, to module.Version, ok bool) {
    	if r, ok := replace[mod]; ok {
    		return mod.Version, r, true
    	}
    	if r, ok := replace[module.Version{Path: mod.Path}]; ok {
    		return "", r, true
    	}
    	return "", module.Version{}, false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  2. 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)
  3. cmd/bucket-lifecycle.go

    	}
    }
    
    // enqueueByNewerNoncurrent enqueues object versions expired by
    // NewerNoncurrentVersions limit for expiry.
    func (es *expiryState) enqueueByNewerNoncurrent(bucket string, versions []ObjectToDelete, lcEvent lifecycle.Event) {
    	if len(versions) == 0 {
    		return
    	}
    
    	task := newerNoncurrentTask{bucket: bucket, versions: versions, event: lcEvent}
    	wrkr := es.getWorkerCh(task.OpHash())
    	if wrkr == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

         * - Make all 'selected' component versions selectable.
         */
        public void clearSelection() {
            if (selected != null) {
                selected.removeOutgoingEdges();
            }
            for (ComponentState version : versions.values()) {
                if (version.isSelected()) {
                    version.makeSelectable();
                }
            }
    
            selected = null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top