Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,252 for semver (0.15 sec)

  1. tests/integration/helm/upgrade/helm_upgrade_test.go

    func initVersions(ctx resource.Context) error {
    	versionFromFile, err := env.ReadVersion()
    	if err != nil {
    		return err
    	}
    
    	v, err := semver.NewVersion(versionFromFile)
    	if err != nil {
    		return err
    	}
    
    	previousVersion := semver.New(v.Major(), v.Minor()-1, v.Patch(), v.Prerelease(), v.Metadata())
    
    	// If the previous version is not published yet, use the latest one
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 20:31:47 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/module/module.go

    	cv := semver.Canonical(v)
    	if semver.Build(v) == "+incompatible" {
    		cv += "+incompatible"
    	}
    	return cv
    }
    
    // Sort sorts the list by Path, breaking ties by comparing [Version] fields.
    // The Version fields are interpreted as semantic versions (using [semver.Compare])
    // optionally followed by a tie-breaking suffix introduced by a slash character,
    // like in "v0.0.1/go.mod".
    func Sort(list []Version) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. pkg/kube/kclient/crdwatcher.go

    	})
    	c.crds.AddEventHandler(controllers.ObjectHandler(c.queue.AddObject))
    	return c
    }
    
    var minimumCRDVersions = map[string]*semver.Version{
    	"grpcroutes.gateway.networking.k8s.io": semver.New(1, 1, 0, "", ""),
    }
    
    // minimumVersionFilter filters CRDs that do not meet a minimum "version".
    // Currently, we use this only for Gateway API CRD's, so we hardcode their versioning scheme.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. pkg/apis/resource/structured/namedresources/validation/validation_test.go

    		},
    		"version-bad": {
    			wantFailures: field.ErrorList{field.Invalid(field.NewPath("instances").Index(0).Child("attributes").Index(0).Child("version"), "1.0", "must be a string compatible with semver.org spec 2.0.0")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/coderepo.go

    			continue
    		}
    
    		if err := module.CheckPathMajor(v, r.pathMajor); err != nil {
    			if r.codeDir == "" && r.pathMajor == "" && semver.Major(v) > "v1" {
    				incompatible = append(incompatible, v)
    			}
    			continue
    		}
    
    		list = append(list, v)
    	}
    	semver.Sort(list)
    	semver.Sort(incompatible)
    
    	return r.appendIncompatibleVersions(ctx, tags.Origin, list, incompatible)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/codehost/codehost.go

    // in the Tags method's Origin calculation.
    // We can safely ignore tags that are not look like pseudo-versions,
    // because ../coderepo.go's (*codeRepo).Versions ignores them too.
    // We can also ignore non-semver tags, but we have to include semver
    // tags with extra suffixes, because the pseudo-version base finder uses them.
    func isOriginTag(tag string) bool {
    	// modfetch.(*codeRepo).Versions uses Canonical == tag,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. README.md

    <img src="https://github.com/kubernetes/kubernetes/raw/master/logo/logo.png" width="100">
    
    ----
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/ExperimentalOkHttpApi.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3
    
    /**
     * Marks declarations that are experimental and subject to change without following SemVer
     * conventions. Both binary and source-incompatible changes are possible, including complete removal
     * of the experimental API.
     *
     * Do not use these APIs in modules that may be executed using a version of OkHttp different from
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          }
        },
        "node_modules/npm-run-all/node_modules/semver": {
          "version": "5.7.2",
          "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
          "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
          "dev": true,
          "bin": {
            "semver": "bin/semver"
          }
        },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/go.mod

    	github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
    	github.com/beorn7/perks v1.0.1 // indirect
    	github.com/blang/semver/v4 v4.0.0 // indirect
    	github.com/cenkalti/backoff/v4 v4.2.1 // indirect
    	github.com/cespare/xxhash/v2 v2.2.0 // indirect
    	github.com/coreos/go-semver v0.3.1 // indirect
    	github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
    	github.com/dustin/go-humanize v1.0.1 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top