- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 358 for Prefer (0.07 seconds)
-
android/guava/src/com/google/common/util/concurrent/UncheckedExecutionException.java
* may also wrap a checked exception in some cases. * * <p>When wrapping an {@code Error} from another thread, prefer {@link ExecutionError}. When * wrapping a checked exception, prefer {@code ExecutionException}. * * @author Charles Fry * @since 10.0 */ @GwtCompatible public class UncheckedExecutionException extends RuntimeException { /*Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Feb 13 17:34:21 GMT 2025 - 4.2K bytes - Click Count (0) -
docs/fr/llm-prompt.md
Use the formal grammar (use `vous` instead of `tu`). Additionally, in instructional sentences, prefer the present tense for obligations: - Prefer `vous devez …` over `vous devrez …`, unless the English source explicitly refers to a future requirement. - When translating “make sure (that) … is …”, prefer the indicative after `vous assurer que` (e.g. `Vous devez vous assurer qu'il est …`) instead of the subjunctive (e.g. `qu'il soit …`).
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Jan 16 11:57:08 GMT 2026 - 3.6K bytes - Click Count (0) -
docs/en/docs/tutorial/dependencies/classes-as-dependencies.md
//// tab | Python 3.10+ ```Python commons: Annotated[CommonQueryParams, Depends(CommonQueryParams)] ``` //// //// tab | Python 3.10+ non-Annotated /// tip Prefer to use the `Annotated` version if possible. /// ```Python commons: CommonQueryParams = Depends(CommonQueryParams) ``` //// The last `CommonQueryParams`, in: ```Python
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 11 18:32:12 GMT 2026 - 6.8K bytes - Click Count (0) -
cmd/erasure-decode.go
func (e Erasure) Heal(ctx context.Context, writers []io.Writer, readers []io.ReaderAt, totalLength int64, prefer []bool) (derr error) { if len(writers) != e.parityBlocks+e.dataBlocks { return errInvalidArgument } reader := newParallelReader(readers, e, 0, totalLength) if len(readers) == len(prefer) { reader.preferReaders(prefer) } defer reader.Done() startBlock := int64(0) endBlock := totalLength / e.blockSize
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Thu Aug 29 01:40:52 GMT 2024 - 9.5K bytes - Click Count (0) -
fastapi/.agents/skills/fastapi/references/other-tools.md
``` ## SQLModel for SQL databases When working with SQL databases, prefer using SQLModel as it is integrated with Pydantic and will allow declaring data validation with the same models. Prefer it over SQLAlchemy. ## HTTPX Use HTTPX for handling HTTP communication (e.g. with other APIs). It support sync and async usage.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 01 10:05:57 GMT 2026 - 1.5K bytes - Click Count (0) -
docs/tr/llm-prompt.md
### `///` admonitions - Keep the admonition keyword in English (do not translate `note`, `tip`, etc.). - If a title is present, prefer these canonical titles: - `/// note | Not` - `/// note | Teknik Detaylar` - `/// tip | İpucu` - `/// warning | Uyarı` - `/// info | Bilgi` - `/// check | Ek bilgi`
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Jan 20 20:34:03 GMT 2026 - 2.7K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/ExecutionError.java
/** * Creates a new instance with the given detail message and cause. Prefer to provide a * non-nullable {@code cause}, as many users expect to find one. */ public ExecutionError(@Nullable String message, @Nullable Error cause) { super(message, cause); } /** * Creates a new instance with {@code null} as its detail message and the given cause. Prefer toCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Feb 13 17:34:21 GMT 2025 - 4K bytes - Click Count (0) -
docs/zh/llm-prompt.md
- Never change punctuation inside inline code, code blocks, URLs, or file paths. ### Ellipsis - Keep ellipsis style consistent within each document, prefer `...` over `……`. - Never change ellipsis in code, URLs, or CLI examples. ### Preferred translations / glossary Use the following preferred translations when they apply in documentation prose: - request (HTTP): 请求
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Dec 29 18:54:20 GMT 2025 - 1.4K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/ListenableFuture.java
* rarely use it directly, in part because it does not provide direct access to the {@code Future} * result. (If you want such access, you may prefer {@link Futures#addCallback * Futures.addCallback}.) Still, direct {@code addListener} calls are occasionally useful: * * {@snippet : * final String name = ...; * inFlight.add(name);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 22:14:05 GMT 2026 - 8K bytes - Click Count (0) -
okhttp-urlconnection/README.md
OkHttp URLConnection ==================== This module integrates OkHttp with `Authenticator` and `CookieHandler` from `java.net`. This module is obsolete; prefer `okhttp-java-net-cookiejar`. ### Download ```kotlin testImplementation("com.squareup.okhttp3:okhttp-urlconnection:5.3.0")Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu Oct 30 21:39:59 GMT 2025 - 292 bytes - Click Count (0)