Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 237 for minors (0.27 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. okhttp/src/jvmTest/kotlin/okhttp3/ConscryptTest.kt

        assertTrue(ConscryptPlatform.atLeastVersion(version.major(), version.minor()))
        assertTrue(ConscryptPlatform.atLeastVersion(version.major(), version.minor(), version.patch()))
        assertFalse(ConscryptPlatform.atLeastVersion(version.major(), version.minor(), version.patch() + 1))
        assertFalse(ConscryptPlatform.atLeastVersion(version.major(), version.minor() + 1))
        assertFalse(ConscryptPlatform.atLeastVersion(version.major() + 1))
      }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Dec 27 13:39:56 GMT 2024
    - 3.1K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ReleaseHighlightsGenerator.java

            if (version.getMinor() > 0) {
                final int major = version.getMajor();
                for (int minor = version.getMinor(); minor >= 0; minor--) {
                    String majorMinor = major + "." + minor;
                    String fileSuffix = "";
                    if (major == 7 && minor < 7) {
                        fileSuffix = "-" + majorMinor + ".0";
                    }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 14:45:41 GMT 2021
    - 2.8K bytes
    - Click Count (0)
  3. internal/disk/stat_linux.go

    	err = syscall.Stat(path, &st)
    	if err != nil {
    		return Info{}, err
    	}
    	//nolint:unconvert
    	devID := uint64(st.Dev) // Needed to support multiple GOARCHs
    	info.Major = unix.Major(devID)
    	info.Minor = unix.Minor(devID)
    
    	// Check for overflows.
    	// https://github.com/minio/minio/issues/8035
    	// XFS can show wrong values at times error out
    	// in such scenarios.
    	if info.Free > info.Total {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 4.8K bytes
    - Click Count (0)
  4. okhttp/src/jvmMain/kotlin/okhttp3/internal/platform/ConscryptPlatform.kt

        fun atLeastVersion(
          major: Int,
          minor: Int = 0,
          patch: Int = 0,
        ): Boolean {
          val conscryptVersion = Conscrypt.version() ?: return false
    
          if (conscryptVersion.major() != major) {
            return conscryptVersion.major() > major
          }
    
          if (conscryptVersion.minor() != minor) {
            return conscryptVersion.minor() > minor
          }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  5. docs/tr/docs/deployment/versions.md

    ///
    
    Dolayısıyla şu şekilde bir sürüme sabitleyebilmelisiniz:
    
    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    Breaking change'ler ve yeni özellikler "MINOR" sürümlerde eklenir.
    
    /// tip | İpucu
    
    "MINOR" ortadaki sayıdır. Örneğin `0.2.3` içinde MINOR sürümü `2`'dir.
    
    ///
    
    ## FastAPI Sürümlerini Yükseltme { #upgrading-the-fastapi-versions }
    
    Uygulamanız için test'ler eklemelisiniz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  6. docs/uk/docs/deployment/versions.md

    ///
    
    Тож ви можете зафіксувати версію так:
    
    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    Несумісні зміни та нові можливості додаються у «MINOR»-версіях.
    
    /// tip | Порада
    
    «MINOR» - це число посередині, наприклад, у `0.2.3` MINOR-версія - це `2`.
    
    ///
    
    ## Оновлення версій FastAPI { #upgrading-the-fastapi-versions }
    
    Ви повинні додати тести для вашого застосунку.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 5.4K bytes
    - Click Count (0)
  7. src/main/java/jcifs/dcerpc/DcerpcBinding.java

            return this.uuid;
        }
    
        /**
         * @return the major
         */
        int getMajor() {
            return this.major;
        }
    
        /**
         * @return the minor
         */
        int getMinor() {
            return this.minor;
        }
    
        void setOption(final String key, final Object val) throws DcerpcException {
            if (key.equals("endpoint")) {
                this.endpoint = val.toString();
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 5K bytes
    - Click Count (0)
  8. build-tools-internal/src/main/resources/templates/release-notes.asciidoc

    %>[[release-notes-$unqualifiedVersion]]
    == {es} version ${unqualifiedVersion}
    <% if (version.isSnapshot()) { %>
    coming[$unqualifiedVersion]
    <% } %>
    Also see <<breaking-changes-${ version.major }.${ version.minor },Breaking changes in ${ version.major }.${ version.minor }>>.
    <% if (changelogsByVersionByTypeByArea[version]["security"] != null) { %>
    [discrete]
    [[security-updates-${unqualifiedVersion}]]
    === Security updates
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 1.7K bytes
    - Click Count (0)
  9. src/test/java/jcifs/dcerpc/DcerpcBindingTest.java

            assertNull(dcerpcBinding.getUuid(), "UUID should be null initially.");
            assertEquals(0, dcerpcBinding.getMajor(), "Major version should be 0 initially.");
            assertEquals(0, dcerpcBinding.getMinor(), "Minor version should be 0 initially.");
        }
    
        @Test
        void testSetOptionEndpointValidPipe() throws DcerpcException {
            String endpoint = "\\pipe\\srvsvc";
            dcerpcBinding.setOption("endpoint", endpoint);
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 8.5K bytes
    - Click Count (0)
  10. internal/disk/disk.go

    // Ffree - free inodes available
    // FSType - file system type
    // Major - major dev id
    // Minor - minor dev id
    // Devname - device name
    type Info struct {
    	Total      uint64
    	Free       uint64
    	Used       uint64
    	Files      uint64
    	Ffree      uint64
    	FSType     string
    	Major      uint32
    	Minor      uint32
    	Name       string
    	Rotational *bool
    	NRRequests uint64
    }
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon Feb 26 19:34:50 GMT 2024
    - 1.7K bytes
    - Click Count (0)
Back to Top