- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 50 for variations (0.28 seconds)
-
architecture/standards/0009-use-american-english.md
- ACCEPTED on 2025-11-24 ## Context Gradle is an international open-source project with contributors from around the world. English is the primary language for code, comments, documentation, and communication, but there are variations in English spelling and terminology, specifically American English vs. British English. Inconsistency in spelling conventions can lead to several issues:
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 3.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java
assertEquals("[テスト環境]", specialMailEnv.getMailSubjectTestPrefix()); assertEquals("******@****.***", specialMailEnv.getMailReturnPath()); } // Test deploy mode variations public void xtest_deployModeVariations() { String[] deployModes = { "hot", "cool", "warm" }; for (String mode : deployModes) { FessEnv.SimpleImpl deployEnv = new FessEnv.SimpleImpl() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 15.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/StripedTest.java
for (Striped<?> striped : allImplementations()) { new NullPointerTester().testAllPublicInstanceMethods(striped); } } public void testSizes() { // not bothering testing all variations, since we know they share implementations assertThat(Striped.lock(100).size()).isAtLeast(100); assertTrue(Striped.lock(256).size() == 256); assertThat(Striped.lazyWeakLock(100).size()).isAtLeast(100);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 8.1K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/StripedTest.java
for (Striped<?> striped : allImplementations()) { new NullPointerTester().testAllPublicInstanceMethods(striped); } } public void testSizes() { // not bothering testing all variations, since we know they share implementations assertThat(Striped.lock(100).size()).isAtLeast(100); assertTrue(Striped.lock(256).size() == 256); assertThat(Striped.lazyWeakLock(100).size()).isAtLeast(100);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 8.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/FacetInfoTest.java
BucketOrder order = facetInfo.getBucketOrder(); assertNotNull(order); assertEquals(BucketOrder.count(false), order); // default } // Test getBucketOrder with case variations @Test public void test_getBucketOrder_caseVariations() { facetInfo.sort = "COUNT.DESC"; BucketOrder order = facetInfo.getBucketOrder(); assertNotNull(order);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13.4K bytes - Click Count (0) -
docs/en/docs/tutorial/path-params-numeric-validations.md
# Path Parameters and Numeric Validations { #path-parameters-and-numeric-validations } In the same way that you can declare more validations and metadata for query parameters with `Query`, you can declare the same type of validations and metadata for path parameters with `Path`. ## Import `Path` { #import-path } First, import `Path` from `fastapi`, and import `Annotated`: {* ../../docs_src/path_params_numeric_validations/tutorial001_an_py310.py hl[1,3] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 6.1K bytes - Click Count (0) -
docs/en/docs/tutorial/query-params-str-validations.md
You can declare additional validations and metadata for your parameters. Generic validations and metadata: * `alias` * `title` * `description` * `deprecated` Validations specific for strings: * `min_length` * `max_length` * `pattern` Custom validations using `AfterValidator`. In these examples you saw how to declare validations for `str` values.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 16.3K bytes - Click Count (0) -
docs/fr/docs/tutorial/path-params-numeric-validations.md
# Paramètres de chemin et validations numériques { #path-parameters-and-numeric-validations } De la même façon que vous pouvez déclarer plus de validations et de métadonnées pour les paramètres de requête avec `Query`, vous pouvez déclarer le même type de validations et de métadonnées pour les paramètres de chemin avec `Path`. ## Importer `Path` { #import-path } Tout d'abord, importez `Path` de `fastapi`, et importez `Annotated` :Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 7.1K bytes - Click Count (0) -
docs/fr/docs/tutorial/query-params-str-validations.md
## Récapitulatif { #recap } Vous pouvez déclarer des validations et des métadonnées supplémentaires pour vos paramètres. Validations et métadonnées génériques : - `alias` - `title` - `description` - `deprecated` Validations spécifiques aux chaînes : - `min_length` - `max_length` - `pattern` Validations personnalisées avec `AfterValidator`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 19K bytes - Click Count (0) -
docs/de/docs/tutorial/path-params-numeric-validations.md
Das Gleiche gilt für: * `gt`: `g`reater `t`han (größer als) * `le`: `l`ess than or `e`qual (kleiner oder gleich) {* ../../docs_src/path_params_numeric_validations/tutorial005_an_py310.py hl[10] *} ## Validierung von Zahlen: Floats, größer und kleiner { #number-validations-floats-greater-than-and-less-than }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 7.1K bytes - Click Count (0)