- Sort Score
- Num 10 results
- Language All
Results 81 - 90 of 157 for Union (0.49 seconds)
-
src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java
final String[] labels = request.getParameterValues("fields.label"); if (labels != null && labels.length > 0) { // Validate against configured label types (union of request locale and ROOT for robustness) final Locale requestLocale = request.getLocale() != null ? request.getLocale() : Locale.ROOT; final Set<String> allowedLabels = new java.util.HashSet<>();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 06:06:55 GMT 2026 - 25.8K bytes - Click Count (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java
@Override public void decode_out(final NdrBuffer _src) throws NdrException { final int _infop = _src.dec_ndr_long(); if (_infop != 0) { _src.dec_ndr_short(); /* union discriminant */ info.decode(_src); } retval = _src.dec_ndr_long(); } } /** * LSA lookup SIDs message. */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 42.5K bytes - Click Count (0) -
LICENSES/vendor/github.com/NYTimes/gziphandler/LICENSE
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition,Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Wed Feb 03 21:57:36 GMT 2021 - 11.2K bytes - Click Count (0) -
docs/de/docs/advanced/advanced-python-types.md
Hier sind einige zusätzliche Ideen, die beim Arbeiten mit Python-Typen nützlich sein könnten. ## `Union` oder `Optional` verwenden { #using-union-or-optional } Wenn Ihr Code aus irgendeinem Grund nicht `|` verwenden kann, z. B. wenn es nicht in einer Typannotation ist, sondern in etwas wie `response_model=`, können Sie anstelle des senkrechten Strichs (`|`) `Union` aus `typing` verwenden.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 07:57:30 GMT 2026 - 2.3K bytes - Click Count (0) -
docs/fr/docs/advanced/advanced-python-types.md
## Utiliser `Union` ou `Optional` { #using-union-or-optional } Si votre code ne peut pas utiliser `|` pour une raison quelconque, par exemple si ce n'est pas dans une annotation de type mais dans quelque chose comme `response_model=`, au lieu d'utiliser la barre verticale (`|`) vous pouvez utiliser `Union` de `typing`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:12:41 GMT 2026 - 2.3K bytes - Click Count (0) -
docs/tr/docs/advanced/advanced-python-types.md
Python tipleriyle çalışırken işinize yarayabilecek bazı ek fikirler. ## `Union` veya `Optional` Kullanımı { #using-union-or-optional } Kodunuz herhangi bir nedenle `|` kullanamıyorsa — örneğin bir tip açıklamasında (type annotation) değil de `response_model=` gibi bir yerdeyse — dikey çizgi (`|`) yerine `typing` içindeki `Union`'ı kullanabilirsiniz. Örneğin, bir şeyin `str` ya da `None` olabileceğini şöyle belirtebilirsiniz:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 12:41:38 GMT 2026 - 2.1K bytes - Click Count (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java
} } @Override public void decode(NdrBuffer _src) throws NdrException { _src.align(4); level = _src.dec_ndr_long(); _src.dec_ndr_long(); /* union discriminant */ final int _ep = _src.dec_ndr_long(); if (_ep != 0) { if (e == null) { /* YOYOYO */ e = new DfsEnumArray1(); }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 21.2K bytes - Click Count (0) -
docs/pt/docs/advanced/advanced-python-types.md
## Usando `Union` ou `Optional` { #using-union-or-optional } Se, por algum motivo, seu código não puder usar `|`, por exemplo, se não for em uma anotação de tipo, mas em algo como `response_model=`, em vez de usar a barra vertical (`|`) você pode usar `Union` do `typing`. Por exemplo, você poderia declarar que algo pode ser `str` ou `None`: ```python from typing import Union def say_hi(name: Union[str, None]):Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 13:48:53 GMT 2026 - 2.1K bytes - Click Count (0) -
docs/es/docs/tutorial/extra-models.md
## `Union` o `anyOf` { #union-or-anyof } Puedes declarar un response que sea la `Union` de dos o más tipos, eso significa que el response sería cualquiera de ellos. Se definirá en OpenAPI con `anyOf`. Para hacerlo, usa la anotación de tipos estándar de Python [`typing.Union`](https://docs.python.org/3/library/typing.html#typing.Union): /// note | NotaCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 7.2K bytes - Click Count (0) -
docs/fr/docs/tutorial/extra-models.md
## `Union` ou `anyOf` { #union-or-anyof } Vous pouvez déclarer qu'une réponse est l'`Union` de deux types ou plus, ce qui signifie que la réponse peut être n'importe lequel d'entre eux. Cela sera défini dans OpenAPI avec `anyOf`. Pour ce faire, utilisez l'annotation de type Python standard [`typing.Union`](https://docs.python.org/3/library/typing.html#typing.Union) : /// note | RemarqueCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 7.6K bytes - Click Count (0)