Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 217 for mincore (0.12 sec)

  1. pkg/test/framework/components/cluster/topology.go

    	c.ConfigClusterName = configClusterName
    	return c
    }
    
    func (c Topology) MinKubeVersion(minor uint) bool {
    	cluster := c.AllClusters[c.ClusterName]
    	return kube.IsAtLeastVersion(cluster, minor)
    }
    
    func (c Topology) MaxKubeVersion(minor uint) bool {
    	cluster := c.AllClusters[c.ClusterName]
    	return kube.IsLessThanVersion(cluster, minor+1)
    }
    
    func (c Topology) String() string {
    	buf := &bytes.Buffer{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. doc/next/6-stdlib/99-minor/0-heading.md

    ### Minor changes to the library {#minor_library_changes}...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 16:44:53 UTC 2024
    - 60 bytes
    - Viewed (0)
  3. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/ReleasedVersionsDetails.kt

            // Only use latest patch release of each Gradle version
            allTestedVersions = testedVersions.map { VersionNumber.parse(it.gradleVersion().version) }
                .groupBy { "${it.major}.${it.minor}" }
                .map { (_, v) -> v.maxOrNull()!!.format() }
    
            // Limit to first and last release of each major version
            mainTestedVersions = testedVersions.map { VersionNumber.parse(it.gradleVersion().version) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. docs/es/docs/deployment/versions.md

    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    En versiones <abbr title="versiones menores">"MINOR"</abbr> son añadidas nuevas características y posibles <abbr title="Cambios que rompen posibles funcionalidades o compatibilidad">breaking changes</abbr>.
    
    !!! tip
        La versión "MINOR" es el número en el medio, por ejemplo, en `0.2.3`, la <abbr title="versión menor">"MINOR" version</abbr> es `2`.
    
    ## Actualizando las versiones de FastAPI
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 07 11:55:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    //
    // Files in the "minor changes" directory (the unique directory matching the glob
    // "*stdlib/*minor") are named after the package to which they refer, and will have
    // the package heading inserted automatically and links to other standard library
    // symbols expanded automatically. For example, if a file *stdlib/minor/bytes/f.md
    // contains the text
    //
    //	[Reader] implements [io.Reader].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/internal/syscall/unix/kernel_version_other.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !linux && !solaris
    
    package unix
    
    func KernelVersion() (major int, minor int) {
    	return 0, 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 266 bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/version.go

    	// but the remote Minor is bigger use the client version release. This handles Major bumps too.
    	if verClient.Major() < verRemote.Major() ||
    		(verClient.Major() == verRemote.Major()) && verClient.Minor() < verRemote.Minor() {
    		estimatedRelease := fmt.Sprintf("stable-%d.%d", verClient.Major(), verClient.Minor())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:50:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. src/internal/syscall/windows/version_windows.go

    // According to documentation, RtlGetVersion function always succeeds.
    //sys	rtlGetVersion(info *_OSVERSIONINFOW) = ntdll.RtlGetVersion
    
    // version retrieves the major, minor, and build version numbers
    // of the current Windows OS from the RtlGetVersion API.
    func version() (major, minor, build uint32) {
    	info := _OSVERSIONINFOW{}
    	info.osVersionInfoSize = uint32(unsafe.Sizeof(info))
    	rtlGetVersion(&info)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. docs/de/docs/deployment/versions.md

    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    Nicht abwärtskompatible Änderungen und neue Funktionen werden in „MINOR“-Versionen hinzugefügt.
    
    !!! tip "Tipp"
        „MINOR“ ist die Zahl in der Mitte, zum Beispiel ist in `0.2.3` die MINOR-Version `2`.
    
    ## Upgrade der FastAPI-Versionen
    
    Sie sollten Tests für Ihre Anwendung hinzufügen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:06:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. settings.gradle.kts

     * 	...
     * ```
     */
    fun isKnownBrokenIntelliJ(): Boolean {
      val ideaVersionString = System.getProperty("idea.version") ?: return false
    
      return try {
        val (major, minor, _) = ideaVersionString.split(".", limit = 3)
        KotlinVersion(major.toInt(), minor.toInt()) < KotlinVersion(2023, 2)
      } catch (e: Exception) {
        false // Unknown version, presumably compatible.
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Apr 14 14:24:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top