- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 267 for Generic (0.04 sec)
-
src/main/java/org/codelibs/core/lang/GenericsUtil.java
} return null; } /** * Returns the generic type of the specified type for the given index. * * @param type the type to analyze * @param index the index of the generic type * @return the generic type class, or null if not found */ public static Type getGenericParameter(final Type type, final int index) {Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.4K bytes - Viewed (0) -
docs/ru/docs/python-types.md
И тогда вам не придётся задумываться о названиях вроде `Optional` и `Union`. 😎 #### Generic-типы { #generic-types } Типы, которые принимают параметры типов в квадратных скобках, называются **Generic-типами** или **Generics**, например: //// tab | Python 3.10+ Вы можете использовать те же встроенные типы как generics (с квадратными скобками и типами внутри): * `list` * `tuple` * `set` * `dict`Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 24.4K bytes - Viewed (0) -
docs/uk/docs/python-types.md
//// //// tab | Python 3.10 і вище ```Python hl_lines="1" {!> ../../docs_src/python_types/tutorial009_py310.py!} ``` //// #### Generic типи Ці типи, які приймають параметри типу у квадратних дужках, називаються **Generic types** or **Generics**, наприклад: //// tab | Python 3.8 і вище * `List` * `Tuple` * `Set` * `Dict` * `Union` * `Optional` * ...та інші. ////Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 19.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/cisupport/GenericCIDetector.java
import org.apache.maven.api.cli.cisupport.CIInfo; /** * Generic CI support. This offers same support as Maven 3 always had. Is also special, as code will reject this * detector result IF there are also any other returned via discovered services. */ public class GenericCIDetector implements CIDetector { public static final String NAME = "Generic"; private static final String CI = "CI"; @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Apr 13 18:50:07 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/jcifs/ACETest.java
// Generic rights should be in bits 28-31 (0xF0000000) assertTrue(ACE.GENERIC_ALL >= 0x10000000, "GENERIC_ALL should be in generic rights range"); assertTrue(ACE.GENERIC_EXECUTE >= 0x10000000, "GENERIC_EXECUTE should be in generic rights range"); assertTrue(ACE.GENERIC_WRITE >= 0x10000000, "GENERIC_WRITE should be in generic rights range");Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.4K bytes - Viewed (0) -
src/main/java/jcifs/ACE.java
*/ int SYNCHRONIZE = 0x00100000; // 20 /** * Generic all permissions */ int GENERIC_ALL = 0x10000000; // 28 /** * Generic execute permission */ int GENERIC_EXECUTE = 0x20000000; // 29 /** * Generic write permission */ int GENERIC_WRITE = 0x40000000; // 30 /** * Generic read permission */ int GENERIC_READ = 0x80000000; // 31Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
docs/en/docs/python-types.md
And then you won't have to worry about names like `Optional` and `Union`. 😎 #### Generic types { #generic-types } These types that take type parameters in square brackets are called **Generic types** or **Generics**, for example: //// tab | Python 3.10+ You can use the same builtin types as generics (with square brackets and types inside): * `list` * `tuple` * `set` * `dict`
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 15.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbConstants.java
/** Synchronize access right */ int SYNCHRONIZE = 0x00100000; // 20 /** Generic all access right */ int GENERIC_ALL = 0x10000000; // 28 /** Generic execute access right */ int GENERIC_EXECUTE = 0x20000000; // 29 /** Generic write access right */ int GENERIC_WRITE = 0x40000000; // 30 /** Generic read access right */ int GENERIC_READ = 0x80000000; // 31 // flags for move and copyRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
docs/tr/docs/python-types.md
#### Generic tipler Köşeli parantez içinde tip parametreleri alan bu türler, örneğin: * `List` * `Tuple` * `Set` * `Dict` * `Optional` * ...and others. **Generic types** yada **Generics** olarak adlandırılır. ### Tip olarak Sınıflar Bir değişkenin tipini bir sınıf ile bildirebilirsiniz.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.5K bytes - Viewed (0) -
src/main/java/jcifs/SmbConstants.java
int SYNCHRONIZE = 0x00100000; // 20 /** * All generic permissions. */ int GENERIC_ALL = 0x10000000; // 28 /** * Generic execute permission. */ int GENERIC_EXECUTE = 0x20000000; // 29 /** * Generic write permission. */ int GENERIC_WRITE = 0x40000000; // 30 /** * Generic read permission. */ int GENERIC_READ = 0x80000000; // 31Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 12.8K bytes - Viewed (0)