- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 324 for literally (0.08 sec)
-
src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java
* </p> * * @param jarFile * jarファイル形式のファイル。{@literal null}であってはいけません * @param prefix * トラバースするリソースの名前が含む接頭辞。{@literal null}であってはいけません。 * 空文字列でない場合はスラッシュ('/')で終了していなければなりません * @param handler * リソースを処理するハンドラ。{@literal null}であってはいけません */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 10.5K bytes - Viewed (0) -
docs_src/query_param_models/tutorial002_an_py39.py
from fastapi import FastAPI, Query from pydantic import BaseModel, Field from typing_extensions import Annotated, Literal app = FastAPI() class FilterParams(BaseModel): model_config = {"extra": "forbid"} limit: int = Field(100, gt=0, le=100) offset: int = Field(0, ge=0) order_by: Literal["created_at", "updated_at"] = "created_at" tags: list[str] = [] @app.get("/items/")
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Sep 17 18:54:10 UTC 2024 - 493 bytes - Viewed (0) -
docs_src/query_param_models/tutorial002_pv1_py310.py
from typing import Literal from fastapi import FastAPI, Query from pydantic import BaseModel, Field app = FastAPI() class FilterParams(BaseModel): class Config: extra = "forbid" limit: int = Field(100, gt=0, le=100) offset: int = Field(0, ge=0) order_by: Literal["created_at", "updated_at"] = "created_at" tags: list[str] = [] @app.get("/items/")
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Sep 17 18:54:10 UTC 2024 - 466 bytes - Viewed (0) -
android/guava/src/com/google/common/escape/UnicodeEscaper.java
import javax.annotation.CheckForNull; /** * An {@link Escaper} that converts literal text into a format safe for inclusion in a particular * context (such as an XML document). Typically (but not always), the inverse process of * "unescaping" the text is performed automatically by the relevant parser. * * <p>For example, an XML escaper would convert the literal string {@code "Foo<Bar>"} into {@code
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jan 18 20:55:09 UTC 2022 - 13.2K bytes - Viewed (0) -
internal/s3select/jstream/decoder.go
} return nil, Unknown, d.mkError(ErrSyntax, "in literal false") case 't': if d.remaining() < 3 { return nil, Unknown, d.mkError(ErrUnexpectedEOF) } //nolint:gocritic if d.next() == 'r' && d.next() == 'u' && d.next() == 'e' { return true, Boolean, nil } return nil, Unknown, d.mkError(ErrSyntax, "in literal true") case 'n': if d.remaining() < 3 {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 23 19:35:41 UTC 2024 - 13.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/IteratorEnumeration.java
* * @param iterator * 反復子。{@literal null}であってはいけません */ public IteratorEnumeration(final Iterator<T> iterator) { assertArgumentNotNull("iterator", iterator); this.iterator = iterator; } /** * {@link IteratorEnumeration}を作成します。 * * @param iterable * 反復可能なオブジェクト。{@literal null}であってはいけません */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/jar/JarFileUtil.java
throw new IORuntimeException(e); } } /** * 指定されたJarファイルエントリの内容を読み込むための入力ストリームを返します。 * * @param file * Jarファイル。{@literal null}であってはいけません * @param entry * Jarファイルエントリ。{@literal null}であってはいけません * @return 指定されたJarファイルエントリの内容を読み込むための入力ストリーム */ public static InputStream getInputStream(final JarFile file, final ZipEntry entry) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/zip/ZipFileUtil.java
throw new IORuntimeException(e); } } /** * 指定されたZipファイルエントリの内容を読み込むための入力ストリームを返します。 * * @param file * Zipファイル。{@literal null}であってはいけません * @param entry * Zipファイルエントリ。{@literal null}であってはいけません * @return 指定されたZipファイルエントリの内容を読み込むための入力ストリーム */ public static InputStream getInputStream(final ZipFile file, final ZipEntry entry) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/WriterUtil.java
* @author koichik */ public abstract class WriterUtil { /** * 指定のエンコーディングでストリームへ出力する{@link Writer}を作成します。 * * @param os * ストリーム。{@literal null}であってはいけません * @param encoding * エンコーディング。{@literal null}や空文字列であってはいけません * @return ストリームへ出力する{@link Writer} */ public static Writer create(final OutputStream os, final String encoding) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/PropertyDetailRenderer.java
title.appendChild(linkRenderer.link(propertyDoc.getMetaData().getType(), listener)); title.appendChild(document.createTextNode(" ")); Element literal = document.createElement("literal"); title.appendChild(literal); literal.appendChild(document.createTextNode(propertyDoc.getName())); if (!propertyDoc.getMetaData().isProviderApi()) { if (!propertyDoc.getMetaData().isWriteable()) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 3.5K bytes - Viewed (0)