Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 7,470 for Versions (0.27 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/version/version_test.go

    		{version: "1.0.0-beta.11"},
    		{version: "1.0.0-rc.1"},
    		{version: "1.0.0-x.7.z.92"},
    		{version: "1.0.0"},
    		{version: "1.0.0+20130313144700", equalsPrev: true},
    		{version: "1.8.0-alpha.3"},
    		{version: "1.8.0-alpha.3.673+73326ef01d2d7c"},
    		{version: "1.9.0"},
    		{version: "1.10.0"},
    		{version: "1.11.0"},
    		{version: "2.0.0"},
    		{version: "2.1.0"},
    		{version: "2.1.1"},
    		{version: "42.0.0"},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 19:25:29 UTC 2023
    - 13.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. 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)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    1. *Released wrapper distributions:* Distributions and related version-specific caches corresponding to released versions (e.g., `4.6.2` or `8.0`).
    +
    Default retention for unused versions is 30 days.
    2. *Snapshot wrapper distributions:* Distributions and related version-specific caches corresponding to snapshot versions (e.g. `7.6-20221130141522+0000`).
    +
    Default retention for unused versions is 7 days.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/api/admissionregistration/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *MutatingWebhookConfiguration) APILifecycleIntroduced() (major, minor int) {
    	return 1, 16
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *ClusterRole) APILifecycleIntroduced() (major, minor int) {
    	return 1, 8
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. api/discovery/aggregated_v2beta1.json

          },
          "versions": [
            {
              "freshness": "Current",
              "resources": [
                {
                  "categories": [
                    "api-extensions"
                  ],
                  "resource": "apiservices",
                  "responseKind": {
                    "group": "",
                    "kind": "APIService",
                    "version": ""
                  },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top