- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 112 for Alias (0.04 sec)
-
docs/ko/docs/tutorial/query-params-str-validations.md
마치 다음과 같습니다: ``` http://127.0.0.1:8000/items/?item-query=foobaritems ``` 그러나 `item-query`은 유효한 파이썬 변수 이름이 아닙니다. 가장 가까운 것은 `item_query`일 겁니다. 하지만 정확히`item-query`이길 원합니다... 이럴 경우 `alias`를 선언할 수 있으며, 해당 별칭은 매개변수 값을 찾는 데 사용됩니다: {* ../../docs_src/query_params_str_validations/tutorial009.py hl[9] *} ## 매개변수 사용하지 않게 하기 이제는 더이상 이 매개변수를 마음에 들어하지 않는다고 가정해 봅시다.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
} final String alias = index; return asStream(filename).contentTypeOctetStream().stream(out -> { try (final BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(out.stream(), Constants.CHARSET_UTF_8))) { SearchEngineUtil.scroll(alias, hit -> { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 29.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SambaHelper.java
/** * Helper class for Samba-related operations. */ public class SambaHelper { private static final Logger logger = LogManager.getLogger(SambaHelper.class); /** * SID type for an alias. */ public static final int SID_TYPE_ALIAS = 4; /** * SID type for a deleted account. */ public static final int SID_TYPE_DELETED = 6; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/util/SecureKeyManager.java
java.util.Enumeration<String> aliases = keyStore.aliases(); while (aliases.hasMoreElements()) { String alias = aliases.nextElement(); if (alias.startsWith("smb.session.")) { keyStore.deleteEntry(alias); } } } catch (Exception e) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/java/jcifs/SID.java
*/ int SID_TYPE_DOM_GRP = 2; /** * SID type indicating a domain. */ int SID_TYPE_DOMAIN = 3; /** * SID type indicating a local group or alias. */ int SID_TYPE_ALIAS = 4; /** * SID type indicating a well-known group. */ int SID_TYPE_WKN_GRP = 5; /** * SID type indicating a deleted account. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SambaHelperTest.java
// Test Domain Group SID (type 2) assertEquals("2Domain Group", sambaHelper.getAccountId(createMockSID(2, "Domain Group"))); // Test Alias SID (type 4, mapped to 2) assertEquals("2Local Group", sambaHelper.getAccountId(createMockSID(4, "Local Group"))); // Test Well-Known Group SID (type 5, mapped to 1)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.7K bytes - Viewed (0) -
scan.go
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sun May 25 07:40:40 UTC 2025 - 10.4K bytes - Viewed (0) -
docs/iam/access-management-plugin.md
export MINIO_ROOT_USER=minio export MINIO_ROOT_PASSWORD=minio123 export MINIO_POLICY_PLUGIN_URL=http://localhost:8080/ minio server /tmp/disk{1...4} ``` Now, let's test it out with `mc`: ```sh mc alias set myminio http://localhost:9000 minio minio123 mc ls myminio mc mb myminio/test mc cp /etc/issue myminio/test mc admin user add myminio foo foobar123 export MC_HOST_foo=http://foo:foobar123@localhost:9000 mc ls foo
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Dec 13 22:28:48 UTC 2022 - 4.4K bytes - Viewed (1) -
docs/multi-user/admin/README.md
``` This admin user will then be allowed to perform create/delete user operations via `mc admin user` ### 3. Configure `mc` and create another user user1 with attached policy user1policy ``` mc alias set myminio-admin1 http://localhost:9000 admin1 admin123 --api s3v4 mc admin user add myminio-admin1 user1 user123 mc admin policy attach myminio-admin1 user1policy ~/user1policy.json
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 4.7K bytes - Viewed (0) -
docs/uk/docs/tutorial/query-params-str-validations.md
``` Але `item-query` — це некоректна назва змінної в Python. Найближчий допустимий варіант — `item_query`. Проте Вам потрібно, щоб параметр залишався саме `item-query`... У такому випадку можна оголосити `alias`, і саме він буде використовуватися для отримання значення параметра: {* ../../docs_src/query_params_str_validations/tutorial009_an_py310.py hl[9] *} ## Виведення параметрів як застарілих
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri May 30 14:17:24 UTC 2025 - 26.1K bytes - Viewed (0)