Search Options

Results per page
Sort
Preferred Languages
Advance

Results 421 - 430 of 1,772 for user3 (0.02 sec)

  1. src/main/java/org/codelibs/fess/app/service/UserService.java

    1. import org.codelibs.fess.Constants;
    2. import org.codelibs.fess.app.pager.UserPager;
    3. import org.codelibs.fess.app.web.base.login.FessLoginAssist;
    4. import org.codelibs.fess.es.user.cbean.UserCB;
    5. import org.codelibs.fess.es.user.exbhv.UserBhv;
    6. import org.codelibs.fess.es.user.exentity.User;
    7. import org.codelibs.fess.exception.FessUserNotFoundException;
    8. import org.codelibs.fess.mylasta.direction.FessConfig;
    9. import org.codelibs.fess.util.ComponentUtil;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. docs/en/docs/css/custom.css

    1. .md-footer-meta {
    2. padding-bottom: 2em;
    3. }
    4.  
    5. .user-list {
    6. display: flex;
    7. flex-wrap: wrap;
    8. margin-bottom: 2rem;
    9. }
    10.  
    11. .user-list-center {
    12. justify-content: space-evenly;
    13. }
    14.  
    15. .user {
    16. margin: 1em;
    17. min-width: 7em;
    18. }
    19.  
    20. .user .avatar-wrapper {
    21. width: 80px;
    22. height: 80px;
    23. margin: 10px auto;
    24. overflow: hidden;
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Jul 17 02:12:29 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. architecture/security/istio-agent.md

    1. a certificate. This can be handled in various ways:
    2. * `GenerateSecret` may additionally write any signed certificates to disk, with `OUTPUT_CERTS` configured.
    3. * Users may have external CA setups that pre-configure certificates.
    4. * The CaClient can use JWT token for the initial setup, then switch to mTLS certificates.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Jul 18 23:11:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_header_params/test_tutorial001.py

    1.  
    2. @pytest.mark.parametrize(
    3. "path,headers,expected_status,expected_response",
    4. [
    5. ("/items", None, 200, {"User-Agent": "testclient"}),
    6. ("/items", {"X-Header": "notvalid"}, 200, {"User-Agent": "testclient"}),
    7. ("/items", {"User-Agent": "FastAPI test"}, 200, {"User-Agent": "FastAPI test"}),
    8. ],
    9. )
    10. def test(path, headers, expected_status, expected_response):
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/bigger-applications.md

    1. ```
    2.  
    3.  
    4. ### Die `APIRouter` für `users` und `items` inkludieren
    5.  
    6. Inkludieren wir nun die `router` aus diesen Submodulen `users` und `items`:
    7.  
    8. ```Python hl_lines="10-11" title="app/main.py"
    9. {!../../docs_src/bigger_applications/app/main.py!}
    10. ```
    11.  
    12. /// info
    13.  
    14. `users.router` enthält den `APIRouter` in der Datei `app/routers/users.py`.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/AdminAction.java

    1. public static Class<? extends FessAdminAction> getAdminActionClass(final FessUserBean user) {
    2. if (user.hasRoles(getActionRoles(AdminDashboardAction.ROLE))) {
    3. return AdminDashboardAction.class;
    4. }
    5. if (user.hasRoles(getActionRoles(AdminWizardAction.ROLE))) {
    6. return AdminWizardAction.class;
    7. }
    8. if (user.hasRoles(getActionRoles(AdminGeneralAction.ROLE))) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/index.md

    1. ///
    2.  
    3. ## Advanced User Guide
    4.  
    5. There is also an **Advanced User Guide** that you can read later after this **Tutorial - User guide**.
    6.  
    7. The **Advanced User Guide** builds on this one, uses the same concepts, and teaches you some extra features.
    8.  
    9. But you should first read the **Tutorial - User Guide** (what you are reading right now).
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Aug 24 21:52:09 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/user/bsentity/dbmeta/UserDbm.java

    1. setupEpg(_epgMap, et -> ((User) et).getState(), (et, vl) -> ((User) et).setState(DfTypeUtil.toString(vl)), "state");
    2. setupEpg(_epgMap, et -> ((User) et).getStreet(), (et, vl) -> ((User) et).setStreet(DfTypeUtil.toString(vl)), "street");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 27K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/user/cbean/bs/BsGroupCB.java

    1. */
    2. package org.codelibs.fess.es.user.cbean.bs;
    3.  
    4. import java.util.ArrayList;
    5. import java.util.List;
    6. import java.util.Map;
    7.  
    8. import org.codelibs.fess.es.user.allcommon.EsAbstractConditionBean;
    9. import org.codelibs.fess.es.user.bsentity.dbmeta.GroupDbm;
    10. import org.codelibs.fess.es.user.cbean.GroupCB;
    11. import org.codelibs.fess.es.user.cbean.ca.GroupCA;
    12. import org.codelibs.fess.es.user.cbean.ca.bs.BsGroupCA;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/user/bsbhv/BsUserBhv.java

    1. */
    2. package org.codelibs.fess.es.user.bsbhv;
    3.  
    4. import java.util.List;
    5. import java.util.Map;
    6.  
    7. import org.codelibs.fess.es.user.allcommon.EsAbstractBehavior;
    8. import org.codelibs.fess.es.user.allcommon.EsAbstractEntity.RequestOptionCall;
    9. import org.codelibs.fess.es.user.bsentity.dbmeta.UserDbm;
    10. import org.codelibs.fess.es.user.cbean.UserCB;
    11. import org.codelibs.fess.es.user.exentity.User;
    12. import org.dbflute.Entity;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top