Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for Versions (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    For example you might want to always integrate the latest version of a dependency to consume cutting edge features at any given time.
    A _dynamic version_ allows for resolving the latest version or the latest version of a version range for a given module.
    
    CAUTION: Using dynamic versions in a build bears the risk of potentially breaking it. As soon as a new version of the dependency is released that contains an incompatible API change your source code might stop compiling.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

            boolean searchPerformed = false;
    
            if (versions.releaseVersion != null && !versions.releaseVersion.isEmpty()) {
                version = versions.releaseVersion;
                repo = versions.releaseRepository;
            } else if (versions.latestVersion != null && !versions.latestVersion.isEmpty()) {
                version = versions.latestVersion;
                repo = versions.latestRepository;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 09 20:17:59 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/versions/ReleasedVersionDistributionsTest.groovy

            version('2.5')   | version('2.4')  | 'existing version with major and minor attribute'
            version('2.2.1') | version('2.2')  | 'existing version with major, minor and patch attribute'
            version('0.8')   | null            | 'first released version'
            version('0.1')   | null            | 'version that does not exist'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/conversion.go

    		return err
    	}
    
    	if len(out.Versions) == 0 {
    		return nil
    	}
    
    	// Copy versions[0] to version
    	out.Version = out.Versions[0].Name
    
    	// If versions[*].{subresources,schema,additionalPrinterColumns,selectableFields} are identical, move to spec
    	subresources := out.Versions[0].Subresources
    	subresourcesIdentical := true
    	validation := out.Versions[0].Schema
    	validationIdentical := true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

        }
    
        static class Versions implements Iterable<String> {
            static Versions of(String... versions) {
                new Versions(versions)
            }
    
            final List<String> versions
    
            private Versions(String... given) {
                versions = Arrays.asList(given)
            }
    
            @Override
            Iterator<String> iterator() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/BaselineVersionResolver.groovy

                if (release.version.version == requested) {
                    return release
                }
                if (!release.version.snapshot && release.version.baseVersion.version == requested && (best == null || best.version < release.version)) {
                    best = release
                }
            }
    
            best
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/conversion_test.go

    					Version: "v1",
    				},
    			},
    			Out: &CustomResourceDefinition{},
    			ExpectOut: &CustomResourceDefinition{
    				Spec: CustomResourceDefinitionSpec{
    					Versions: []CustomResourceDefinitionVersion{{Name: "v1", Served: true, Storage: true}},
    				},
    			},
    		},
    		{
    			Name: "internal to v1, multiple versions",
    			In: &apiextensions.CustomResourceDefinition{
    				Spec: apiextensions.CustomResourceDefinitionSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 29.2K 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. subprojects/core-api/src/main/java/org/gradle/api/artifacts/MutableVersionConstraint.java

         * <p>
         * This clears any set rejected versions.
         *
         * @param version the preferred version of this module
         */
        void prefer(String version);
    
        /**
         * Declares a list of rejected versions. If such a version is found during dependency resolution, it will not
         * be selected. This term supports dynamic versions.
         *
         * @param versions the rejected versions
         *
         * @since 4.5
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 30 23:02:48 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/VersionCatalogDependencyRegistryTest.groovy

            then:
            registry.versions.size() == 1
            registry.libraries.size() == 1
            registry.versions[0].alias == "group-artifact"
            registry.versions[0].module == "group:artifact"
            registry.versions[0].version == "1.1"
            registry.libraries[0].alias == "group-artifact"
            registry.libraries[0].module == "group:artifact"
            registry.libraries[0].version == "1.1"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top