Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pom.xml

    <artifactId>oss-parent</artifactId> L28: <version>9</version> L29: </parent> L30: <properties> L31: <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> L32: </properties> L33: <build> L34: <plugins> L35: <plugin> L36: <artifactId>maven-compiler-plugin</artifactId> L37: <version>3.10.1</version> L38: <configuration> L39: <source>1.8</source> L40: <target>1.8</target> L41: <encoding>UTF-8</encoding> L42: </configuration> L43: </plugin> L44: <plugin> L45: <arti...
    github.com/codelibs/curl4j/pom.xml
    Thu Oct 03 17:04:48 UTC 2024
      4K 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. 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
  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. 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
  6. 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
  7. 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
  8. KuromojiCSVUtil.java

    class for parsing CSV text L41: */ L42:public final class KuromojiCSVUtil { L43: private static final char QUOTE = '"'; L44: L45: private static final char COMMA = ','; L46: L47: private static final Pattern QUOTE_REPLACE_PATTERN = Pattern.compile("^\"([^\"]+)\"$"); L48: L49: private static final String ESCAPED_QUOTE = "\"\""; L50: L51: private KuromojiCSVUtil() { L52: } // no instance!!! L53: L54: /** L55: * Parse CSV line L56: * L57: * @param line L58: * ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.9K bytes
  9. 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
  10. 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
Back to top