- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for onResult (0.07 sec)
-
cmd/admin-handlers-idp-ldap.go
userDN = cred.ParentUser } } dnResult, err := globalIAMSys.LDAPConfig.GetValidatedDNForUsername(userDN) if err != nil { writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL) return } if dnResult == nil { writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, errNoSuchUser), r.URL) return } targetAccount := dnResult.NormDN listType := r.Form.Get("listType")
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Sep 21 11:35:40 UTC 2024 - 19.1K bytes - Viewed (0) -
cmd/iam.go
err = errServerNotInitialized return } var dn string var dnResult *ldap.DNSearchResult var isGroup bool if r.User != "" { dnResult, err = sys.LDAPConfig.GetValidatedDNForUsername(r.User) if err != nil { iamLogIf(ctx, err) return } if dnResult == nil { // dn not found - still attempt to detach if provided user is a DN.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 29 16:01:48 UTC 2024 - 74.6K bytes - Viewed (0) -
doc/go1.17_spec.html
<pre class="ebnf"> ReturnStmt = "return" [ ExpressionList ] . </pre> <p> In a function without a result type, a "return" statement must not specify any result values. </p> <pre> func noResult() { return } </pre> <p> There are three ways to return values from a function with a result type: </p> <ol> <li>The return value or values may be explicitly listed
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 10 18:25:45 UTC 2024 - 211.6K bytes - Viewed (0) -
doc/go_spec.html
<pre class="ebnf"> ReturnStmt = "return" [ ExpressionList ] . </pre> <p> In a function without a result type, a "return" statement must not specify any result values. </p> <pre> func noResult() { return } </pre> <p> There are three ways to return values from a function with a result type: </p> <ol> <li>The return value or values may be explicitly listed
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 02 00:58:01 UTC 2024 - 282.5K bytes - Viewed (0)