- Sort Score
- Num 10 results
- Language All
Results 851 - 860 of 1,005 for 11 (0.01 seconds)
-
android/guava/src/com/google/common/collect/SortedLists.java
int lower = foundIndex; int upper = list.size() - 1; // Everything between lower and upper inclusive compares at >= 0. while (lower < upper) { int middle = (lower + upper + 1) >>> 1; int c = comparator.compare(list.get(middle), key); if (c > 0) { upper = middle - 1; } else { // c == 0 lower = middle; } }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 10.9K bytes - Click Count (0) -
docs/de/docs/tutorial/schema-extra-example.md
Wenn Sie `Field()` mit Pydantic-Modellen verwenden, können Sie ebenfalls zusätzliche `examples` deklarieren: {* ../../docs_src/schema_extra_example/tutorial002_py310.py hl[2,8:11] *} ## `examples` im JSON-Schema – OpenAPI { #examples-in-json-schema-openapi } Bei Verwendung von: * `Path()` * `Query()` * `Header()` * `Cookie()` * `Body()` * `Form()` * `File()`Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 10.4K bytes - Click Count (0) -
docs/fr/docs/tutorial/handling-errors.md
Dans cet exemple, lorsque le client demande un élément par un ID qui n'existe pas, levez une exception avec un code d'état `404` : {* ../../docs_src/handling_errors/tutorial001_py310.py hl[11] *} ### Réponse résultante { #the-resulting-response } Si le client demande `http://example.com/items/foo` (un `item_id` « foo »), il recevra un code d'état HTTP 200 et une réponse JSON : ```JSON {Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 10K bytes - Click Count (0) -
android/guava/src/com/google/common/net/HostAndPort.java
host = hostAndPort[0]; portString = hostAndPort[1]; } else { int colonPos = hostPortString.indexOf(':'); if (colonPos >= 0 && hostPortString.indexOf(':', colonPos + 1) == -1) { // Exactly 1 colon. Split into host:port. host = hostPortString.substring(0, colonPos); portString = hostPortString.substring(colonPos + 1); } else {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 19:19:10 GMT 2026 - 11.1K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/OkHttpClient.kt
* * The following protocols are currently supported: * * * [http/1.1][rfc_2616] * * [h2][rfc_7540] * * [h2 with prior knowledge(cleartext only)][rfc_7540_34] * * **This is an evolving set.** Future releases include support for transitional * protocols. The http/1.1 transport will never be dropped. *Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 51.5K bytes - Click Count (0) -
src/main/resources/fess_message_ja.properties
constraints.Email.message = {item} は正しいメールアドレスではありません。 constraints.Length.message = {item} の長さは {min} から {max} の範囲にしてください。 constraints.LuhnCheck.message = {value} の Luhn Modulo 11 チェックサムが正しくありません。 constraints.Mod10Check.message = {value} の Modulo 10 チェックサムが正しくありません。 constraints.Mod11Check.message = {value} の Modulo 11 チェックサムが正しくありません。 constraints.ModCheck.message = {value} の {modType} チェックサムが正しくありません。 constraints.NotBlank.message = {item} は未入力です。Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 16.5K bytes - Click Count (0) -
docs/uk/docs/tutorial/handling-errors.md
У цьому прикладі, коли клієнт запитує елемент за ID, якого не існує, згенеруйте виключення з кодом статусу `404`: {* ../../docs_src/handling_errors/tutorial001_py310.py hl[11] *} ### Отримана відповідь { #the-resulting-response } Якщо клієнт робить запит за шляхом `http://example.com/items/foo` (де `item_id` `"foo"`), він отримає код статусу HTTP 200 і JSON відповідь: ```JSON {Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 13.9K bytes - Click Count (0) -
docs/tr/docs/tutorial/handling-errors.md
Bu örnekte, client var olmayan bir ID ile bir item istediğinde, `404` status code’u ile bir exception raise edelim: {* ../../docs_src/handling_errors/tutorial001_py310.py hl[11] *} ### Ortaya Çıkan Response { #the-resulting-response } Client `http://example.com/items/foo` (bir `item_id` `"foo"`) isterse, HTTP status code olarak 200 ve şu JSON response’u alır: ```JSON {Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 9.7K bytes - Click Count (0) -
docs/tr/docs/tutorial/schema-extra-example.md
/// ## `Field` ek argümanları { #field-additional-arguments } Pydantic modelleriyle `Field()` kullanırken ek `examples` de tanımlayabilirsiniz: {* ../../docs_src/schema_extra_example/tutorial002_py310.py hl[2,8:11] *} ## JSON Schema - OpenAPI içinde `examples` { #examples-in-json-schema-openapi } Aşağıdakilerden herhangi birini kullanırken: * `Path()` * `Query()` * `Header()` * `Cookie()` * `Body()` * `Form()`Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 9.6K bytes - Click Count (0) -
android/guava/src/com/google/common/hash/Hashing.java
* consistentHash(h, n)} equals: * * <ul> * <li>{@code n - 1}, with approximate probability {@code 1/n} * <li>{@code consistentHash(h, n - 1)}, otherwise (probability {@code 1 - 1/n}) * </ul> * * <p>This method is suitable for the common use case of dividing work among buckets that meet the * following conditions: * * <ul>
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jul 17 15:26:41 GMT 2025 - 29.8K bytes - Click Count (0)