- Sort Score
- Num 10 results
- Language All
Results 981 - 990 of 3,011 for note (0.03 seconds)
-
docs/ja/docs/tutorial/security/oauth2-jwt.md
`authenticate_user` がデータベースに存在しないユーザー名で呼び出された場合でも、ダミーのハッシュを使って `verify_password` を実行します。 これにより、ユーザー名が有効かどうかに関わらずエンドポイントの応答時間がおおよそ同じになり、既存のユーザー名を列挙するために悪用されうる「タイミング攻撃」を防止できます。 /// note | 備考 新しい(偽の)データベース`fake_users_db`を確認すると、ハッシュ化されたパスワードが次のようになっていることがわかります:`"$argon2id$v=19$m=65536,t=3,p=4$wagCPXjifgvUFBzq4hqe3w$CYaIb8sB+wtD+Vu/P4uod1+Qof8h+1g7bbDlBID48Rc"`。 ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 14.6K bytes - Click Count (1) -
docs/zh-hant/docs/tutorial/security/first-steps.md
/// check | Authorize 按鈕! 你會看到一個新的「Authorize」按鈕。 而你的「路徑操作」右上角也會出現一個小鎖頭可以點擊。 /// 點擊後會跳出一個小視窗,讓你輸入 `username` 與 `password`(以及其他可選欄位): <img src="/img/tutorial/security/image02.png"> /// note | 注意 不管你在表單輸入什麼,現在都還不會成功;等等我們會把它完成。 /// 這當然不是給最終使用者用的前端,但它是用來互動式文件化整個 API 的極佳自動化工具。 前端團隊(也可能就是你)可以使用它。 第三方應用或系統也能使用它。 你也能用它來除錯、檢查與測試同一個應用。 ## `password` 流程 { #the-password-flow }
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
/// check | Authorize 按钮! 页面右上角已经有一个崭新的“Authorize”按钮。 你的*路径操作*右上角还有一个可点击的小锁图标。 /// 点击它,会弹出一个授权表单,可输入 `username` 和 `password`(以及其它可选字段): <img src="/img/tutorial/security/image02.png"> /// note | 注意 目前无论在表单中输入什么都不会生效,我们稍后就会实现它。 /// 这当然不是面向最终用户的前端,但它是一个很棒的自动化工具,可交互式地为整个 API 提供文档。 前端团队(也可能就是你自己)可以使用它。 第三方应用和系统也可以使用它。 你也可以用它来调试、检查和测试同一个应用。 ## `password` 流 { #the-password-flow }
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) -
okhttp/build.gradle.kts
// The Kotlin compiler will parse and check module dependencies, // but it currently won't compile to a module-info.class file. // Note that module checking only works on JDK 9+, // because the JDK built-in base modules are not available in earlier versions. val javaVersion = compileKotlinTask.kotlinJavaToolchain.javaVersion.getOrNull() when { javaVersion?.isJava9Compatible == true -> {
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Feb 04 22:16:39 GMT 2026 - 11.4K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java
} // Test suppression private final Set<Method> suppressedTests = new HashSet<>(); /** * Prevents the given methods from being run as part of the test suite. * * <p>Note: in principle this should never need to be used, but it might be useful if the * semantics of an implementation disagree in unforeseen ways with the semantics expected by a
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 21:06:42 GMT 2026 - 10.4K bytes - Click Count (0) -
guava/src/com/google/common/cache/AbstractCache.java
* is evicted due to the cache's eviction strategy, and not as a result of manual {@linkplain * Cache#invalidate invalidations}. */ void recordEviction(); /** * Returns a snapshot of this counter's values. Note that this may be an inconsistent view, as * it may be interleaved with update operations. */ CacheStats snapshot();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 03 12:40:22 GMT 2026 - 9.2K bytes - Click Count (0) -
src/test/java/jcifs/EmptyIteratorTest.java
@Test @DisplayName("next should not throw NoSuchElementException") void testNextDoesNotThrowException() { // When & Then assertDoesNotThrow(() -> { emptyIterator.next(); emptyIterator.next(); emptyIterator.next(); }, "next() should not throw NoSuchElementException"); } @Test @DisplayName("close should not throw any exception")Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 12K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatSessionManager.java
import jakarta.annotation.PreDestroy; /** * Manager class for chat sessions. * Sessions are stored in memory with automatic expiration. * * <p><b>Note:</b> Sessions are stored in a local in-memory ConcurrentHashMap. * In multi-instance deployments (e.g., behind a load balancer), sessions are * not shared between instances. Use sticky sessions or an external session * store if session affinity across instances is required.</p> *
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 13:27:59 GMT 2026 - 13.7K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/ConnectionSpec.kt
* connection. * * The TLS versions configured in a connection spec are only be used if they are also enabled in the * SSL socket. For example, if an SSL socket does not have TLS 1.3 enabled, it will not be used even * if it is present on the connection spec. The same policy also applies to cipher suites. * * Use [Builder.allEnabledTlsVersions] and [Builder.allEnabledCipherSuites] to defer all feature
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sat Jan 10 09:36:53 GMT 2026 - 13.5K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/TreeBasedTable.java
* row(rowKey)} and {@code rowMap().get(rowKey)} are {@link SortedMap} instances, instead of the * {@link Map} specified in the {@link Table} interface. * * <p>Note that this implementation is not synchronized. If multiple threads access this table * concurrently and one of the threads modifies the table, it must be synchronized externally. * * <p>See the Guava User Guide article on <a href=
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Jul 18 15:05:43 GMT 2025 - 11.6K bytes - Click Count (0)