- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 1,170 for rSample (0.06 sec)
-
docs/en/docs/tutorial/request-form-models.md
Make sure you create a [virtual environment](../virtual-environments.md){.internal-link target=_blank}, activate it, and then install it, for example: ```console $ pip install python-multipart ``` /// /// note This is supported since FastAPI version `0.113.0`. π€ /// ## Pydantic Models for Forms { #pydantic-models-for-forms }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.2K bytes - Viewed (0) -
docs/pt/docs/tutorial/security/first-steps.md
Porque estamos usando uma URL relativa, se sua API estava localizada em `https://example.com/`, entΓ£o irΓ‘ referir-se Γ `https://example.com/token`. Mas se sua API estava localizada em `https://example.com/api/v1/`, entΓ£o irΓ‘ referir-se Γ `https://example.com/api/v1/token`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 8.3K bytes - Viewed (0) -
docs/en/docs/environment-variables.md
//// ## Read env vars in Python { #read-env-vars-in-python } You could also create environment variables **outside** of Python, in the terminal (or with any other method), and then **read them in Python**. For example you could have a file `main.py` with: ```Python hl_lines="3" import os name = os.getenv("MY_NAME", "World") print(f"Hello {name} from Python") ``` /// tip
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 8.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/RegexRule.java
* </p> * * <p> * Example usage: * </p> * * <pre> * {@code * RegexRule rule = new RegexRule(); * rule.addRule("url", "https://example.com/.*"); * rule.addRule("contentType", "text/html"); * rule.setAllRequired(true); // Both URL and content type must match * * ResponseData responseData = new ResponseData(); * responseData.setUrl("https://example.com/page1");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/FreshValueGenerator.java
*/ private @Nullable Object generate(TypeToken<?> type) { Class<?> rawType = type.getRawType(); List<Object> samples = sampleInstances.get(rawType); Object sample = pickInstance(samples, null); if (sample != null) { return sample; } if (rawType.isEnum()) { return pickInstance(rawType.getEnumConstants(), null); } if (type.isArray()) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 28.1K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/RemovalListener.java
* shared resources. * * @param <K> the most general type of keys this listener can listen for; for example {@code Object} * if any key is acceptable * @param <V> the most general type of values this listener can listen for; for example {@code * Object} if any key is acceptable * @author Charles Fry * @since 10.0 */ @GwtCompatible public interface RemovalListener<K, V> {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionResolver.java
* * @since 4.0.0 */ @Experimental @Consumer public interface VersionResolver extends Service { /** * Resolves an artifact's meta version (if any) to a concrete version. * For example, resolves "1.0-SNAPSHOT" to "1.0-20090208.132618-23". * * @param session The repository session, must not be {@code null}.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 2.5K bytes - Viewed (0) -
docs/en/docs/advanced/middleware.md
But FastAPI (actually Starlette) provides a simpler way to do it that makes sure that the internal middlewares handle server errors and custom exception handlers work properly. For that, you use `app.add_middleware()` (as in the example for CORS). ```Python from fastapi import FastAPI from unicorn import UnicornMiddleware app = FastAPI() app.add_middleware(UnicornMiddleware, some_config="rainbow") ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:59:07 UTC 2025 - 4.3K bytes - Viewed (0) -
docs/uk/docs/tutorial/cors.md
* `allow_origins` - Π‘ΠΏΠΈΡΠΎΠΊ Π΄ΠΆΠ΅ΡΠ΅Π», ΡΠΊΠΈΠΌ Π΄ΠΎΠ·Π²ΠΎΠ»Π΅Π½ΠΎ Π·Π΄ΡΠΉΡΠ½ΡΠ²Π°ΡΠΈ ΠΌΡΠΆΠ΄ΠΎΠΌΠ΅Π½Π½Ρ Π·Π°ΠΏΠΈΡΠΈ. ΠΠ°ΠΏΡΠΈΠΊΠ»Π°Π΄ `['https://example.org', 'https://www.example.org']`. ΠΠΈ ΠΌΠΎΠΆΠ΅ΡΠ΅ Π²ΠΈΠΊΠΎΡΠΈΡΡΠΎΠ²ΡΠ²Π°ΡΠΈ ['*'], ΡΠΎΠ± Π΄ΠΎΠ·Π²ΠΎΠ»ΠΈΡΠΈ Π²ΡΡ Π΄ΠΆΠ΅ΡΠ΅Π»Π°. * `allow_origin_regex` - Π ΡΠ΄ΠΎΠΊ ΡΠ΅Π³ΡΠ»ΡΡΠ½ΠΎΠ³ΠΎ Π²ΠΈΡΠ°Π·Ρ Π΄Π»Ρ Π²ΡΠ΄ΠΏΠΎΠ²ΡΠ΄Π½ΠΎΡΡΡ Π΄ΠΆΠ΅ΡΠ΅Π»Π°ΠΌ, ΡΠΊΠΈΠΌ Π΄ΠΎΠ·Π²ΠΎΠ»Π΅Π½ΠΎ Π·Π΄ΡΠΉΡΠ½ΡΠ²Π°ΡΠΈ ΠΌΡΠΆΠ΄ΠΎΠΌΠ΅Π½Π½Ρ Π·Π°ΠΏΠΈΡΠΈ. ΠΠ°ΠΏΡΠΈΠΊΠ»Π°Π΄, `'https://.*\.example\.org'`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri May 30 13:34:34 UTC 2025 - 7.9K bytes - Viewed (0) -
README.md
implementation 'org.codelibs:curl4j:x.y.z' ``` ## Quick Start ### Synchronous request ```java import org.codelibs.curl.Curl; import org.codelibs.curl.CurlResponse; try (CurlResponse response = Curl.get("https://example.com") .param("q", "curl4j") .header("Accept", "application/json") .executeSync()) {
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:11:14 UTC 2025 - 2.5K bytes - Viewed (0)