- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 538 for patterns (0.11 sec)
-
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlFilterService.java
} protected LoadingCache<String, List<Pattern>> createFilterCache(final String type) { return CacheBuilder.newBuilder()// .expireAfterWrite(filterCacheExpireAfterWrite, TimeUnit.SECONDS)// .build(new CacheLoader<String, List<Pattern>>() { @Override public List<Pattern> load(final String key) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 6.3K bytes - Viewed (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt
) val excludes = listOf("**/internal/**") private val includePackagePatterns: List<Pattern> by lazy { includes.map { if (it.endsWith("/**")) { Pattern.compile(it.substring(0, it.length - 3).replace("/", "\\.") + "(\\..+)?") } else { Pattern.compile(it.substring(0, it.length - 2).replace("/", "\\.") + "\\.[^.]+") } } }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jun 12 23:20:08 UTC 2024 - 2.4K bytes - Viewed (0) -
guava/src/com/google/common/base/CommonPattern.java
/** * The subset of the {@link java.util.regex.Pattern} API which is used by this package, and also * shared with the {@code re2j} library. For internal use only. Please refer to the {@code Pattern} * javadoc for details. */ @GwtCompatible @ElementTypesAreNonnullByDefault abstract class CommonPattern { public abstract CommonMatcher matcher(CharSequence t); public abstract String pattern(); public abstract int flags();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Apr 09 00:52:54 UTC 2021 - 1.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java
} int current = 0; boolean added = false; final Map<Pattern, CrawlerClient> newClientMap = new LinkedHashMap<>(); for (final Map.Entry<Pattern, CrawlerClient> entry : clientMap.entrySet()) { if (pos == current) { newClientMap.put(Pattern.compile(regex), client); added = true; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 4.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/FessCrawlerThreadTest.java
import java.util.List; import java.util.regex.Pattern; import org.codelibs.core.misc.Pair; import org.codelibs.fess.unit.UnitFessTestCase; public class FessCrawlerThreadTest extends UnitFessTestCase { public void test_getClientRuleList() { FessCrawlerThread crawlerThread = new FessCrawlerThread(); List<Pair<String, Pattern>> list = crawlerThread.getClientRuleList(null);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PasswordBasedExtractor.java
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 3.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/RegexRule.java
} return allRequired; } public void addRule(final String key, final String regex) { regexMap.put(key, Pattern.compile(regex)); } public void addRule(final String key, final Pattern pattern) { regexMap.put(key, pattern); } public boolean isDefaultRule() { return defaultRule; } public void setDefaultRule(final boolean defaultRule) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 3.4K bytes - Viewed (0) -
guava/src/com/google/common/base/Platform.java
static String emptyToNull(@CheckForNull String string) { return stringIsNullOrEmpty(string) ? null : string; } static CommonPattern compilePattern(String pattern) { Preconditions.checkNotNull(pattern); return patternCompiler.compile(pattern); } static boolean patternCompilerIsPcreLike() { return patternCompiler.isPcreLike(); } private static PatternCompiler loadPatternCompiler() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 15 22:32:14 UTC 2024 - 3.9K bytes - Viewed (0) -
src/buildall.bash
if [ "$sete" = true ]; then set -e fi pattern="$1" if [ "$pattern" = "" ]; then pattern=. fi ./make.bash || exit 1 GOROOT="$(cd .. && pwd)" gettargets() { ../bin/go tool dist list | sed -e 's|/|-|' | grep -E -v '^(android|ios)' # need C toolchain even for cross-compiling echo linux-arm-arm5 } selectedtargets() { gettargets | grep -E "$pattern" }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Apr 23 17:45:23 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/FloatConversionUtil.java
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.6K bytes - Viewed (0)