- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 105 for xldap (0.06 sec)
-
cmd/admin-handlers.go
const operationTimeout = 10 * time.Second ldap := madmin.LDAP{} if globalIAMSys.LDAPConfig.Enabled() { ldapConn, err := globalIAMSys.LDAPConfig.LDAP.Connect() //nolint:gocritic if err != nil { ldap.Status = string(madmin.ItemOffline) } else if ldapConn == nil { ldap.Status = "Not Configured" } else { // Close ldap connection to avoid leaks. ldapConn.Close()
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 99.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ProtocolHelperTest.java
assertFalse(protocolHelper.isValidWebProtocol("file://example.com")); assertFalse(protocolHelper.isValidWebProtocol("smb://example.com")); assertFalse(protocolHelper.isValidWebProtocol("ldap://example.com")); assertFalse(protocolHelper.isValidWebProtocol("example.com")); assertFalse(protocolHelper.isValidWebProtocol("")); assertFalse(protocolHelper.isValidWebProtocol("xyz")); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/java/jcifs/netbios/UniAddress.java
* UnknownHostException uhe = null; * * try { * context = new InitialDirContext(); * for ( ;; ) { * try { * Attributes attributes = context.getAttributes( * "dns:/_ldap._tcp.dc._msdcs." + name, * new String[] { "SRV" } * ); * return name; * } catch (NameNotFoundException nnfe) { * uhe = new UnknownHostException(nnfe.getMessage()); * }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.3K bytes - Viewed (0) -
cmd/user-provider-utils.go
return madmin.BuiltinProvider // regular users are always internal } claims := credentials.Claims if _, ok := claims[ldapUser]; ok { return madmin.LDAPProvider // ldap users } if _, ok := claims[subClaim]; ok { providerPrefix, _, found := strings.Cut(credentials.ParentUser, getKeySeparator()) if found { return providerPrefix // this is true for certificate and custom providers
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 4.1K bytes - Viewed (0) -
go.mod
github.com/eclipse/paho.mqtt.golang v1.5.0 github.com/elastic/go-elasticsearch/v7 v7.17.10 github.com/fatih/color v1.18.0 github.com/felixge/fgprof v0.9.5 github.com/fraugster/parquet-go v0.12.0 github.com/go-ldap/ldap/v3 v3.4.11 github.com/go-openapi/loads v0.22.0 github.com/go-sql-driver/mysql v1.9.2 github.com/gobwas/ws v1.4.0 github.com/golang-jwt/jwt/v4 v4.5.2 github.com/gomodule/redigo v1.9.2 github.com/google/uuid v1.6.0
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Sep 06 17:33:19 UTC 2025 - 12.3K bytes - Viewed (0) -
docs/sts/etcd.md
### 4. Test with MinIO STS API Once etcd is configured, **any STS configuration** will work including Client Grants, Web Identity or AD/LDAP.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
* @return The role query helper. */ public static RoleQueryHelper getRoleQueryHelper() { return getComponent(ROLE_QUERY_HELPER); } /** * Gets the LDAP manager component. * @return The LDAP manager. */ public static LdapManager getLdapManager() { return getComponent(LDAP_MANAGER); } /** * Gets the activity helper component.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java
*/ public static void resetPassword(final CreateForm form) { form.password = null; form.confirmPassword = null; } /** * Validates LDAP user attribute types using the configured LDAP manager. * * @param attributes the map of attributes to validate * @param throwError callback to report any validation errors */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.general_menu_suggest=Suggest labels.general_menu_ldap=LDAP labels.general_menu_notification=Notification labels.general_storage=Storage labels.ldapProviderUrl=LDAP URL labels.ldapSecurityPrincipal=User DN labels.ldapAdminSecurityPrincipal=Bind DN labels.ldapAdminSecurityCredentials=Password labels.ldapBaseDn=Base DN labels.ldap_provider_url=LDAP URL labels.ldap_security_principal=User DN
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
cmd/api-errors.go
}, ErrAdminLDAPNotEnabled: { Code: "XMinioLDAPNotEnabled", Description: "LDAP is not enabled. LDAP must be enabled to make LDAP requests.", HTTPStatusCode: http.StatusNotImplemented, }, ErrAdminLDAPExpectedLoginName: { Code: "XMinioLDAPExpectedLoginName", Description: "Expected LDAP short username but was given full DN.", HTTPStatusCode: http.StatusBadRequest, },
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 16 07:34:24 UTC 2025 - 93K bytes - Viewed (1)