Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for defined (0.03 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapNews.java

     */
    package org.codelibs.fess.crawler.entity;
    
    import java.io.Serializable;
    
    /**
     * Represents a news entry within a sitemap URL.
     * This class encapsulates the properties of a news article as defined in the Google News Sitemap extension.
     *
     * <p>
     * The news extension allows you to provide additional information about news articles on your site.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  2. 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)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapImage.java

     */
    package org.codelibs.fess.crawler.entity;
    
    import java.io.Serializable;
    
    /**
     * Represents an image entry within a sitemap URL.
     * This class encapsulates the properties of an image as defined in the Google Image Sitemap extension.
     *
     * <p>
     * The image extension allows you to provide additional information about images on your pages.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapAlternateLink.java

     */
    package org.codelibs.fess.crawler.entity;
    
    import java.io.Serializable;
    
    /**
     * Represents an alternate link entry within a sitemap URL.
     * This class encapsulates the properties of an alternate link as defined in the hreflang annotation.
     *
     * <p>
     * The hreflang attribute tells search engines about alternate versions of a page in different languages
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/curl/Curl.java

     *   <li>DELETE</li>
     *   <li>HEAD</li>
     *   <li>OPTIONS</li>
     *   <li>CONNECT</li>
     *   <li>TRACE</li>
     * </ul>
     *
     * <p>The Curl class also defines an enum {@link Method} which lists all supported HTTP methods.</p>
     *
     * <p>The temporary directory used by Curl is defined by the {@code tmpDir} field, which is initialized
     * to the system's temporary directory.</p>
     */
    public class Curl {
    
        /**
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessActionAdjustmentProvider.java

        private static final Logger logger = LogManager.getLogger(FessActionAdjustmentProvider.class);
    
        // _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        // you can adjust your actions by overriding
        // default methods defined at the interface
        // _/_/_/_/_/_/_/_/_/_/
    
        protected Map<String, List<Pair<String, String>>> responseHeaderMap = new HashMap<>();
    
        protected List<Pair<String, String>> defaultResponseHeaders;
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapVideo.java

     */
    package org.codelibs.fess.crawler.entity;
    
    import java.io.Serializable;
    
    /**
     * Represents a video entry within a sitemap URL.
     * This class encapsulates the properties of a video as defined in the Video Sitemap extension.
     *
     * <p>
     * The video extension allows you to provide additional information about videos on your pages.
     * This can help Google index your videos and display them in Google Video search results.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

    import java.util.ArrayList;
    import java.util.List;
    
    import org.codelibs.core.lang.StringUtil;
    
    /**
     * Represents a URL entry within a sitemap.
     *
     * <p>
     * This class encapsulates the properties of a URL as defined in the sitemap XML format,
     * including its location, last modification date, change frequency, and priority.
     * It also supports sitemap extensions such as images, videos, news, and alternate links.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  9. MIGRATION.md

    4. Click **Import** - Fess will automatically:
       - Parse GSA collections
       - Create corresponding WebConfig or FileConfig entries
       - Convert URL patterns to Fess regex patterns
       - Set up LabelType (access control labels) if defined
    
    **Step 3: Verify Imported Configurations**
    
    After import, verify:
    - **Crawler > Web**: Check web crawling configurations
    - **Crawler > File**: Check file crawling configurations (SMB, FTP)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 12:40:11 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/suggest/SuggesterRefactoringTest.java

            suggester.shutdown();
        }
    
        /**
         * Test EXPECTED_INDEX_COUNT constant value.
         * Verifies that the constant is properly defined with expected value.
         */
        @Test
        public void testExpectedIndexCountConstant() throws Exception {
            final Field field = Suggester.class.getDeclaredField("EXPECTED_INDEX_COUNT");
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 13.4K bytes
    - Viewed (0)
Back to top