Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 124 for patterns (0.54 sec)

  1. src/main/java/org/codelibs/fess/helper/PluginHelper.java

    import java.util.Collections;
    import java.util.Comparator;
    import java.util.List;
    import java.util.Map;
    import java.util.concurrent.TimeUnit;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    import java.util.stream.Collectors;
    
    import javax.xml.XMLConstants;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    
    import org.apache.commons.lang3.StringUtils;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  2. src/main/resources/fess_message_ko.properties

    constraints.Min.message = {item}는 {value} 이상으로 하십시오.
    constraints.NotNull.message = {item}은 null이면 안됩니다.
    constraints.Null.message = {item}는 null이 아니면 안됩니다.
    constraints.Past.message = {item}은 과거의 값으로 해야 합니다.
    constraints.Pattern.message = {item}가 「{regexp}」 에 일치하지 않습니다.
    constraints.Size.message = {item}의 크기는 {min}에서 {max}의 범위합니다.
    # ----------------------------------------------------------
    # Hibernate Validator
    # -------------------
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jul 07 06:11:30 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess.json

            },
            "zero_width_spaces": {
                "type":       "mapping",
                "mappings": [ "\\u200C=> "]
            },
            "removeall_filter": {
              "type": "pattern_replace",
              "pattern":"(.*)",
              "replacement":""
            }
          },
          "filter": {
            "stemmer_en_filter": {
              "type": "stemmer",
              "name": "english"
            },
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Aug 11 01:26:55 GMT 2022
    - 39.9K bytes
    - Viewed (2)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String CONSTRAINTS_Past_MESSAGE = "{constraints.Past.message}";
    
        /** The key of the message: {item} must match "{regexp}". */
        public static final String CONSTRAINTS_Pattern_MESSAGE = "{constraints.Pattern.message}";
    
        /** The key of the message: Size of {item} must be between {min} and {max}. */
        public static final String CONSTRAINTS_Size_MESSAGE = "{constraints.Size.message}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_ja.properties

    constraints.Min.message = {item} は {value} 以上にしてください。
    constraints.NotNull.message = {item} は未入力です。
    constraints.Null.message = {item} は null でなければなりません。
    constraints.Past.message = {item} は過去の値にする必要があります。
    constraints.Pattern.message = {item} が 「{regexp}」 に一致しません。
    constraints.Size.message = {item}のサイズは {min} 文字から {max} 文字の範囲にしてください。
    # ----------------------------------------------------------
    # Hibernate Validator
    # -------------------
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 15.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/convert/StringConversionUtil.java

         *            変換元のオブジェクト
         * @param pattern
         *            パターン文字列
         * @return 変換された{@literal String}
         */
        public static String toString(final Number value, final String pattern) {
            if (value != null) {
                if (pattern != null) {
                    return new DecimalFormat(pattern).format(value);
                }
                return value.toString();
            }
            return null;
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/convert/DoubleConversionUtil.java

        }
    
        /**
         * {@link Double}に変換します。
         *
         * @param o
         *            変換元のオブジェクト
         * @param pattern
         *            パターン文字列
         * @return 変換された{@link Double}
         */
        public static Double toDouble(final Object o, final String pattern) {
            if (o == null) {
                return null;
            } else if (o instanceof Double) {
                return (Double) o;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/env/crawler/resources/log4j2.xml

    			filePattern="${log.file.basedir}/${domain.name}${backup.date.suffix}-%i.log.gz">
    			<PatternLayout><Pattern>${log.pattern}</Pattern></PatternLayout><!-- <EcsLayout serviceName="fess" eventDataset="crawler" /> -->
    			<Policies>
    				<TimeBasedTriggeringPolicy />
    				<SizeBasedTriggeringPolicy size="100 MB" />
    			</Policies>
    			<DefaultRolloverStrategy fileIndex="max" min="1"
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Feb 20 13:05:30 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/exentity/PathMapping.java

    public class PathMapping extends BsPathMapping {
    
        private static final Logger logger = LogManager.getLogger(PathMapping.class);
    
        private static final long serialVersionUID = 1L;
    
        protected Pattern userAgentPattern;
    
        protected Pattern regexPattern;
    
        protected BiFunction<String, Matcher, String> pathMapperFunc;
    
        public String getId() {
            return asDocMeta().id();
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/_aws/fess.json

            },
            "zero_width_spaces": {
                "type":       "mapping",
                "mappings": [ "\\u200C=> "]
            },
            "removeall_filter": {
              "type": "pattern_replace",
              "pattern":"(.*)",
              "replacement":""
            }
          },
          "filter": {
            "stemmer_en_filter": {
              "type": "stemmer",
              "name": "english"
            },
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue Mar 23 12:38:28 GMT 2021
    - 117.3K bytes
    - Viewed (0)
Back to top