- Sort Score
- Num 10 results
- Language All
Results 71 - 80 of 400 for codecs (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/pt/docs/tutorial/extra-models.md
# Modelos Adicionais { #extra-models } Continuando com o exemplo anterior, será comum ter mais de um modelo relacionado. Isso é especialmente o caso para modelos de usuários, porque: * O **modelo de entrada** precisa ser capaz de ter uma senha. * O **modelo de saída** não deve ter uma senha. * O **modelo de banco de dados** provavelmente precisaria ter uma senha com hash. /// danger | CuidadoCreated: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Nov 12 16:23:57 GMT 2025 - 7.5K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Huffman.kt
for (i in CODE_BIT_COUNTS.indices) { addCode(i, CODES[i], CODE_BIT_COUNTS[i].toInt()) } } @Throws(IOException::class) fun encode( source: ByteString, sink: BufferedSink, ) { var accumulator = 0L var accumulatorBitCount = 0 for (i in 0 until source.size) { val symbol = source[i] and 0xff val code = CODES[symbol]
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 11K bytes - Click Count (0) -
src/main/java/jcifs/smb1/netbios/NbtException.java
/** The NetBIOS error class */ public int errorClass; /** The NetBIOS error code */ public int errorCode; /** * Converts NetBIOS error class and code to a human-readable string. * * @param errorClass the error class * @param errorCode the error code * @return a descriptive error string */Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/DcerpcBindTest.java
@DisplayName("Should handle unknown result codes with hex format") void testUnknownResultCodes() throws Exception { // Test unknown result codes int[] unknownCodes = { 4, 10, 255, 1000 }; for (int code : unknownCodes) { setResultField(bind, code); DcerpcException result = bind.getResult();Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 22.7K bytes - Click Count (0) -
plugin.xml
<cutdirsmapper dirs="1" /> </unzip> </target> <target name="remove.jars" if="with.fess"> <delete> <fileset dir="${plugins.dir}"> <include name="configsync/commons-codec-*" /> <include name="dataformat/commons-codec-*" /> <include name="dataformat/commons-collections4-*" /> <include name="dataformat/commons-compress-*" /> <include name="dataformat/commons-math3-*" />
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Dec 18 09:50:31 GMT 2025 - 3.5K bytes - Click Count (0) -
src/main/java/jcifs/smb/NtStatus.java
*/ package jcifs.smb; /** * Interface defining NT status codes used in SMB protocol operations. * These status codes are returned by SMB servers to indicate the result * of requested operations. The codes follow the Windows NT status code format. */ public interface NtStatus { /* * Don't bother to edit this. Everything within the interfaceCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 14.9K bytes - Click Count (0) -
docs/changelogs/changelog_4x.md
when you call `contains(null)` on them! * Fix: Retain binary-compatibility in `okhttp3.internal.HttpHeaders.hasBody()`. Some unscrupulous coders call this and we don't want their users to suffer. ## Version 4.0.0 _2019-06-26_ **This release upgrades OkHttp to Kotlin.** We tried our best to make fast and safe to upgrade
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Apr 17 13:25:31 GMT 2024 - 25.2K bytes - Click Count (0) -
docs/de/docs/tutorial/body-nested-models.md
# Body – Verschachtelte Modelle { #body-nested-models } Mit **FastAPI** können Sie (dank Pydantic) beliebig tief verschachtelte Modelle definieren, validieren, dokumentieren und verwenden. ## Listen als Felder { #list-fields } Sie können ein Attribut als Kindtyp definieren, zum Beispiel eine Python-`list`. {* ../../docs_src/body_nested_models/tutorial001_py310.py hl[12] *}Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 7.6K bytes - Click Count (0) -
docs/de/docs/tutorial/cookie-param-models.md
# Cookie-Parameter-Modelle { #cookie-parameter-models } Wenn Sie eine Gruppe von **Cookies** haben, die zusammengehören, können Sie ein **Pydantic-Modell** erstellen, um diese zu deklarieren. 🍪 Damit können Sie das Modell an **mehreren Stellen wiederverwenden** und auch Validierungen und Metadaten für alle Parameter gleichzeitig deklarieren. 😎 /// note | Hinweis Dies wird seit FastAPI Version `0.115.0` unterstützt. 🤓 /// /// tip | TippCreated: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 10 13:54:34 GMT 2025 - 3.8K bytes - Click Count (0) -
docs/de/docs/tutorial/query-param-models.md
# Query-Parameter-Modelle { #query-parameter-models } Wenn Sie eine Gruppe von **Query-Parametern** haben, die miteinander in Beziehung stehen, können Sie ein **Pydantic-Modell** erstellen, um diese zu deklarieren. Dadurch können Sie das **Modell an mehreren Stellen wiederverwenden** und gleichzeitig Validierungen und Metadaten für alle Parameter auf einmal deklarieren. 😎 /// note | Hinweis Dies wird seit FastAPI Version `0.115.0` unterstützt. 🤓 ///Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Sep 20 15:10:09 GMT 2025 - 2.6K bytes - Click Count (0)