Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for compiler (0.11 sec)

  1. PathMapping.java

    Long version) { L56: asDocMeta().version(version); L57: } L58: L59: public String process(final PathMappingHelper pathMappingHelper, final String input) { L60: if (regexPattern == null) { L61: regexPattern = Pattern.compile(getRegex()); L62: } L63: final Matcher matcher = regexPattern.matcher(input); L64: if (matcher.find()) { L65: if (pathMapperFunc == null) { L66: final String replacement = StringUtil.isNotBlank(getReplacement())...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.3K bytes
  2. codeql.yml

    anced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning. L57: # If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how L58: # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages L59: steps: L60: - name: Checkout repository L61: uses: actions/checkout@v4 L62: L63: # Initializes...
    github.com/codelibs/fess/.github/workflows/code...
    Wed Aug 14 23:51:19 UTC 2024
      4.4K bytes
  3. transformer.xml

    name="featureMap">defaultFeatureMap</property> L10: <property name="propertyMap">defaultPropertyMap</property> L11: <property name="childUrlRuleMap">htmlUrlRuleMap</property> L12: <!-- L13: <property name="invalidUrlPattern">@java.util.regex.Pattern@compile("^\\s*javascript:|^\\s*mailto:|^\\s*irc:|^\\s*skype:|^\\s*callto:",@java.util.regex.Pattern@CASE_INSENSITIVE)</property> L14: --> L15: <property name="convertUrlMap"> L16: {"feed:" : "http:"} L17: </property> L18: <!-- segment --> L19: <postConstruct...
    github.com/codelibs/fess/src/main/resources/cra...
    Thu Jan 10 03:35:10 UTC 2019
      1.6K bytes
  4. JvmUtil.java

    L16:package org.codelibs.fess.util; L17: L18:import java.util.Arrays; L19:import java.util.regex.Matcher; L20:import java.util.regex.Pattern; L21: L22:public final class JvmUtil { L23: private static final Pattern VERSION_PREFIX_PATTERN = Pattern.compile("([0-9]+)(\\-?):(.*)"); L24: L25: private JvmUtil() { L26: // nothing L27: } L28: L29: public static String[] filterJvmOptions(final String[] values) { L30: final int version = getJavaVersion(); L31: return Arrays.stream(values).map(s...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.1K bytes
  5. ResourceUtil.java

    static String resolve(final String value) { L201: if (value == null) { L202: return null; L203: } L204: L205: final StringBuffer tunedText = new StringBuffer(value.length()); L206: final Pattern pattern = Pattern.compile("(\\$\\{([\\w\\.]+)\\})"); L207: final Matcher matcher = pattern.matcher(value); L208: while (matcher.find()) { L209: final String key = matcher.group(2); L210: String replacement = System.getProperty(key); L211:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 24 08:52:32 UTC 2024
      7.5K bytes
  6. ExecJob.java

    k.toString(), null, null)); L158: } L159: L160: protected void addFessCustomSystemProperties(final List<String> cmdList, final String regex) { L161: if (StringUtil.isNotBlank(regex)) { L162: final Pattern pattern = Pattern.compile(regex); L163: System.getProperties().keySet().stream().filter(k -> k != null && pattern.matcher(k.toString()).matches()) L164: .forEach(k -> addSystemProperty(cmdList, k.toString(), null, null)); L165: } L166:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      7.7K bytes
  7. PrunedTag.java

    attrValue + "]"; L108: } L109: L110: public static PrunedTag[] parse(final String value) { L111: return split(value, ",").get(stream -> stream.filter(StringUtil::isNotBlank).map(v -> { L112: final Pattern pattern = Pattern.compile("(\\w+)(\\[[^\\]]+\\])?(\\.[\\w\\-]+)?(#[\\w\\-]+)?"); L113: final Matcher matcher = pattern.matcher(v.trim()); L114: if (matcher.matches()) { L115: final PrunedTag tag = new PrunedTag(matcher.group(1)); L116:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      4.8K bytes
  8. ParameterUtil.java

    static Map<String, String> parse(final String value) { L50: final Map<String, String> paramMap = new LinkedHashMap<>(); L51: if (value != null) { L52: int unknownKey = 0; L53: final Pattern properyPattern = Pattern.compile(ComponentUtil.getFessConfig().getAppEncryptPropertyPattern()); L54: final PrimaryCipher cipher = ComponentUtil.getPrimaryCipher(); L55: final String[] lines = value.split("[\r\n]"); L56: for (final String line : lines)...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      6.5K bytes
  9. DictionaryCreator.java

    abstract class DictionaryCreator { L27: L28: protected Pattern pattern; L29: L30: @Resource L31: protected DictionaryManager dictionaryManager; L32: L33: protected DictionaryCreator(final String pattern) { L34: this.pattern = Pattern.compile(pattern); L35: } L36: L37: public DictionaryFile<? extends DictionaryItem> create(final String path, final Date timestamp) { L38: if (!isTarget(path)) { L39: return null; L40: } L41: L42: return newDictionary...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1.8K bytes
  10. RelatedContentHelper.java

    efix.length()); L75: if (StringUtil.isBlank(regex)) { L76: logger.warn("Unknown regex pattern: {}", entity.getTerm()); L77: } else { L78: pair.getSecond().add(new Pair<>(Pattern.compile(regex), entity.getContent())); L79: } L80: } else { L81: pair.getFirst().put(toLowerCase(entity.getTerm()), entity.getContent()); L82: } L83: }); L84: this.relatedContentMap = relatedContentMap;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      4.8K bytes
Back to top