Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 479 for version1 (0.18 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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                        }
                        all {
                            assert it.target.version == '1.4'
                            assert it.target.module == it.requested.module
                            assert it.target.group == it.requested.group
                            it.useTarget group: it.requested.group, name: it.requested.module, version: '1.5'
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "default": ""
            },
            "versions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    				// versions older than what is listed in the go.mod file.
    				compatVersion = goVersion
    			}
    		}
    		if gover.Compare(compatVersion, goVersion) > 0 {
    			// Each version of the Go toolchain knows how to interpret go.mod and
    			// go.sum files produced by all previous versions, so a compatibility
    			// version higher than the go.mod version adds nothing.
    			compatVersion = goVersion
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    }
    
    // GroupVersion contains the "group/version" and "version" string of a version.
    // It is made a struct to keep extensibility.
    type GroupVersionForDiscovery struct {
    	// groupVersion specifies the API group and version in the form "group/version"
    	GroupVersion string `json:"groupVersion" protobuf:"bytes,1,opt,name=groupVersion"`
    	// version specifies the version in the form of "version". This is to save
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            }
    
            for (String key : versions.keySet()) {
                if (versions.get(key) == null && managedVersions.get(key) == null) {
                    InputLocation location = plugins.get(key).getLocation("");
                    problems.add(new ModelProblemCollectorRequest(Severity.WARNING, ModelProblem.Version.V20)
                            .setMessage("'build.plugins.plugin.version' for " + key + " is missing.")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"":                           "APIGroup contains the name, the supported versions, and the preferred version of a group.",
    	"name":                       "name is the name of the group.",
    	"versions":                   "versions are the versions supported in this group.",
    	"preferredVersion":           "preferredVersion is the version preferred by the API server, which probably is the storage version.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top