- Sort Score
- Num 10 results
- Language All
Results 241 - 250 of 448 for Slow (0.22 seconds)
-
android/guava/src/com/google/common/hash/Fingerprint2011.java
private static long shiftMix(long val) { return val ^ (val >>> 47); } /** Implementation of Hash128to64 from util/hash/hash128to64.h */ @VisibleForTesting static long hash128to64(long high, long low) { long a = (low ^ high) * K3; a ^= a >>> 47; long b = (high ^ a) * K3; b ^= b >>> 47; b *= K3; return b; } /**
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Aug 11 19:31:30 GMT 2025 - 6.5K bytes - Click Count (0) -
docs/de/docs/tutorial/request-forms.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 3.1K bytes - Click Count (0) -
.teamcity/subprojects.json
"name": "core-api", "path": "subprojects/core-api", "unitTests": true, "functionalTests": true, "crossVersionTests": false }, { "name": "core-flow-services-api", "path": "platforms/core-configuration/core-flow-services-api", "unitTests": false, "functionalTests": true, "crossVersionTests": false }, { "name": "core-kotlin-extensions",
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 27 15:03:00 GMT 2026 - 42K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbUnsupportedOperationExceptionTest.java
void noInteraction_whenExceptionOccursBeforeCall() { // Arrange Runnable r = mock(Runnable.class); // Act: simulate control flow where the exception happens before any collaborator is used try { throw new SmbUnsupportedOperationException(); } catch (SmbUnsupportedOperationException ignored) { // ignore
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 5.2K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/security/first-steps.md
不管你在表單輸入什麼,現在都還不會成功;等等我們會把它完成。 /// 這當然不是給最終使用者用的前端,但它是用來互動式文件化整個 API 的極佳自動化工具。 前端團隊(也可能就是你)可以使用它。 第三方應用或系統也能使用它。 你也能用它來除錯、檢查與測試同一個應用。 ## `password` 流程 { #the-password-flow } 現在回頭理解剛剛那些是什麼。 在 OAuth2 中,`password` 是處理安全與身分驗證的其中一種「流程」(flow)。 OAuth2 的設計讓後端或 API 可以獨立於執行使用者驗證的伺服器。 但在這個例子中,同一個 FastAPI 應用會同時處理 API 與驗證。 簡化來看流程如下: - 使用者在前端輸入 `username` 與 `password`,按下 `Enter`。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 7.2K bytes - Click Count (0) -
docs/zh/docs/tutorial/security/first-steps.md
目前无论在表单中输入什么都不会生效,我们稍后就会实现它。 /// 这当然不是面向最终用户的前端,但它是一个很棒的自动化工具,可交互式地为整个 API 提供文档。 前端团队(也可能就是你自己)可以使用它。 第三方应用和系统也可以使用它。 你也可以用它来调试、检查和测试同一个应用。 ## `password` 流 { #the-password-flow } 现在回过头来理解这些内容。 `password` “流”(flow)是 OAuth2 定义的处理安全与身份验证的一种方式。 OAuth2 的设计目标是让后端或 API 与负责用户认证的服务器解耦。 但在这个例子中,**FastAPI** 应用同时处理 API 和认证。 从这个简化的角度来看看流程: * 用户在前端输入 `username` 和 `password`,然后按下 `Enter`。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 7.5K bytes - Click Count (0) -
docs/fr/docs/tutorial/request-forms.md
{* ../../docs_src/request_forms/tutorial001_an_py310.py hl[9] *} Par exemple, dans l'une des manières dont la spécification OAuth2 peut être utilisée (appelée « password flow »), il est requis d'envoyer un `username` et un `password` comme champs de formulaire.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 3.1K bytes - Click Count (0) -
internal/config/identity/openid/providercfg.go
} return p.roleArn.String() } // UserInfo returns claims for authenticated user from userInfo endpoint. // // Some OIDC implementations such as GitLab do not support // claims as part of the normal oauth2 flow, instead rely // on service providers making calls to IDP to fetch additional // claims available from the UserInfo endpoint
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 4.7K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/request-forms.md
## 定義 `Form` 參數 { #define-form-parameters } 以與 `Body` 或 `Query` 相同的方式建立表單參數: {* ../../docs_src/request_forms/tutorial001_an_py310.py hl[9] *} 例如,在 OAuth2 規範的一種用法(稱為「password flow」)中,必須以表單欄位傳送 `username` 與 `password`。 該 <dfn title="規範">規範</dfn> 要求欄位名稱必須正好是 `username` 和 `password`,而且必須以表單欄位傳送,而不是 JSON。 使用 `Form` 時,你可以宣告與 `Body`(以及 `Query`、`Path`、`Cookie`)相同的設定,包括驗證、範例、別名(例如用 `user-name` 取代 `username`)等。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 2.5K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/com/SmbComWriteResponseTest.java
// create a buffer with count = 0x1234 (4660 decimal) // Using little-endian byte order as per SMBUtil.readInt2 byte[] buf = new byte[12]; buf[0] = 0x34; // Low byte buf[1] = 0x12; // High byte int written = resp.readParameterWordsWireFormat(buf, 0); assertEquals(8, written, "Expected readParameterWordsWireFormat to advance 8 bytes");
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 2.1K bytes - Click Count (0)