- Sort Score
- Num 10 results
- Language All
Results 3091 - 3100 of 3,926 for classe (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/metadata/io/MetadataParseException.java
* @param columnNumber The one-based index of the column containing the error or {@code -1} if unknown. * @param cause The nested cause of this error, may be {@code null}. */ public MetadataParseException(String message, int lineNumber, int columnNumber, Throwable cause) { super(message); initCause(cause); this.lineNumber = lineNumber; this.columnNumber = columnNumber; } /**Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/query-param-models.md
{* ../../docs_src/query_param_models/tutorial001_an_py310.py hl[9:13,17] *} **FastAPI** 將會從請求的**查詢參數**中**提取**出**每個欄位**的資料,並將其提供給你定義的 Pydantic 模型。 ## 查看文件 { #check-the-docs } 你可以在 `/docs` 頁面的 UI 中查看查詢參數: <div class="screenshot"> <img src="/img/tutorial/query-param-models/image01.png"> </div> ## 禁止額外的查詢參數 { #forbid-extra-query-parameters } 在一些特殊的使用場景中(可能不是很常見),你可能希望**限制**你要收到的查詢參數。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 05 15:32:56 GMT 2026 - 2.1K bytes - Click Count (0) -
docs/tr/docs/advanced/sub-applications.md
{* ../../docs_src/sub_applications/tutorial001_py310.py hl[11, 19] *} ### Otomatik API dokümanlarını kontrol edin { #check-the-automatic-api-docs } Şimdi `fastapi` komutunu çalıştırın: <div class="termy"> ```console $ fastapi dev <span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) ``` </div>Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 3.2K bytes - Click Count (0) -
internal/http/lambda-headers.go
AmzFwdHeaderSSECMD5 = "x-amz-fwd-header-x-amz-server-side-encryption-customer-key-MD5" AmzFwdHeaderStorageClass = "x-amz-fwd-header-x-amz-storage-class" AmzFwdHeaderTaggingCount = "x-amz-fwd-header-x-amz-tagging-count" AmzFwdHeaderVersionID = "x-amz-fwd-header-x-amz-version-id"
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Mar 07 16:12:41 GMT 2023 - 3.1K bytes - Click Count (0) -
build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/AntTask.groovy
import javax.inject.Inject import java.nio.charset.Charset /** * A task which will run ant commands. * * Logging for the task is customizable for subclasses by overriding makeLogger. */ public abstract class AntTask extends DefaultTask { /** * A buffer that will contain the output of the ant code run, * if the output was not already written directly to stdout. */Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 3.4K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rerun/executer/RerunTestResultProcessor.java
import org.gradle.api.internal.tasks.testing.TestStartEvent; import org.gradle.api.tasks.testing.TestOutputEvent; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; final class RerunTestResultProcessor implements TestResultProcessor { private final TestResultProcessor delegate; private final Map<Object, TestDescriptorInternal> activeDescriptorsById = new HashMap<>(); /**Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 4.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsResponse.java
import java.util.List; import org.codelibs.fess.suggest.entity.SuggestItem; import org.codelibs.fess.suggest.request.Response; /** * Represents the response for popular words request. */ public class PopularWordsResponse implements Response { /** * The index associated with the response. */ protected final String index; /** * The time taken to generate the response in milliseconds.Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Mar 15 06:51:20 GMT 2025 - 3.1K bytes - Click Count (0) -
docs/de/docs/advanced/strict-content-type.md
## CSRF-Risiko { #csrf-risk } Dieses Standardverhalten schützt vor einer Klasse von **Cross-Site Request Forgery (CSRF)**-Angriffen in einem sehr spezifischen Szenario. Diese Angriffe nutzen aus, dass Browser Skripte Requests senden lassen, ohne einen CORS-Preflight-Check durchzuführen, wenn sie: * keinen `Content-Type`-Header haben (z. B. mit `fetch()` und einem `Blob`-Body)Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:48:21 GMT 2026 - 3.6K bytes - Click Count (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
import java.net.UnknownHostException; import java.util.HashMap; import jcifs.smb1.Config; import jcifs.smb1.util.Hexdump; /** * This class represents a NetBIOS over TCP/IP address. Under normal * conditions, users of jCIFS need not be concerned with this class as * name resolution and session services are handled internally by the smb package. * * <p> Applications can use the methods <code>getLocalHost</code>,
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 31.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/pager/BoostDocPagerTest.java
*/ package org.codelibs.fess.app.pager; import java.util.ArrayList; import java.util.List; import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test; public class BoostDocPagerTest extends UnitFessTestCase { @Test public void test_BoostDocPage() { BoostDocPager boostdocpager = new BoostDocPager(); boostdocpager.clear();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 2.8K bytes - Click Count (0)