Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for userCode (0.09 sec)

  1. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                            final String favoriteUrl = DocumentUtil.getValue(doc, fessConfig.getIndexFieldUrl(), String.class);
                            final String userCode = userInfoHelper.getUserCode();
    
                            if (StringUtil.isBlank(userCode)) {
                                throw new WebApiException(HttpServletResponse.SC_BAD_REQUEST, "No user session.");
                            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        Integer getUserCodeMinLengthAsInteger();
    
        Integer getUserCodeMaxLengthAsInteger();
    
        default boolean isValidUserCode(final String userCode) {
            if (userCode == null) {
                return false;
            }
    
            final int length = userCode.length();
            if (getUserCodeMinLengthAsInteger().intValue() > length || getUserCodeMaxLengthAsInteger().intValue() < length) {
                return false;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:15 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 60 */
        String THUMBNAIL_SYSTEM_MONITOR_INTERVAL = "thumbnail.system.monitor.interval";
    
        /** The key of the configuration. e.g. userCode */
        String USER_CODE_REQUEST_PARAMETER = "user.code.request.parameter";
    
        /** The key of the configuration. e.g. 20 */
        String USER_CODE_MIN_LENGTH = "user.code.min.length";
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 468.5K bytes
    - Viewed (1)
  6. 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)
  7. compat/maven-model/src/test/java/org/apache/maven/model/v4/Xpp3DomPerfTest.java

        public static class AdditionState {
            List<Path> poms;
    
            @Setup(Level.Iteration)
            public void setUp() throws IOException {
                Path userHome = Paths.get(System.getProperty("user.home"));
                poms = Files.walk(userHome.resolve(".m2/repository/org/apache/maven"))
                        .filter(p -> p.getFileName().toString().endsWith(".pom"))
                        .collect(Collectors.toList());
            }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. compat/maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

        String DEFAULT_LOCAL_REPO_ID = MavenRepositorySystem.DEFAULT_LOCAL_REPO_ID;
    
        @SuppressWarnings("checkstyle:constantname")
        String userHome = System.getProperty("user.home");
    
        @SuppressWarnings("checkstyle:constantname")
        File userMavenConfigurationHome = new File(userHome, ".m2");
    
        @SuppressWarnings("checkstyle:constantname")
        File defaultUserLocalRepository = new File(userMavenConfigurationHome, "repository");
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. 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)
  10. 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