Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,461 for semver (0.49 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. okhttp/src/main/kotlin/okhttp3/OkHttp.kt

       *
       * Note that OkHttp's runtime version may be different from the version specified in your
       * project's build file due to the dependency resolution features of your build tool.
       *
       * [semver]: https://semver.org
       */
      @Suppress("MayBeConstant") // Non-const so external callers get the runtime version.
      @JvmField
      val VERSION = CONST_VERSION
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/gover/gover.go

    // (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.
    // It also provides some helpers for extracting versions from go.mod files
    // and for dealing with module.Versions that may use Go versions or semver
    // depending on the module path.
    package gover
    
    import (
    	"internal/gover"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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. 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