- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 81 for Generic (0.07 sec)
-
cmd/generic-handlers.go
Klaus Post <******@****.***> 1756435188 +0200
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 20.7K bytes - Viewed (1) -
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: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.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 Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 19.4K 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: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.4K 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 copy
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K 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; // 31
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 12.8K bytes - Viewed (0) -
docs/ru/docs/python-types.md
#### Generic-типы Эти типы принимают параметры в квадратных скобках: * `List` * `Tuple` * `Set` * `Dict` * `Optional` * ...и др. называются **Generic-типами** или **Generics**. ### Классы как типы Вы также можете объявить класс как тип переменной.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 14.3K 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 Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 17.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java
case 4: throw new NullPointerException("Null pointer"); default: throw new RuntimeException("Generic error"); } } }; ComponentUtil.register(mockSearchLogHelper, "searchLogHelper"); // First execution - success
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.1K bytes - Viewed (0) -
docs/ko/docs/python-types.md
``` `Optional[str]`을 `str` 대신 쓰게 되면, 특정 값이 실제로는 `None`이 될 수도 있는데 항상 `str`이라고 가정하는 상황에서 에디터가 에러를 찾게 도와줄 수 있습니다. #### Generic(제네릭) 타입 이 타입은 대괄호 안에 매개변수를 가지며, 종류는: * `List` * `Tuple` * `Set` * `Dict` * `Optional` * ...등등 위와 같은 타입은 **Generic(제네릭) 타입** 혹은 **Generics(제네릭스)**라고 불립니다. ### 타입으로서의 클래스 변수의 타입으로 클래스를 선언할 수도 있습니다. 이름(name)을 가진 `Person` 클래스가 있다고 해봅시다.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 10.2K bytes - Viewed (0)