- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for quote (0.07 sec)
-
adminlte.min.css
h2,blockquote.quote-yellow h3,blockquote.quote-yellow h4,blockquote.quote-yellow h5,blockquote.quote-yellow h6{color:#ffc107}blockquote.quote-green{border-color:#28a745}blockquote.quote-green h1,blockquote.quote-green h2,blockquote.quote-green h3,blockquote.quote-green h4,blockquote.quote-green h5,blockquote.quote-green h6{color:#28a745}blockquote.quote-teal{border-color:#20c997}blockquote.quote-teal h1,blockquote.quote-teal h2,blockquote.quote-teal h3,blockquote.quote-teal h4,blockquote.quote-teal h5,blockquote.quote-teal...github.com/codelibs/fess/src/main/webapp/css/ad...Sat Oct 26 01:49:09 UTC 2024 1.3M bytes -
adminlte.min.css.map
h3,\nblockquote.quote-cyan h4,\nblockquote.quote-cyan h5,\nblockquote.quote-cyan h6 {\n color: #17a2b8;\n}\n\nblockquote.quote-white {\n border-color: #fff;\n}\n\nblockquote.quote-white h1,\nblockquote.quote-white h2,\nblockquote.quote-white h3,\nblockquote.quote-white h4,\nblockquote.quote-white h5,\nblockquote.quote-white h6 {\n color: #fff;\n}\n\nblockquote.quote-gray {\n border-color: #6c757d;\n}\n\nblockquote.quote-gray h1,\nblockquote.quote-gray h2,\nblockquote.quote-gray h3,\nblockquote.quote-gray h4...github.com/codelibs/fess/src/main/webapp/css/ad...Sat Oct 26 01:49:09 UTC 2024 3.7M bytes -
FieldConfigs.java
return OptionalThing.empty(); L40: } L41: L42: public static class Config { L43: L44: private final String[] values; L45: L46: public Config(final String value) { L47: values = StreamUtil.split(value, Pattern.quote("|")).get(stream -> stream.map(String::trim).toArray(n -> new String[n])); L48: } L49: L50: public boolean isCache() { L51: for (final String value : values) { L52: if ("cache".equalsIgnoreCase(value)) { L53:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 2.3K bytes -
SearchEngineClient.java
dictionaryPath = dictionaryPath + "/"; L536: } L537: source = source.replaceAll(Pattern.quote("${fess.dictionary.path}"), dictionaryPath)// L538: .replaceAll(Pattern.quote("${fess.index.codec}"), fessConfig.getIndexCodec())// L539: .replaceAll(Pattern.quote("${fess.index.number_of_shards}"), numberOfShards)// L540: .replaceAll(Pattern.quote("${fess.index.auto_expand_replicas}"), autoExpandReplicas); L541: for (final UnaryOperator<String>...github.com/codelibs/fess/src/main/java/org/code...Sun Oct 20 02:08:03 UTC 2024 86.1K bytes -
ViewHelper.java
if (!fessConfig.isResponseHighlightContentTitleEnabled()) { L233: return value; L234: } L235: return getQuerySet().map(querySet -> { L236: final String pattern = querySet.stream().map(LaFunctions::h).map(Pattern::quote).collect(Collectors.joining("|")); L237: if (StringUtil.isBlank(pattern)) { L238: return null; L239: } L240: final Matcher matcher = Pattern.compile(pattern, Pattern.CASE_INSENSITIVE | Pattern.UNICOD...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 40.2K bytes -
WebFsIndexHelper.java
nfig.getConfigId()); L208: if (excludedUrlList != null) { L209: excludedUrlList.stream().filter(StringUtil::isNotBlank).map(String::trim).distinct().forEach(u -> { L210: final String urlValue = Pattern.quote(u); L211: crawler.addExcludeFilter(urlValue); L212: if (logger.isInfoEnabled()) { L213: logger.info("Excluded URL from failures: {}", urlValue); L214: } L215: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 22.6K bytes -
SystemHelper.java
L264: L265: final String p = path.trim(); L266: if (p.startsWith("#")) { L267: return StringUtils.EMPTY; L268: } L269: L270: if (p.startsWith(GsaConfigParser.CONTAINS)) { L271: return ".*" + Pattern.quote(p.substring(GsaConfigParser.CONTAINS.length())) + ".*"; L272: } L273: L274: if (p.startsWith(GsaConfigParser.REGEXP)) { L275: return p.substring(GsaConfigParser.REGEXP.length()); L276: } L277: L278: if (p.sta...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 17 12:10:08 UTC 2024 27.2K bytes -
FessProp.java
getPluginVersionFilter(); L2127: L2128: default boolean isTargetPluginVersion(final String version) { L2129: final Pattern pattern; L2130: if (StringUtil.isBlank(getPluginVersionFilter())) { L2131: pattern = Pattern.compile("^" + Pattern.quote(ComponentUtil.getSystemHelper().getProductVersion()) + ".*"); L2132: } else { L2133: pattern = Pattern.compile(getPluginVersionFilter()); L2134: } L2135: return pattern.matcher(version).matches(); L2136: } L2137:...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:15 UTC 2024 87.2K bytes -
QueryParser.java
defaultField = f; L138: } L139: L140: @Override L141: protected Query getFieldQuery(final String field, final String queryText, final boolean quoted) throws ParseException { L142: final org.apache.lucene.search.Query query = super.getFieldQuery(field, queryText, quoted); L143: if (quoted && query instanceof final TermQuery termQuery) { L144: final Pair<String, String> splitField = splitField(defaultField, field); L145: if...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 5.6K bytes -
bootstrap.min.css.map
--#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$color}: #{$value};\n }\n\n @each $bp, $value in $grid-breakpoints {\n --breakpoint-#{$bp}: #{$value};\n }\n\n // Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --font-family-sans-serif: #{inspect($font-family-sans-serif)};\n --font-family-monospace: #{inspect($font-family-monospace)};\n}\n","// stylelint-disable de...github.com/codelibs/fess/src/main/webapp/css/ad...Sat Oct 26 01:49:09 UTC 2024 639.3K bytes