Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for Versions (0.22 sec)

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

    )
    
    type MainModuleSet struct {
    	// versions are the module.Version values of each of the main modules.
    	// For each of them, the Path fields are ordinary module paths and the Version
    	// fields are empty strings.
    	// versions is clipped (len=cap).
    	versions []module.Version
    
    	// modRoot maps each module in versions to its absolute filesystem path.
    	modRoot map[module.Version]string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. cmd/erasure-object.go

    		}
    		dg.Wait()
    	}
    	var dataDir string
    	var versions []byte
    	if err == nil {
    		versions = reduceCommonVersions(diskVersions, writeQuorum)
    		for index, dversions := range diskVersions {
    			if errs[index] != nil {
    				continue
    			}
    			if !bytes.Equal(dversions, versions) {
    				if len(dversions) > len(versions) {
    					versions = dversions
    				}
    				break
    			}
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    			if len(fivs.FreeVersions) > 0 {
    				res["free-versions"] = strconv.Itoa(len(fivs.FreeVersions))
    			}
    
    			if sizeS.versions > 0 {
    				res["versions"] = strconv.FormatUint(sizeS.versions, 10)
    			}
    			res["size"] = strconv.FormatInt(sizeS.totalSize, 10)
    			for name, tier := range sizeS.tiers {
    				res["tier-size-"+name] = strconv.FormatUint(tier.TotalSize, 10)
    				res["tier-versions-"+name] = strconv.Itoa(tier.NumVersions)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    				}
    				if len(packages) == 0 {
    					// curM at its original version contains a path matching q.pattern,
    					// but at rev.Version it does not, so (somewhat paradoxically) if
    					// we changed the version of curM it would no longer match the query.
    					var version any = m
    					if rev.Version != q.version {
    						version = fmt.Sprintf("%s@%s (%s)", m.Path, q.version, m.Version)
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== Earliest supported Develocity plugin version is 3.13.1
    
    Starting in Gradle 9.0, the earliest supported Develocity plugin version is 3.13.1.
    The plugin versions from 3.0 up to 3.13 will be ignored when applied.
    
    Upgrade to version 3.13.1 or later of the Develocity plugin.
    You can find the link:https://plugins.gradle.org/plugin/com.gradle.enterprise[latest available version on the Gradle Plugin Portal].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            }
    
            for (String key : versions.keySet()) {
                if (versions.get(key) == null && managedVersions.get(key) == null) {
                    InputLocation location = plugins.get(key).getLocation("");
                    problems.add(
                            Severity.WARNING,
                            ModelProblem.Version.V20,
                            "'build.plugins.plugin.version' for " + key + " is missing.",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  7. cmd/erasure-healing_test.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  8. configure.py

      environ_cp[var_name] = str(var)
    
    
    def convert_version_to_int(version):
      """Convert a version number to a integer that can be used to compare.
    
      Version strings of the form X.YZ and X.Y.Z-xxxxx are supported. The
      'xxxxx' part, for instance 'homebrew' on OS/X, is ignored.
    
      Args:
        version: a version to be converted
    
      Returns:
        An integer if converted successfully, otherwise return None.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. cmd/batch-handlers.go

    	var format, version uint16
    	switch {
    	case job.Replicate != nil:
    		version = batchReplVersionV1
    		format = batchReplFormat
    	case job.KeyRotate != nil:
    		version = batchKeyRotateVersionV1
    		format = batchKeyRotationFormat
    	case job.Expire != nil:
    		version = batchExpireVersionV1
    		format = batchExpireFormat
    	default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                validateVersionNoExpression("version", problems, Severity.WARNING, Version.V20, m.getVersion(), m);
                if (parent == null) {
                    validateStringNotEmpty("version", problems, Severity.FATAL, Version.V20, m.getVersion(), m);
                }
    
                validate20RawDependencies(problems, m.getDependencies(), "dependencies.dependency.", EMPTY, request);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top