Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for commands (0.2 sec)

  1. README.fr.md

        $ mvn dbflute:download # (one time command)
        $ mvn dbflute:freegen
        $ mvn license:format
    
    ### Test d'integration
    
    Lancer le serveur Fess et éxécuter la commande suivante :
    
        $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201"
    
    Pour exécuter un seul cas de test case, vous pouvez utiliser la commande suivante :
    
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Feb 06 22:59:17 GMT 2023
    - 8.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

        protected int executeCommand(final String[] commands, final String username, final String password) {
            if (commands == null || commands.length == 0) {
                throw new CommandExecutionException("command is empty.");
            }
    
            if (logger.isInfoEnabled()) {
                logger.info("Command: {}", String.join(" ", commands));
            }
    
            final String[] cmds = stream(commands).get(stream -> stream.map(s -> {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  3. plugin.xml

    	<target name="remove.jars" if="with.fess">
    		<delete>
    			<fileset dir="${plugins.dir}">
    				<include name="configsync/commons-codec-*" />
    				<include name="dataformat/commons-codec-*" />
    				<include name="dataformat/commons-collections4-*" />
    				<include name="dataformat/commons-compress-*" />
    				<include name="dataformat/commons-math3-*" />
    				<include name="dataformat/curvesapi-*" />
    				<include name="dataformat/orangesignal-csv-*" />
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 04 02:03:51 GMT 2024
    - 3.5K bytes
    - Viewed (1)
  4. README.md

        $ mvn rpm:rpm   # .rpm package
        $ mvn jdeb:jdeb # .deb package
    
    ### Generate Source Code
    
        $ mvn dbflute:download # (one time command)
        $ mvn dbflute:freegen
        $ mvn license:format
    
    ### Integration Tests
    
    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"
    
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Feb 25 00:40:07 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exbhv/ScheduledJobBhv.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.es.config.exbhv;
    
    import java.util.regex.Pattern;
    
    import org.apache.commons.lang3.RandomUtils;
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.ThreadUtil;
    import org.codelibs.fess.es.config.bsbhv.BsScheduledJobBhv;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.dict.mapping;
    
    import java.util.Arrays;
    import java.util.Objects;
    
    import org.apache.commons.lang3.StringUtils;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.dict.DictionaryItem;
    
    public class CharMappingItem extends DictionaryItem {
        private final String[] inputs;
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.query;
    
    import java.util.Locale;
    
    import org.apache.commons.lang3.StringUtils;
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.apache.lucene.search.Query;
    import org.apache.lucene.search.WildcardQuery;
    import org.codelibs.fess.Constants;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/job/CrawlJob.java

    import java.util.ArrayList;
    import java.util.Date;
    import java.util.List;
    import java.util.concurrent.atomic.AtomicInteger;
    
    import javax.servlet.ServletContext;
    
    import org.apache.commons.lang3.StringUtils;
    import org.apache.commons.lang3.SystemUtils;
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.timer.TimeoutTask;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

                        if (updater != null) {
                            updater.write(line);
                        }
                        continue; // ignore empty lines and comments
                    }
    
                    String[] inputs;
                    String[] outputs;
    
                    final List<String> sides = split(line, "=>");
                    if (sides.size() > 1) { // explicit mapping
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SystemHelper.java

    import java.util.function.Supplier;
    import java.util.regex.Pattern;
    import java.util.stream.Collectors;
    
    import javax.annotation.PostConstruct;
    import javax.annotation.PreDestroy;
    
    import org.apache.commons.lang3.LocaleUtils;
    import org.apache.commons.lang3.StringUtils;
    import org.apache.logging.log4j.Level;
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.apache.logging.log4j.core.config.Configurator;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (1)
Back to top