- Sort Score
- Result 10 results
- Languages All
Results 581 - 590 of 640 for unicode (0.05 sec)
-
cmd/admin-handlers-idp-ldap.go
} // Query IAM res, err := globalIAMSys.QueryLDAPPolicyEntities(r.Context(), q) if err != nil { writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL) return } // Encode result and send response. data, err := json.Marshal(res) if err != nil { writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL) return } password := cred.SecretKey
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 08 02:46:04 UTC 2025 - 19.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HpackTest.kt
@Test fun minMaxHeaderTableSize() { bytesIn.writeByte(0x20) hpackReader!!.readHeaders() assertThat(hpackReader!!.maxDynamicTableByteCount()).isEqualTo(0) bytesIn.writeByte(0x3f) // encode size 4096 bytesIn.writeByte(0xe1) bytesIn.writeByte(0x1f) hpackReader!!.readHeaders() assertThat(hpackReader!!.maxDynamicTableByteCount()).isEqualTo(4096) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 38.6K bytes - Viewed (0) -
docs/pt/docs/tutorial/security/oauth2-jwt.md
O importante a se lembrar é que a chave `sub` deve ter um identificador único em toda a aplicação e deve ser uma string. ## Testando Execute o servidor e vá para a documentação: <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 11K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
private Smb2LeaseKey parentLeaseKey; // For V2 private int epoch; // For V2 // Wire format structure // Lease V1: 32 bytes // Lease V2: 52 bytes @Override public void encode(byte[] buffer, int offset) { // Write context header writeInt4(buffer, offset, getName().length()); // NameOffset writeInt4(buffer, offset + 4, getName().length()); // NameLength
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
dstIndex += cnBytes.length; dstIndex += pad8(dstIndex); SMBUtil.writeInt2(dstIndex - structStart, dst, dataOffsetOffset); final int len = createContext.encode(dst, dstIndex); SMBUtil.writeInt4(len, dst, dataLengthOffset); dstIndex += len; final int pad = pad8(dstIndex); totalCreateContextLength += len + pad;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 22.9K bytes - Viewed (0) -
cmd/xl-storage-format_test.go
for i := range size { fi.VersionID = mustGetUUID() fi.DataDir = mustGetUUID() ids[i] = fi.VersionID fi.ModTime = fi.ModTime.Add(-time.Second) xl.AddVersion(fi) } // Encode all. This is used for benchmarking. enc, err := xl.AppendTo(nil) if err != nil { b.Fatal(err) } b.Logf("Serialized size: %d bytes", len(enc)) rng := rand.New(rand.NewSource(0))
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 17.5K bytes - Viewed (0) -
docs/pt/docs/tutorial/response-model.md
/// tip | Dica Mas ainda é recomendado usar as ideias acima, usando várias classes, em vez desses parâmetros. Isso ocorre porque o Schema JSON gerado no OpenAPI do seu aplicativo (e a documentação) ainda será o único para o modelo completo, mesmo que você use `response_model_include` ou `response_model_exclude` para omitir alguns atributos. Isso também se aplica ao `response_model_by_alias` que funciona de forma semelhante. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Nov 26 22:51:05 UTC 2024 - 16.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java
void testWriteBytesWireFormatSingleLock() { Smb2Lock[] locks = new Smb2Lock[] { new Smb2Lock(1024L, 2048L, Smb2Lock.SMB2_LOCKFLAG_EXCLUSIVE_LOCK) }; when(mockLock.encode(any(byte[].class), anyInt())).thenReturn(24); Smb2LockRequest req = new Smb2LockRequest(mockConfig, testFileId, locks); byte[] buffer = new byte[256];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.3K bytes - Viewed (0) -
docs/ko/docs/features.md
**FastAPI**를 사용하면 여러분은 **Starlette**의 기능 대부분을 얻게 될 것입니다(FastAPI가 단순히 Starlette를 강화했기 때문입니다): * 아주 인상적인 성능. 이는 <a href="https://github.com/encode/starlette#performance" class="external-link" target="_blank">**NodeJS**와 **Go**와 동등하게 사용 가능한 가장 빠른 파이썬 프레임워크 중 하나입니다</a>. * **WebSocket** 지원. * 프로세스 내의 백그라운드 작업. * 시작과 종료 이벤트. * HTTPX 기반 테스트 클라이언트.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 11.8K bytes - Viewed (0) -
docs/es/docs/advanced/behind-a-proxy.md
<a href="https://github.com/containous/traefik/releases" class="external-link" target="_blank">Descarga Traefik</a>, es un archivo binario único, puedes extraer el archivo comprimido y ejecutarlo directamente desde la terminal. Luego crea un archivo `traefik.toml` con: ```TOML hl_lines="3" [entryPoints] [entryPoints.http] address = ":9999"
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 12.1K bytes - Viewed (0)