Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for engines (0.21 sec)

  1. src/test/java/org/codelibs/fess/it/ITBase.java

        public static String getFessUrl() {
            return System.getProperty("test.fess.url", DEFAULT_FESS_URL);
        }
    
        public static String getEsUrl() {
            return System.getProperty("test.search_engine.url", DEFAULT_SEARCH_ENGINE_URL);
        }
    
        protected static RequestSpecification checkMethodBase(final Map<String, Object> body) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/packaging/rpm/init.d/fess

    prog="fess"
    pidfile="$PID_DIR/${prog}.pid"
    
    export FESS_TEMP_PATH
    export FESS_LOG_PATH
    export FESS_CONF_PATH
    export FESS_VAR_PATH
    export FESS_DICTIONARY_PATH
    export FESS_HEAP_SIZE
    export SEARCH_ENGINE_HOME
    export SEARCH_ENGINE_HTTP_URL
    export FESS_JAVA_OPTS
    export JAVA_HOME
    
    lockfile=/var/lock/subsys/$prog
    
    # backwards compatibility for old config sysconfig files, pre 0.90.1
    if [ -n $USER ] && [ -z $FESS_USER ] ; then 
    Shell Script
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 3.7K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. default */
        String search_engine_TYPE = "search_engine.type";
    
        /** The key of the configuration. e.g. http://localhost:9201 */
        String search_engine_HTTP_URL = "search_engine.http.url";
    
        /** The key of the configuration. e.g.  */
        String search_engine_HTTP_SSL_certificate_authorities = "search_engine.http.ssl.certificate_authorities";
    
        /** The key of the configuration. e.g.  */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  4. src/main/resources/fess_indices/_aws/fess.json

    "dasselbe", "dazu", "dein", "deine", "deinem", "deinen", "deiner", "deines", "denn", "derer", "dessen", "dich", "dir", "du", "dies", "diese", "diesem", "diesen", "dieser", "dieses", "doch", "dort", "durch", "ein", "eine", "einem", "einen", "einer", "eines", "einig", "einige", "einigem", "einigen", "einiger", "einiges", "einmal", "er", "ihn", "ihm", "es", "etwas", "euer", "eure", "eurem", "euren", "eurer", "eures", "für", "gegen", "gewesen", "hab", "habe", "haben", "hat", "hatte", "hatten", "hier", "hin",...
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Mar 23 12:38:28 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  5. README.md

    Launch Fess Server and run the following command:
    
        $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201"
    
    To run a single test case, you can use:
    
        $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" -Dtest=SearchApiTests
    
    ### Translate In Your Language
    
    Fess is internationalized software.
    
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Feb 25 00:40:07 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/Constants.java

        public static final String MATCHES_ALL_QUERY = "*:*";
    
        @Deprecated
        public static final String FESS_ES_HTTP_ADDRESS = "fess.es.http_address";
    
        public static final String FESS_SEARCH_ENGINE_HTTP_ADDRESS = "fess.search_engine.http_address";
    
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        public static final int DEFAULT_START_COUNT = 0;
    
        public static final String PROCESS_TYPE_REPLACE = "R";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  7. src/main/resources/fess_api.xml

    	</component>
    
    	<component name="searchApiManager" class="org.codelibs.fess.api.json.SearchApiManager">
    	</component>
    	<component name="searchEngineApiManager" class="org.codelibs.fess.api.engine.SearchEngineApiManager">
    	</component>
    
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Apr 02 03:04:36 GMT 2023
    - 534 bytes
    - Viewed (0)
  8. src/main/assemblies/files/fess

            fess_parms="$fess_parms -Dfess.foreground=yes"
            exec "$JAVA" $FESS_JAVA_OPTS $fess_parms -Dfess.es.dir="$SEARCH_ENGINE_HOME" -cp "$FESS_CLASSPATH" $props \
                    org.codelibs.fess.FessBoot $FESS_OPTS > /dev/null
        else
            exec "$JAVA" $FESS_JAVA_OPTS $fess_parms -Dfess.es.dir="$SEARCH_ENGINE_HOME" -cp "$FESS_CLASSPATH" $props \
                    org.codelibs.fess.FessBoot $FESS_OPTS <&- > /dev/null &
    Shell Script
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    break;
                }
            }
            client = createHttpClient(fessConfig, httpAddress);
    
            if (StringUtil.isNotBlank(httpAddress)) {
                System.setProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS, httpAddress);
            }
    
            waitForYellowStatus(fessConfig);
    
            indexConfigList.forEach(configName -> {
                final String[] values = configName.split("/");
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_de.properties

    labels.advance=Weiter
    labels.advance_search_title=Advanced Search
    labels.advance_search_must_queries=All diese Wörter
    labels.advance_search_phrase_query=Exakt dieses Wort oder dieser Satz
    labels.advance_search_should_queries=Eines dieser Wörter
    labels.advance_search_not_queries=Keines dieser Wörter
    labels.advance_search_filetype=Dateityp
    labels.advance_search_filetype_default=Alle Typen
    labels.advance_search_filetype_html=HTML
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
Back to top