- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 192 for fints (0.04 sec)
-
src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java
public IntervalRule(final String from, final String to, final String days, final long delay) { final int[] fints = parseTime(from); fromHours = fints[0]; fromMinutes = fints[1]; final int[] tints = parseTime(to); toHours = tints[0]; toMinutes = tints[1]; final String[] values = days.split(","); final List<Integer> list = new ArrayList<>();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 5.8K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Ints.java
* * @author Kevin Bourrillion * @since 1.0 */ @GwtCompatible(emulated = true) @ElementTypesAreNonnullByDefault public final class Ints extends IntsMethodsForWeb { private Ints() {} /** * The number of bytes required to represent a primitive {@code int} value. * * <p><b>Java 8+ users:</b> use {@link Integer#BYTES} instead. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 31K bytes - Viewed (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/FindBrokenInternalLinksTest.groovy
documentationRoot = project.layout.projectDirectory.dir('docsRoot') javadocRoot = documentationRoot.dir('javadoc') } """ } def "finds broken section links"() { given: sampleDoc << """ === Dead Section Links This section doesn't exist: <<missing_section>> Also see this one, which is another dead link: <<other_missing_section>> """
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Aug 21 08:08:05 UTC 2024 - 8.3K bytes - Viewed (0) -
docs/en/docs/alternatives.md
It had automatic data validation, data serialization and OpenAPI schema generation based on the same type hints in several places.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 23.2K bytes - Viewed (0) -
docs/en/docs/python-types.md
Python has support for optional "type hints" (also called "type annotations"). These **"type hints"** or annotations are a special syntax that allow declaring the <abbr title="for example: str, int, float, bool">type</abbr> of a variable. By declaring types for your variables, editors and tools can give you better support.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 26 11:47:53 UTC 2024 - 16.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/IntsTest.java
assertThat(Ints.contains(ARRAY234, (int) 3)).isTrue(); assertThat(Ints.contains(ARRAY234, (int) 4)).isTrue(); } public void testIndexOf() { assertThat(Ints.indexOf(EMPTY, (int) 1)).isEqualTo(-1); assertThat(Ints.indexOf(ARRAY1, (int) 2)).isEqualTo(-1); assertThat(Ints.indexOf(ARRAY234, (int) 1)).isEqualTo(-1);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 29.1K bytes - Viewed (0) -
docs/fr/docs/alternatives.md
C'était l'une des premières implémentations d'un framework utilisant les type hints Python pour déclarer les paramètres et les requêtes que j'ai vues (avant NestJS et Molten). Je l'ai trouvé plus ou moins en même temps que Hug. Mais APIStar utilisait le standard OpenAPI. Il disposait de la validation automatique, sérialisation des données et d'une génération de schéma OpenAPI basée sur les mêmes type hints à plusieurs endroits.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 27.6K bytes - Viewed (0) -
src/main/config/openapi/openapi-user.yaml
- name: suggest description: Suggest operations - name: favorite description: Favorite operations paths: /documents: get: tags: - search summary: Finds documents by query description: Finds documents by search conditions operationId: searchDocuments parameters: - name: q in: query description: Search words required: false
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu May 09 06:31:27 UTC 2024 - 21.6K bytes - Viewed (0) -
docs/es/docs/python-types.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.1K bytes - Viewed (0) -
docs/nl/docs/python-types.md
Daarnaast betekent het ook dat je code zeer verenigbaar zal zijn met veel andere Python-hulpmiddelen en -pakketten. 🚀 /// ## Type hints in **FastAPI** **FastAPI** maakt gebruik van type hints om verschillende dingen te doen. Met **FastAPI** declareer je parameters met type hints en krijg je: * **Editor ondersteuning**. * **Type checks**. ...en **FastAPI** gebruikt dezelfde declaraties om:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 18.3K bytes - Viewed (0)