Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,315 for semver (0.16 sec)

  1. LICENSES/vendor/github.com/blang/semver/v4/LICENSE

    = vendor/github.com/blang/semver/v4 licensed under: =
    
    The MIT License
    
    Copyright (c) 2014 Benedikt Lang <github at benediktlang.de>
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_exclude_go121.txt

    # go.dev/issue/60028: use semver sort in exclude block in 1.21
    cp $WORK/go.mod.badfmtexclude go.mod
    go mod edit -go=1.20
    cmp go.mod $WORK/go.mod.goodfmtexclude120
    go mod edit -go=1.21
    cmp go.mod $WORK/go.mod.goodfmtexclude121
    
    -- $WORK/go.mod.badfmtexclude --
    module     x.x/y/z
    exclude  (
    	x.1   v1.11.0
    	x.1    v1.10.0
    	x.1     v1.9.0
    )
    -- $WORK/go.mod.goodfmtexclude120 --
    module x.x/y/z
    
    go 1.20
    
    exclude (
    	x.1 v1.10.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 17:26:48 UTC 2023
    - 563 bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/parse.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cpu
    
    import "strconv"
    
    // parseRelease parses a dot-separated version number. It follows the semver
    // syntax, but allows the minor and patch versions to be elided.
    //
    // This is a copy of the Go runtime's parseRelease from
    // https://golang.org/cl/209597.
    func parseRelease(rel string) (major, minor, patch int, ok bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 17:48:21 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. src/internal/gover/gover.go

    // Package gover implements support for Go toolchain versions like 1.21.0 and 1.21rc1.
    // (For historical reasons, Go does not use semver for its toolchains.)
    // This package provides the same basic analysis that golang.org/x/mod/semver does for semver.
    //
    // The go/version package should be imported instead of this one when possible.
    // Note that this package works on "1.21" while go/version works on "go1.21".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. cluster/images/etcd/migrate/data_dir_test.go

    limitations under the License.
    */
    
    package main
    
    import (
    	"os"
    	"path/filepath"
    	"testing"
    
    	"github.com/blang/semver/v4"
    )
    
    var (
    	latestVersion = semver.MustParse("3.1.12")
    )
    
    func TestExistingDataDirWithVersionFile(t *testing.T) {
    	d, err := OpenOrCreateDataDirectory("testdata/datadir_with_version")
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/vendor.go

    	"errors"
    	"fmt"
    	"io/fs"
    	"os"
    	"path/filepath"
    	"strings"
    	"sync"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/gover"
    
    	"golang.org/x/mod/modfile"
    	"golang.org/x/mod/module"
    	"golang.org/x/mod/semver"
    )
    
    var (
    	vendorOnce      sync.Once
    	vendorList      []module.Version          // modules that contribute packages to the build, in order of appearance
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/test/fixtures/VersionCoverage.groovy

        }
    
        /**
         * Filters the given versions to those that are between the given closed-open bounds. This is useful for semver-range-like behavior.
         *
         * @param versionsToFilter the versions to filter
         * @param from the lower bound, inclusive
         * @param to the upper bound, exclusive
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 06 16:42:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. cluster/images/etcd/migrate/migrator.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package main
    
    import (
    	"fmt"
    	"os"
    	"time"
    
    	"github.com/blang/semver/v4"
    	"k8s.io/klog/v2"
    )
    
    // EtcdMigrateCfg provides all configuration required to perform etcd data upgrade/downgrade migrations.
    type EtcdMigrateCfg struct {
    	binPath           string
    	name              string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 6.4K bytes
    - Viewed (0)
Back to top