- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 375 for UserName (0.25 sec)
-
src/test/java/org/codelibs/fess/it/admin/WebAuthTests.java
private static final String LIST_ENDPOINT_SUFFIX = "settings"; private static final String ITEM_ENDPOINT_SUFFIX = "setting"; private static final String KEY_PROPERTY = "username"; @Override protected String getNamePrefix() { return NAME_PREFIX; } @Override protected String getApiPath() { return API_PATH; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 3.9K bytes - Viewed (0) -
cmd/storage-rest-server.go
var username string if u, err := user.Current(); err == nil { username = u.Username } else { username = "<your-username>" } var hint string if endpoint.URL != nil { hint = fmt.Sprintf("Run the following command to add write permissions: `sudo chown -R %s %s && sudo chmod u+rxw %s`", username, endpoint.Path, endpoint.Path) } else {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 27 15:19:03 UTC 2025 - 45.7K bytes - Viewed (0) -
docs/sts/dex.yaml
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Jul 15 11:55:55 UTC 2020 - 2.7K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type3MessageTest.java
String domain = "TESTDOMAIN"; String username = "testuser"; String workstation = "TESTWS"; int flags = NtlmFlags.NTLMSSP_NEGOTIATE_UNICODE | NtlmFlags.NTLMSSP_NEGOTIATE_NTLM; // When Type3Message type3 = new Type3Message(createMockContext(), type2, null, password, domain, username, workstation, flags); // Then assertNotNull(type3);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.3K bytes - Viewed (0) -
src/archive/tar/format.go
func (h *headerGNU) v7() *headerV7 { return (*headerV7)(h) } func (h *headerGNU) magic() []byte { return h[257:][:6] } func (h *headerGNU) version() []byte { return h[263:][:2] } func (h *headerGNU) userName() []byte { return h[265:][:32] } func (h *headerGNU) groupName() []byte { return h[297:][:32] } func (h *headerGNU) devMajor() []byte { return h[329:][:8] } func (h *headerGNU) devMinor() []byte { return h[337:][:8] }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Oct 13 18:36:46 UTC 2023 - 11.3K bytes - Viewed (0) -
src/archive/tar/stat_unix.go
// (not implemented on that platform, cgo not enabled, etc). if u, ok := userMap.Load(h.Uid); ok { h.Uname = u.(string) } else if u, err := user.LookupId(strconv.Itoa(h.Uid)); err == nil { h.Uname = u.Username userMap.Store(h.Uid, h.Uname) } if g, ok := groupMap.Load(h.Gid); ok { h.Gname = g.(string) } else if g, err := user.LookupGroupId(strconv.Itoa(h.Gid)); err == nil { h.Gname = g.Name
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Mar 15 16:01:50 UTC 2024 - 3.2K bytes - Viewed (0) -
docs/ko/docs/tutorial/body-multiple-params.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.1K bytes - Viewed (0) -
docs/sts/assume-role.md
``` Create new users following the multi-user guide [here](https://docs.min.io/community/minio-object-store/administration/identity-access-management.html) ### Testing an example with awscli tool > Use the same username and password created in the previous steps. ``` [foobar] region = us-east-1 aws_access_key_id = foobar aws_secret_access_key = foo12345 ```
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 7.2K bytes - Viewed (0) -
docs/iam/access-management-plugin.md
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Dec 13 22:28:48 UTC 2022 - 4.4K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/ldap/LdapUserTest.java
super.tearDown(); } public void test_constructor() { // Test constructor initializes fields correctly LdapUser user = new LdapUser(testEnv, "username"); assertEquals("username", user.getName()); assertSame(testEnv, user.getEnvironment()); assertNull(user.permissions); } public void test_getName() { // Test getName returns the correct name
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.6K bytes - Viewed (0)