- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for compiler (0.06 sec)
-
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.xmlThu Oct 03 17:04:48 UTC 2024 4K bytes -
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 -
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 -
codeql-analysis.yml
specified in a config file. L51: # Prefix the list here with "+" to use these queries and those in the config file. L52: # queries: ./path/to/local/query, your-org/your-repo/queries@main L53: L54: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). L55: # If this step fails, then you should remove it and run the build manually (see below) L56: - name: Autobuild L57: uses: github/codeql-action/autobuild@v1 L58: L59: # ℹ️ Command-line programs to...github.com/codelibs/curl4j/.github/workflows/co...Fri Oct 02 13:24:14 UTC 2020 2.5K bytes -
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 -
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 -
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 -
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 -
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 -
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