Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for version2 (0.19 sec)

  1. 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)
  2. 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)
  3. docs/es/docs/deployment/versions.md

    fastapi>=0.45.0,<0.46.0
    ```
    
    esto significa que usarás la versión `0.45.0` o superiores, pero menores a la versión `0.46.0`, por ejemplo, la versión `0.45.2` sería aceptada.
    
    Si usas cualquier otra herramienta para manejar tus instalaciones, como Poetry, Pipenv, u otras, todas tienen una forma que puedes usar para definir versiones específicas para tus paquetes.
    
    ## Versiones disponibles
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 07 11:55:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/version.txt

    go version
    stdout '^go version'
    
    # Flags without files, or paths to missing files, should error.
    ! go version missing.exe
    ! go version -m
    stderr 'with arguments'
    ! go version -v
    stderr 'with arguments'
    
    # Check that 'go version' succeed even when it does not contain Go build info.
    # It should print an error if the file has a known Go binary extension.
    #
    go version empty.txt
    ! stdout .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 14:52:04 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/version.go

    	"github.com/spf13/cobra"
    
    	apimachineryversion "k8s.io/apimachinery/pkg/version"
    	"k8s.io/component-base/version"
    	"k8s.io/klog/v2"
    	"sigs.k8s.io/yaml"
    )
    
    // Version provides the version information of kubeadm.
    type Version struct {
    	ClientVersion *apimachineryversion.Info `json:"clientVersion"`
    }
    
    // newCmdVersion provides the version information of kubeadm.
    func newCmdVersion(out io.Writer) *cobra.Command {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/Version.java

    /**
     * A parsed version.
     *
     * This should be synced with {@link VersionNumber} and {@link org.gradle.util.GradleVersion} at some point.
     */
    public interface Version {
        /**
         * Returns the original {@link String} representation of the version.
         */
        String getSource();
    
        /**
         * Returns all the parts of this version. e.g. 1.2.3 returns [1,2,3] or 1.2-beta4 returns [1,2,beta,4].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. pkg/kube/version.go

    // limitations under the License.
    
    package kube
    
    import (
    	"fmt"
    	"strconv"
    
    	"k8s.io/apimachinery/pkg/util/version"
    	kubeVersion "k8s.io/apimachinery/pkg/version"
    )
    
    // IsAtLeastVersion returns true if the client is at least the specified version.
    // For example, on Kubernetes v1.15.2, IsAtLeastVersion(13) == true, IsAtLeastVersion(17) == false
    func IsAtLeastVersion(client Client, minorVersion uint) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 23:16:29 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. operator/version/version.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package version
    
    import (
    	"time"
    
    	pkgversion "istio.io/istio/operator/pkg/version"
    	buildversion "istio.io/istio/pkg/version"
    )
    
    const (
    	// OperatorCodeBaseVersion is the version string from the code base.
    	OperatorCodeBaseVersion = "1.23.0"
    	OperatorEOLYear         = 2025
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. pkg/config/resource/version.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package resource
    
    // Version is the version identifier of a resource.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 676 bytes
    - Viewed (0)
  10. pkg/util/kernel/version.go

    	"os"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/util/version"
    )
    
    type readFileFunc func(string) ([]byte, error)
    
    // GetVersion returns currently running kernel version.
    func GetVersion() (*version.Version, error) {
    	return getVersion(os.ReadFile)
    }
    
    // getVersion reads os release file from the give readFile function.
    func getVersion(readFile readFileFunc) (*version.Version, error) {
    	kernelVersionFile := "/proc/sys/kernel/osrelease"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 19:24:34 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top