- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 56 for MINOR (0.01 sec)
-
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`. /// ## Mise à jour des versions FastAPI Vous devriez tester votre application.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessVersion.java
* * @return the major version */ public int getMajorVersion() { return (version >> 16) & 0xFFFF; } /** * Gets the minor version number. * * @return the minor version */ public int getMinorVersion() { return version & 0xFFFF; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 1.9K bytes - Viewed (0) -
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: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 3.9K bytes - Viewed (0) -
docs/pt/docs/deployment/versions.md
Logo, você deveria conseguir fixar a versão, como: ```txt fastapi>=0.45.0,<0.46.0 ``` Mudanças significativas e novos recursos são adicionados em versões "MINOR". /// tip | Dica O "MINOR" é o número que está no meio, por exemplo, em `0.2.3`, a versão MINOR é `2`. /// ## Atualizando as versões do FastAPI Você deve adicionar testes para a sua aplicação.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 3.8K bytes - Viewed (0) -
docs/debugging/reorder-disks/main.go
} devID := uint64(stat.Dev) major := (devID & 0x00000000000fff00) >> 8 major |= (devID & 0xfffff00000000000) >> 32 minor := (devID & 0x00000000000000ff) >> 0 minor |= (devID & 0x00000ffffff00000) >> 12 return fmt.Sprintf("%d:%d", major, minor), nil } func filterLocalDisks(node, args string) ([]localDisk, error) { var result []localDisk
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 5.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/DcerpcMessageTest.java
NdrBuffer buf = new NdrBuffer(new byte[1024], 0); // Manually encode a response header buf.enc_ndr_small(5); // RPC version buf.enc_ndr_small(0); // minor version buf.enc_ndr_small(2); // ptype = 2 (Response) buf.enc_ndr_small(0); // flags buf.enc_ndr_long(0x00000010); // data representation buf.enc_ndr_short(20); // length
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7K bytes - Viewed (0) -
docs/vi/docs/deployment/versions.md
Vì vậy, bạn có thể cố định đến một phiên bản như: ```txt fastapi>=0.45.0,<0.46.0 ``` Các thay đổi gây mất tương thích và các tính năng mới được thêm vào trong các phiên bản "MINOR". /// tip "MINOR" là số ở giữa, ví dụ, trong `0.2.3`, phiên bản MINOR là `2`. /// ## Nâng cấp các phiên bản của FastAPI Bạn nên thêm các bài kiểm tra (tests) cho ứng dụng của bạn.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Feb 28 14:15:38 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcBinding.java
INTERFACES.put(name, syntax); } String proto; String server; String endpoint = null; HashMap options = null; UUID uuid = null; int major; int minor; DcerpcBinding(final String proto, final String server) { this.proto = proto; this.server = server; } void setOption(final String key, final Object val) throws DcerpcException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.8K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcMessageTest.java
} @Test @DisplayName("decode_header should throw NdrException for invalid minor RPC version") void testDecodeHeaderThrowsNdrExceptionForMinorRpcVersion() { when(mockBuffer.dec_ndr_small()).thenReturn(5).thenReturn(1); // Incorrect minor RPC version assertThrows(NdrException.class, () -> message.decode_header(mockBuffer)); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.4K bytes - Viewed (0)