Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 8,364 for Versions (0.31 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GradleVersionsPluginSmokeTest.groovy

            result.output.contains("- log4j:log4j [1.2.14 -> 1.2.17]")
    
            file("build/dependencyUpdates/report.txt").exists()
        }
    
        @Override
        Map<String, Versions> getPluginsToValidate() {
            [
                'com.github.ben-manes.versions': Versions.of(TestedVersions.gradleVersions)
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    // limitations under the License.
    
    [[single-version-declarations]]
    = Declaring Versions and Ranges
    
    The simplest version declaration is a _simple string_ representing the version to use.
    Gradle supports different ways of declaring a version string:
    
    * An exact version: e.g. `1.3`, `1.3.0-beta3`, `1.0-20150201.131010-1`
    * A Maven-style version range: e.g. `[1.0,)`, `[1.1, 2.0)`, `(1.2, 1.5]`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/cache/internal/UsedGradleVersionsFromGradleUserHomeCachesTest.groovy

            cacheBaseDir.createDir("ZZZZ")
    
            when:
            def versions = versions.getUsedGradleVersions()
    
            then:
            versions as List == [
                GradleVersion.version("0.9-20101220110000+1100"),
                GradleVersion.version("1.2.3-rc-1"),
                GradleVersion.version("2.3.4")
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 09 20:22:44 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1alpha1/zz_generated.prerelease-lifecycle.go

    // APILifecycleReplacement is an autogenerated function, returning the group, version, and kind that should be used instead of this deprecated type.
    // It is controlled by "k8s:prerelease-lifecycle-gen:replacement=<group>,<version>,<kind>" tags in types.go.
    func (in *CSIStorageCapacity) APILifecycleReplacement() schema.GroupVersionKind {
    	return schema.GroupVersionKind{Group: "storage.k8s.io", Version: "v1beta1", Kind: "CSIStorageCapacity"}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/ivy-publish/descriptor-customization/groovy/build.gradle

    plugins {
        id 'ivy-publish'
    }
    
    group = 'org.gradle.sample'
    version = '1.0'
    
    publishing {
    // tag::customize-descriptor[]
    // tag::versions-resolved[]
        publications {
            ivyCustom(IvyPublication) {
    // end::versions-resolved[]
                descriptor {
                    license {
                        name = 'The Apache License, Version 2.0'
                        url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. cmd/testdata/xl-meta-consist.zip

    1/xl.meta XL2 Æ b ¨Versions‘‚¤Type ¥V2ObjÞ ¢IDÄ ¤DDirÄ ÔLã°ê8EÒŸˆ”Ù Sé6¦EcAlgo £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDistš ¨CSumAlgo ¨PartNums‘ ©PartETags‘ ©PartSizes‘Ò 'ªPartASizes‘Ò '¤SizeÒ 'Â¥MTimeÓ ¿W '’žÉ§MetaSys ¼X-Minio-Internal-actual-sizeÄ 141250§MetaUsr‚¤etagÙ"51fe09d68bacc8c5a68a-1¬content-type¸application/octet-streamÎöa‰ 10/xl.meta XL2 Æ b ¨Versions‘‚¤Type ¥V2ObjÞ ¢IDÄ ¤DDirÄ ÔLã°ê8EÒŸˆ”Ù Sé6¦EcAlgo £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDistš ¨CSumAlgo ¨PartNums‘ ©PartETags‘ ©PartSizes‘Ò 'ªPartASizes‘Ò...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 19 18:48:00 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/DefaultBuildableModuleVersionListingResolveResult.java

            assertHasResult();
            return versions;
        }
    
        @Override
        public ModuleVersionResolveException getFailure() {
            assertHasResult();
            return failure;
        }
    
        @Override
        public void listed(Collection<String> versions) {
            reset(State.Listed);
            this.versions = ImmutableSet.copyOf(versions);
            this.authoritative = true;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/rich_versions.adoc

    // limitations under the License.
    
    [[rich-version-constraints]]
    = Declaring Rich Versions
    
    Gradle supports a rich model for declaring versions, which allows to combine different level of version information.
    The terms and their meaning are explained below, from the strongest to the weakest:
    
    [[sec:strict-version]]
    `strictly`::
    Any version not matched by this version notation will be excluded.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/dra/plugin/plugin_test.go

    		handler     func() *RegistrationHandler
    		pluginName  string
    		endpoint    string
    		versions    []string
    		shouldError bool
    	}{
    		{
    			description: "no versions provided",
    			handler:     newRegistrationHandler,
    			shouldError: true,
    		},
    		{
    			description: "unsupported version",
    			handler:     newRegistrationHandler,
    			versions:    []string{"v2.0.0"},
    			shouldError: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. src/internal/trace/version/version.go

    // license that can be found in the LICENSE file.
    
    package version
    
    import (
    	"fmt"
    	"io"
    
    	"internal/trace/event"
    	"internal/trace/event/go122"
    )
    
    // Version represents the version of a trace file.
    type Version uint32
    
    const (
    	Go111   Version = 11
    	Go119   Version = 19
    	Go121   Version = 21
    	Go122   Version = 22
    	Go123   Version = 23
    	Current         = Go123
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top