Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for userCode (0.07 sec)

  1. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            if (fessConfig.isUserInfo()) {
                final String userCode = userInfoHelper.getUserCode();
                if (userCode != null) {
                    searchLog.setUserSessionId(userCode);
                    searchLog.setUserInfo(getUserInfo(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)
  2. src/main/java/org/codelibs/fess/Constants.java

        public static final String SEARCH_LOG_ACCESS_TYPE_OTHER = "other";
    
        public static final String RESULTS_PER_PAGE = "resultsPerPage";
    
        public static final String USER_CODE = "userCode";
    
        public static final String SEARCH_FIELD_LOG_SEARCH_QUERY = "q";
    
        public static final String STATS_REPORT_TYPE = "reportType";
    
        public static final String RESULT_DOC_ID_CACHE = "resultDocIds";
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Aug 22 12:43:18 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/main/resources/fess_config.properties

    thumbnail.html.image.exclude.extensions=svg,html,css,js
    thumbnail.generator.interval=0
    thumbnail.generator.targets=all
    thumbnail.crawler.enabled=true
    thumbnail.system.monitor.interval=60
    
    # user
    user.code.request.parameter=userCode
    user.code.min.length=20
    user.code.max.length=100
    user.code.pattern=[a-zA-Z0-9_]+
    
    # ----------------------------------------------------------
    #                                                       Mail
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Oct 01 14:13:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  4. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java

            }
    
            public Builder mavenHome(Path mavenHome) {
                this.mavenHome = mavenHome;
                return this;
            }
    
            public Builder userHome(Path userHome) {
                this.userHome = userHome;
                return this;
            }
    
            public Builder in(InputStream in) {
                this.in = in;
                return this;
            }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 04 12:23:10 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

            }
            return result;
        }
    
        protected Path getUserHomeDirectory(LocalContext context) throws ParserException {
            if (context.parserRequest.userHome() != null) {
                Path result = getCanonicalPath(context.parserRequest.userHome());
                context.systemPropertiesOverrides.put("user.home", result.toString());
                return result;
            } else {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/ProtoSession.java

                //                        new DefaultPathTranslator(), new DefaultRootLocator()))));
                Map<String, String> properties = context.systemProperties;
    
                Path userHome = Paths.get(properties.get("user.home"));
                Path mavenUserHome = userHome.resolve(".m2");
                Path mavenSystemHome = properties.containsKey("maven.home")
                        ? Paths.get(properties.get("maven.home"))
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top