Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 6,115 for version1 (0.21 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsKitWindowsSdkLocatorTest.groovy

            def dir = tmpDir.createDir(name)
            versions.each { version ->
                PLATFORMS.each { dir.createFile("bin/${version}/${it}/rc.exe") }
                dir.createFile("Include/${version}/um/windows.h")
                PLATFORMS.each { dir.createFile("Lib/${version}/um/${it}/kernel32.lib") }
            }
            return dir
        }
    
        def badKitDir(String name, String... versions) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/edit.go

    	// requiring maps each not-yet-disqualified module version to the versions
    	// that would cause that module's requirements to be included in a pruned or
    	// unpruned context. If that version becomes disqualified, the
    	// disqualification will be propagated to all of the versions in the
    	// corresponding list.
    	//
    	// This map is similar to the module requirement graph, but includes more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                                            if (versions == null) {
                                                versions = source.retrieveAvailableVersions(metadataRequest);
                                                artifact.setAvailableVersions(versions);
                                            }
    
                                            Collections.sort(versions);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 36.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper.go

    	mappings := make([]*RESTMapping, 0)
    	potentialGVK := make([]schema.GroupVersionKind, 0)
    	hadVersion := false
    
    	// Pick an appropriate version
    	for _, version := range versions {
    		if len(version) == 0 || version == runtime.APIVersionInternal {
    			continue
    		}
    		currGVK := gk.WithVersion(version)
    		hadVersion = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 01:55:47 UTC 2021
    - 16.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // versions is the list of all API versions of the defined custom resource.
      // Optional if `version` is specified.
      // The name of the first item in the `versions` list must match the `version` field if `version` and `versions` are both specified.
      // Version names are used to compute the order in which served versions are listed in API discovery.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    Resolved versions::
    This strategy publishes the versions that were resolved during the build, possibly by applying resolution rules and automatic conflict resolution.
    This has the advantage that the published versions correspond to the ones the published artifact was tested against.
    
    Example use cases for resolved versions:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storageversion/manager.go

    	var versions []string
    	for _, decodableVersions := range directlyDecodableVersions {
    		versions = append(versions, decodableVersions.String())
    	}
    
    	decodingGVRs := e.EquivalentResourcesFor(gr.WithVersion(""), "")
    	for _, v := range decodingGVRs {
    		found := false
    		for _, existingVersion := range versions {
    			if existingVersion == v.GroupVersion().String() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:47:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

         * to use the right version.
         */
        def "can select the latest.#status version having release status"() {
            given:
            def versions = [
                '1': 'release',
                '2': 'milestone',
                '3': 'integration',
                '4': 'release',
                '5': 'integration'
            ]
            repository {
                versions.each { String version, String s ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/reproducibility/FailOnDynamicVersionsResolveIntegrationTest.groovy

            fails ':checkDeps'
    
            then:
            failure.assertHasCause("Could not resolve org:test:$selector1: Resolution strategy disallows usage of dynamic versions")
            failure.assertHasCause("Could not resolve org:test:$selector2: Resolution strategy disallows usage of dynamic versions")
    
            where:
            selector1        | selector2
            '[1.0, 2.0['     | '[1.0, 1.5['
            latestNotation() | '1.1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

         *         of this version range and the specified version range if both version ranges have
         *         restrictions. Otherwise, the restrictions on the returned range will be empty.
         *         </p>
         *         <p>
         *         The recommended version of the returned version range will be the recommended version of
         *         this version range, provided that ranges falls within the intersected restrictions. If
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top