Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for version1 (0.3 sec)

  1. 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)
  2. pkg/test/framework/resource/version.go

    }
    
    // Minimum returns the minimum version from the revision-version mapping.
    func (rv *RevVerMap) Minimum() IstioVersion {
    	return rv.Versions().Minimum()
    }
    
    // Maximum returns the maximum version from the revision-version mapping.
    func (rv *RevVerMap) Maximum() IstioVersion {
    	return rv.Versions().Maximum()
    }
    
    // AtLeast returns true if the minimum Istio version under test is at least the given version.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/version.go

    )
    
    // allowVersion reports whether the current package at the given position
    // is allowed to use version v. If the position is unknown, the specified
    // module version (Config.GoVersion) is used. If that version is invalid,
    // allowVersion returns true.
    func (check *Checker) allowVersion(at poser, v goVersion) bool {
    	fileVersion := check.conf.GoVersion
    	if pos := at.Pos(); pos.IsKnown() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. docs/fr/docs/deployment/versions.md

    ## Versions disponibles
    
    Vous pouvez consulter les versions disponibles (par exemple, pour vérifier quelle est la dernière version en date) dans les [Notes de version](../release-notes.md){.internal-link target=_blank}.
    
    ## À propos des versions
    
    Suivant les conventions de versionnage sémantique, toute version inférieure à `1.0.0` peut potentiellement ajouter
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Oct 31 17:39:54 UTC 2022
    - 4K bytes
    - Viewed (0)
  5. hack/lib/version.sh

    #    KUBE_GIT_VERSION - "vX.Y" used to indicate the last release version.
    #    KUBE_GIT_MAJOR - The major part of the version
    #    KUBE_GIT_MINOR - The minor component of the version
    
    # Grovels through git to set a set of env variables.
    #
    # If KUBE_GIT_VERSION_FILE, this function will load from that file instead of
    # querying git.
    kube::version::get_version_vars() {
      if [[ -n ${KUBE_GIT_VERSION_FILE-} ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:09 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. istioctl/pkg/install/k8sversion/version.go

    		"Proceeding with the installation, but you might experience problems. " +
    		"See https://istio.io/latest/docs/releases/supported-releases/ for a list of supported versions.\n"
    )
    
    // CheckKubernetesVersion checks if this Istio version is supported in the k8s version
    func CheckKubernetesVersion(versionInfo *version.Info) (bool, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 02:07:51 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. docs/de/docs/deployment/versions.md

    ## Verfügbare Versionen
    
    Die verfügbaren Versionen können Sie in den [Release Notes](../release-notes.md){.internal-link target=_blank} einsehen (z. B. um zu überprüfen, welches die neueste Version ist).
    
    ## Über Versionen
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:06:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/gover/version.go

    	// goStrictVersion is the Go version at which the Go versions
    	// became "strict" in the sense that, restricted to modules at this version
    	// or later, every module must have a go version line ≥ all its dependencies.
    	// It is also the version after which "too new" a version is considered a fatal error.
    	GoStrictVersion = "1.21"
    
    	// ExplicitModulesTxtImportVersion is the Go version at which vendored packages need to be present
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/go/types/version.go

    )
    
    // allowVersion reports whether the current package at the given position
    // is allowed to use version v. If the position is unknown, the specified
    // module version (Config.GoVersion) is used. If that version is invalid,
    // allowVersion returns true.
    func (check *Checker) allowVersion(at positioner, v goVersion) bool {
    	fileVersion := check.conf.GoVersion
    	if pos := at.Pos(); pos.IsValid() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 23:12:40 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. istioctl/pkg/version/version.go

      istioctl x version
    
      # Retrieve version information directly from the control plane, using RSA certificate security
      # (Certificates must be obtained before this step.  The --cert-dir flag lets istioctl bypass the Kubernetes API server.)
      istioctl x version --xds-address istio.example.com:15012 --cert-dir ~/.istio-certs
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top