Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for musste (0.05 sec)

  1. src/main/java/org/codelibs/core/io/FileUtil.java

         *     throw new SecurityException("Path traversal attempt detected");
         * }
         * </pre>
         *
         * @param pathToCheck the path to validate (must not be {@literal null})
         * @param baseDirectory the base directory that the path must be within (must not be {@literal null})
         * @return true if the path is safe (within the base directory), false otherwise
         */
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/query/BooleanQueryCommand.java

                final QueryBuilder queryBuilder = getQueryProcessor().execute(context, clause.query(), boost);
                if (queryBuilder != null) {
                    switch (clause.occur()) {
                    case MUST:
                        boolQuery.must(queryBuilder);
                        break;
                    case SHOULD:
                        boolQuery.should(queryBuilder);
                        break;
                    case MUST_NOT:
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/Suggester.java

            this.client = Objects.requireNonNull(client, "client must not be null");
            suggestSettings = Objects.requireNonNull(settings, "settings must not be null");
            this.readingConverter = Objects.requireNonNull(readingConverter, "readingConverter must not be null");
            this.contentsReadingConverter = Objects.requireNonNull(contentsReadingConverter, "contentsReadingConverter must not be null");
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 21.6K bytes
    - Viewed (3)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapVideo.java

         * Must be one of the supported formats.
         */
        private String contentLoc;
    
        /**
         * A URL pointing to a player for a specific video.
         * Usually this is the information in the src element of an &lt;embed&gt; tag.
         */
        private String playerLoc;
    
        /**
         * The duration of the video in seconds.
         * Value must be from 1 to 28800 (8 hours).
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/io/SerializeUtil.java

            // Reject everything else
            return ObjectInputFilter.Status.REJECTED;
        };
    
        /**
         * Tests if the object can be serialized.
         *
         * @param obj the object to be serialized (must not be {@literal null})
         * @return the deserialized object
         */
        public static Object serialize(final Object obj) {
            assertArgumentNotNull("obj", obj);
    
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/suggest/normalizer/ICUNormalizerTest.java

            try {
                new ICUNormalizer(null);
                fail("Expected IllegalArgumentException");
            } catch (IllegalArgumentException e) {
                assertEquals("transliteratorId must not be null", e.getMessage());
            }
        }
    
        public void test_invalidTransliteratorId() {
            try {
                new ICUNormalizer("Invalid-Transliterator-ID-12345");
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 17 14:23:01 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapNews.java

         * It must exactly match the name as it appears on your articles.
         */
        private String publicationName;
    
        /**
         * The language of your publication.
         * It should be an ISO 639 Language Code (either 2 or 3 letters).
         */
        private String publicationLanguage;
    
        /**
         * The date of publication of the article.
         * The date must be in W3C format.
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  8. src/main/assemblies/files/fess.in.bat

    @echo off
    
    if DEFINED JAVA_HOME goto cont
    
    :err
    ECHO JAVA_HOME environment variable must be set! 1>&2
    EXIT /B 1 
    
    :cont
    set SCRIPT_DIR=%~dp0
    for %%I in ("%SCRIPT_DIR%..") do set FESS_HOME=%%~dpfI
    
    
    REM ***** JAVA options *****
    
    if "%FESS_MIN_MEM%" == "" (
    set FESS_MIN_MEM=256m
    )
    
    if "%FESS_MAX_MEM%" == "" (
    set FESS_MAX_MEM=1g
    )
    
    if NOT "%FESS_HEAP_SIZE%" == "" (
    set FESS_MIN_MEM=%FESS_HEAP_SIZE%
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 03:48:59 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/curl/io/ContentCache.java

         * @throws IllegalArgumentException if data is null
         */
        public ContentCache(final byte[] data) {
            if (data == null) {
                throw new IllegalArgumentException("data must not be null");
            }
            this.data = data.clone();
            this.file = null;
        }
    
        /**
         * Constructs a ContentCache with the given file.
         *
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorFactory.java

         * If no extractor exists for the key, a new array containing the extractor is created and associated with the key.
         *
         * @param key       The key associated with the extractor. Must not be null or blank.
         * @param extractor The extractor to add. Must not be null.
         */
        public void addExtractor(final String key, final Extractor extractor) {
            if (StringUtil.isBlank(key)) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 12:19:14 UTC 2025
    - 7.4K bytes
    - Viewed (0)
Back to top