Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for version1 (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/3rd-party-lib/boost_1_55_0/boost/version.hpp

    //  will cause a recompile every time a new boost version is
    //  released.
    //
    //  BOOST_VERSION % 100 is the patch level
    //  BOOST_VERSION / 100 % 1000 is the minor version
    //  BOOST_VERSION / 100000 is the major version
    
    #define BOOST_VERSION 105500
    
    //
    //  BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
    //  but as a *string* in the form "x_y[_z]" where x is the major version
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. pkg/ctrlz/topics/version.go

    	"istio.io/istio/pkg/ctrlz/topics/assets"
    	"istio.io/istio/pkg/version"
    )
    
    type versionTopic struct{}
    
    // VersionTopic returns a ControlZ topic that allows visualization of versioning info.
    func VersionTopic() fw.Topic {
    	return versionTopic{}
    }
    
    func (versionTopic) Title() string {
    	return "Version Info"
    }
    
    func (versionTopic) Prefix() string {
    	return "version"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top