Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for user_info (0.05 sec)

  1. src/main/resources/esclient.xml

    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_log.search_log/search_log"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_log.user_info/user_info"</arg>
    		</postConstruct>
    	</component>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Oct 21 12:20:52 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsUserInfoCQ.java

        //                                                                       =============
        @Override
        public String asTableDbName() {
            return "user_info";
        }
    
        @Override
        public String xgetAliasName() {
            return "user_info";
        }
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog.jsp

                                                <la:option value="click"><la:message key="labels.searchlog_log_type_click"/></la:option>
                                                <la:option value="user_info"><la:message
                                                        key="labels.searchlog_log_type_user_info"/></la:option>
                                                <la:option value="favorite"><la:message
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 16K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                bhv.selectCursor(cb -> {
                    cb.query().matchAll();
                    cb.query().addOrderBy_CreatedAt_Asc();
                }, new LogEntityRowHandler<UserInfo>() {
                    @Override
                    public void handle(final UserInfo entity) {
                        final StringBuilder buf = new StringBuilder();
                        buf.append('{');
                        appendJson("id", entity.getId(), buf).append(',');
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/Constants.java

        public static final String[] COMMON_API_CONVERSION_RULE = { "crudMode" };
    
        public static final String USER_INFO = "LoginInfo";
    
        public static final String SEARCH_ENGINE_API_ACCESS_TOKEN = "searchEngineApiAccessToken";
    
        public static final String DEFAULT_FIELD = "_default";
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Aug 22 12:43:18 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. src/main/resources/fess_config.properties

    ftp.role.from.file=true
    
    # backup
    index.backup.targets=fess_basic_config.bulk,fess_config.bulk,fess_user.bulk,system.properties,fess.json,doc.json
    index.backup.log.targets=click_log.ndjson,favorite_log.ndjson,search_log.ndjson,user_info.ndjson
    index.backup.log.load.timeout=60000
    
    # logging
    logging.search.docs.enabled=true
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Oct 01 14:13:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                String userInfo = url.getUserInfo();
                if (userInfo != null) {
                    userInfo = URLDecoder.decode(userInfo);
                    int index = userInfo.indexOf(':');
                    user = (index != -1) ? userInfo.substring(0, index) : userInfo;
                    if (index != -1) password = userInfo.substring(index + 1);
                    index = user.indexOf('\\');
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

            }).orElseGet(() -> {
                final UserInfo e = new UserInfo();
                e.setId(userCode);
                e.setCreatedAt(now);
                e.setUpdatedAt(now);
                return e;
            });
            CommonPoolUtil.execute(() -> userInfoBhv.insertOrUpdate(userInfo));
            return userInfo;
        }
    
        public OptionalEntity<UserInfo> getUserInfo(final String userCode) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jul 22 02:07:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                    String userInfo = this.url.getUserInfo();
                    if ( userInfo != null ) {
                        userInfo = URLDecoder.decode(userInfo, "UTF-8");
                        int index = userInfo.indexOf(':');
                        user = ( index != -1 ) ? userInfo.substring(0, index) : userInfo;
                        if ( index != -1 )
                            password = userInfo.substring(index + 1);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 25.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

            if ( userInfo != null ) {
                try {
                    userInfo = unescape(userInfo);
                }
                catch ( UnsupportedEncodingException uee ) {
                    throw new RuntimeCIFSException(uee);
                }
                int i, u;
                int end = userInfo.length();
                for ( i = 0, u = 0; i < end; i++ ) {
                    char c = userInfo.charAt(i);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 18.8K bytes
    - Viewed (0)
Back to top