- Sort Score
- Result 10 results
- Languages All
Results 1521 - 1530 of 1,755 for LargeA (0.05 sec)
-
guava/src/com/google/common/util/concurrent/Striped.java
@J2ktIncompatible @GwtIncompatible @ElementTypesAreNonnullByDefault public abstract class Striped<L> { /** * If there are at least this many stripes, we assume the memory usage of a ConcurrentMap will be * smaller than a large array. (This assumes that in the lazy case, most stripes are unused. As * always, if many stripes are in use, a non-lazy striped makes more sense.) */ private static final int LARGE_LAZY_CUTOFF = 1024;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jun 26 12:58:35 UTC 2024 - 20.6K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java
for (int i = 1; i < numKeys; i++) { nodes.get(i).checkAcquiredLocks(Policies.THROW, nodes.subList(0, i)); } // Pre-populate all disallowedPriorLocks with nodes of larger ordinal. for (int i = 0; i < numKeys - 1; i++) { nodes.get(i).checkAcquiredLocks(Policies.DISABLED, nodes.subList(i + 1, numKeys)); } return Collections.unmodifiableMap(map); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Dec 15 19:31:54 UTC 2023 - 35.9K bytes - Viewed (0) -
docs/zh/docs/tutorial/handling-errors.md
/// warning | "警告" 如果您觉得现在还用不到以下技术细节,可以先跳过下面的内容。 /// `RequestValidationError` 是 Pydantic 的 <a href="https://docs.pydantic.dev/latest/concepts/models/#error-handling" class="external-link" target="_blank">`ValidationError`</a> 的子类。 **FastAPI** 调用的就是 `RequestValidationError` 类,因此,如果在 `response_model` 中使用 Pydantic 模型,且数据有错误时,在日志中就会看到这个错误。 但客户端或用户看不到这个错误。反之,客户端接收到的是 HTTP 状态码为 `500` 的「内部服务器错误」。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.4K bytes - Viewed (0) -
common/config/.golangci.yml
- "!**/operator/**" - "!**/istioctl/**" - "!**/tools/bug-report/**" # This should only really import operator API, but that is hard to express without a larger refactoring - "!**/pkg/kube/**" - "!**/pkg/url/**" - "!**/pkg/test/framework/**" - "!**/tests/fuzz/**" deny: - pkg: istio.io/istio/operator
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 11.7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.13.md
* Prevent AWS Network Load Balancer security groups ingress rules to be deleted by ensuring target groups are tagged. ([#73594](https://github.com/kubernetes/kubernetes/pull/73594), [@masterzen](https://github.com/masterzen))
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 273.1K bytes - Viewed (0) -
src/main/resources/fess_message.properties
errors.property_type_double={0} should be numeric. errors.property_type_date={0} should be date. errors.storage_file_upload_failure=Failed to upload {0}. errors.storage_file_not_found=The target file is not found in Storage. errors.storage_file_download_failure=Failed to download {0}. errors.storage_access_error=Storage access error: {0} errors.storage_no_upload_file=Upload file is required.
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Mar 18 03:05:44 UTC 2023 - 12.5K bytes - Viewed (0) -
src/main/resources/fess_message_en.properties
errors.property_type_double={0} should be numeric. errors.property_type_date={0} should be date. errors.storage_file_upload_failure=Failed to upload {0}. errors.storage_file_not_found=The target file is not found in Storage. errors.storage_file_download_failure=Failed to download {0}. errors.storage_access_error=Storage access error: {0} errors.storage_no_upload_file=Upload file is required.
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Mar 18 03:05:44 UTC 2023 - 12.4K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/connection/ConnectionPoolTest.kt
// All other connections created will expire sooner routePlanner.defaultConnectionIdleAtNanos = expireSooner // Turn it into an http/2 connection that supports 5 concurrent streams // which can satisfy a larger policy val connection = routePlanner.plans.first().connection val http2Connection = connectHttp2(peer, connection, 5) setPolicy(pool, address, ConnectionPool.AddressPolicy(5))
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jun 22 16:06:35 UTC 2024 - 12.8K bytes - Viewed (0) -
common-protos/k8s.io/api/policy/v1/generated.proto
// the list automatically by PodDisruptionBudget controller after some time. // If everything goes smooth this map should be empty for the most of the time. // Large number of entries in the map may indicate problems with pod deletions. // +optional map<string, k8s.io.apimachinery.pkg.apis.meta.v1.Time> disruptedPods = 2; // Number of pod disruptions that are currently allowed.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 8K bytes - Viewed (0) -
docs/ja/README.md
antrun:runを実行して、プラグインをpluginsディレクトリにダウンロードします: $ mvn antrun:run ### Fessの実行 IDE上で`org.codelibs.fess.FessBoot`を実行またはデバッグし、http://localhost:8080/ にアクセスします。 ### パッケージのビルド `package`ゴールを実行すると、releaseファイルがtarget/releasesディレクトリに作成されます。 $ mvn package $ mvn rpm:rpm # .rpmパッケージ $ mvn jdeb:jdeb # .debパッケージ ### ソースコードの生成 $ mvn dbflute:download # (一度だけ実行) $ mvn dbflute:freegen
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 07:19:47 UTC 2024 - 8.3K bytes - Viewed (0)