Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 290 for minors (0.05 seconds)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionDownloadPluginFuncTest.groovy

            settingsFile << """
            include ':distribution:bwc:minor'
            """
            def bwcSubProjectFolder = testProjectDir.newFolder("distribution", "bwc", "minor")
            new File(bwcSubProjectFolder, 'bwc-marker.txt') << "bwc=minor"
            new File(bwcSubProjectFolder, 'build.gradle') << """
                apply plugin:'base'
    
                // packed distro
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.7K bytes
    - Click Count (0)
  6. 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)
  7. docs/en/docs/deployment/versions.md

    ///
    
    So, you should be able to pin to a version like:
    
    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    Breaking changes and new features are added in "MINOR" versions.
    
    /// tip
    
    The "MINOR" is the number in the middle, for example, in `0.2.3`, the MINOR version is `2`.
    
    ///
    
    ## Upgrading the FastAPI versions { #upgrading-the-fastapi-versions }
    
    You should add tests for your app.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  8. docs/debugging/inspect/export.go

    	decode := func(r io.Reader, file string) ([]byte, error) {
    		b, e := io.ReadAll(r)
    		if e != nil {
    			return nil, e
    		}
    		b, _, minor, e := checkXL2V1(b)
    		if e != nil {
    			return nil, e
    		}
    
    		buf := bytes.NewBuffer(nil)
    		var data xlMetaInlineData
    		switch minor {
    		case 0:
    			_, e = msgp.CopyToJSON(buf, bytes.NewReader(b))
    			if e != nil {
    				return nil, e
    			}
    		case 1, 2:
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 9.2K bytes
    - Click Count (1)
  9. .github/dependabot.yml

        directory: /ci/devinfra/docker_windows
        schedule:
          interval: monthly
        ignore:
          - dependency-name: "*"
            update-types: ["version-update:semver-major", "version-update:semver-minor"]
    
      - package-ecosystem: docker
        directory: /tensorflow/tools/gcs_test
        schedule:
          interval: monthly
    
      - package-ecosystem: docker
        directory: /tensorflow/tools/tf_sig_build_dockerfiles
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Jun 04 01:09:09 GMT 2025
    - 1.4K bytes
    - Click Count (0)
  10. docs/fr/docs/deployment/versions.md

    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    Les changements non rétrocompatibles et les nouvelles fonctionnalités sont ajoutés dans les versions « MINOR ».
    
    /// tip | Astuce
    
    Le « MINOR » est le numéro au milieu, par exemple, dans `0.2.3`, la version MINOR est `2`.
    
    ///
    
    ## Mettre à niveau les versions de FastAPI { #upgrading-the-fastapi-versions }
    
    Vous devez ajouter des tests pour votre application.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 4.2K bytes
    - Click Count (0)
Back to Top