- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for Patterns (0.06 sec)
-
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
Pattern[] patterns = (Pattern[]) propMap.get(CRAWLER_METADATA_CONTENT_EXCLUDES); if (patterns == null) { patterns = split(getCrawlerMetadataContentExcludes(), ",") .get(stream -> stream.filter(StringUtil::isNotBlank).map(Pattern::compile).toArray(n -> new Pattern[n])); propMap.put(CRAWLER_METADATA_CONTENT_EXCLUDES, patterns); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:15 UTC 2024 - 87.2K bytes - Viewed (0) -
android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java
/** * <b>Do not use this class directly. For access to public-suffix information, use {@link * com.google.common.net.InternetDomainName}.</b> * * <p>A generated static class containing public members which provide domain name patterns used in * determining whether a given domain name is an effective top-level domain (public suffix). * * <p>Because this class is used in GWT, the data members are stored in a space-efficient manner. * See {@link TrieParser}.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Aug 06 02:37:31 UTC 2024 - 73.6K bytes - Viewed (0) -
guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java
/** * <b>Do not use this class directly. For access to public-suffix information, use {@link * com.google.common.net.InternetDomainName}.</b> * * <p>A generated static class containing public members which provide domain name patterns used in * determining whether a given domain name is an effective top-level domain (public suffix). * * <p>Because this class is used in GWT, the data members are stored in a space-efficient manner. * See {@link TrieParser}.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Aug 06 02:37:31 UTC 2024 - 73.6K bytes - Viewed (0) -
fastapi/param_functions.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Oct 23 18:30:18 UTC 2024 - 62.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
public static final List<String> VALID_MODEL_VERSIONS = Collections.unmodifiableList(Arrays.asList("4.0.0", "4.1.0")); private static final Pattern EXPRESSION_NAME_PATTERN = Pattern.compile("\\$\\{(.+?)}"); private static final Pattern EXPRESSION_PROJECT_NAME_PATTERN = Pattern.compile("\\$\\{(project.+?)}"); private static final String ILLEGAL_FS_CHARS = "\\/:\"<>|?*";
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 77.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java
} source = source.replaceAll(Pattern.quote("${fess.dictionary.path}"), dictionaryPath)// .replaceAll(Pattern.quote("${fess.index.codec}"), fessConfig.getIndexCodec())// .replaceAll(Pattern.quote("${fess.index.number_of_shards}"), numberOfShards)// .replaceAll(Pattern.quote("${fess.index.auto_expand_replicas}"), autoExpandReplicas);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Oct 20 02:08:03 UTC 2024 - 86.1K bytes - Viewed (0) -
cmd/api-errors.go
Description: "Time stamp format pattern requires additional fields in the SQL expression.", HTTPStatusCode: http.StatusBadRequest, }, ErrEvaluatorInvalidTimestampFormatPatternSymbolForParsing: { Code: "EvaluatorInvalidTimestampFormatPatternSymbolForParsing",
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 01 22:13:18 UTC 2024 - 92.1K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
private CLIManager cliManager; private MessageBuilderFactory messageBuilderFactory; private FileSystem fileSystem = FileSystems.getDefault(); private static final Pattern NEXT_LINE = Pattern.compile("\r?\n"); public MavenCli() { this(null); } // This supports painless invocation by the Verifier during embedded execution of the core ITs
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 76.8K bytes - Viewed (0) -
cmd/peer-rest-server.go
if err := event.ValidateFilterRuleValue(values[peerRESTListenSuffix][0]); err != nil { return grid.NewRemoteErr(err) } suffix = values[peerRESTListenSuffix][0] } pattern := event.NewPattern(prefix, suffix) var eventNames []event.Name var mask pubsub.Mask for _, ev := range values[peerRESTListenEvents] { eventName, err := event.ParseName(ev) if err != nil {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 11:32:32 UTC 2024 - 53.2K bytes - Viewed (0) -
guava/src/com/google/common/base/CharMatcher.java
return description; } } /** Implementation of {@link #digit()}. */ private static final class Digit extends RangesMatcher { // Plug the following UnicodeSet pattern into // https://unicode.org/cldr/utility/list-unicodeset.jsp // [[:Nd:]&[:nv=0:]&[\u0000-\uFFFF]] // and get the zeroes from there. // Must be in ascending order.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 53.9K bytes - Viewed (0)