- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 38 for valueOf (0.05 sec)
-
AdminDesignAction.java
fileName, final String jspType) { L312: try { L313: final String[] values = URLDecoder.decode(fileName, Constants.UTF_8).split(":"); L314: if (values.length != 2) { L315: throwValidationError(messages -> messages.addErrorsInvalidDesignJspFileName(GLOBAL), this::asListHtml); L316: } L317: final String jspFileName = systemHelper.getDesignJspFileName(values[1]); L318: if (jspFileName == null) { L319: throwValidationError(messages...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 16.1K bytes -
IndexingHelperTest.java
id = "001"; L233: final String field = "content"; L234: final String value = "test"; L235: L236: assertTrue(indexingHelper.updateDocument(client, id, field, value)); L237: assertEquals("fess.update", resultMap.get("index")); L238: assertEquals(id, resultMap.get("id")); L239: assertEquals(field, resultMap.get("field")); L240: assertEquals(value, resultMap.get("value")); L241: } L242: L243: public void test_deleteDocument() { L244: final...github.com/codelibs/fess/src/test/java/org/code...Wed Jul 24 08:54:24 UTC 2024 23.4K bytes -
Crawler.java
(StringUtil.isNotBlank(dataConfigIds)) { L161: final String[] values = dataConfigIds.split(","); L162: return createConfigIdList(values); L163: } L164: return null; L165: } L166: L167: private static List<String> createConfigIdList(final String[] values) { L168: final List<String> idList = new ArrayList<>(); L169: Collections.addAll(idList, values); L170: return idList; L171: } L172: L173: @Override...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 24K bytes -
SearchLogHelper.java
processSearchLogQueue(final Queue<SearchLog> queue) { L265: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L266: final String value = fessConfig.getPurgeByBots(); L267: String[] botNames; L268: if (StringUtil.isBlank(value)) { L269: botNames = StringUtil.EMPTY_STRINGS; L270: } else { L271: botNames = value.split(","); L272: } L273: L274: final List<SearchLog> searchLogList = new ArrayList<>(); L275: final Map<String, UserInfo>...github.com/codelibs/fess/src/main/java/org/code...Mon Jul 22 02:07:37 UTC 2024 21.7K bytes -
FessMultipartRequestHandler.java
encoding = Charset.forName(request.getCharacterEncoding()); L254: String value = null; L255: boolean haveValue = false; L256: if (encoding != null) { L257: try { L258: value = item.getString(encoding); L259: haveValue = true; L260: } catch (final Exception e) {} L261: } L262: if (!haveValue) { L263: try { L264: value = item.getString(Charset.forName("ISO-8859-1")); L265: } catch (final...github.com/codelibs/fess/src/main/java/org/code...Wed Oct 23 13:27:21 UTC 2024 18.6K bytes -
PluginHelper.java
new ArrayList<>(); L262: boolean isName = true; L263: for (final String value : baseName.split("-")) { L264: if (isName && value.length() > 0 && value.charAt(0) >= '0' && value.charAt(0) <= '9') { L265: isName = false; L266: } L267: if (isName) { L268: nameList.add(value); L269: } else { L270: versionList.add(value); L271: } L272: } L273: return new Artifact(nameList.strea...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 24 01:47:10 UTC 2024 17.8K bytes -
advance.jsp
styleId="numSearchOption" styleClass="form-control"> L151: <option value=""> L152: <la:message key="labels.search_result_select_num" /> L153: </option> L154: <la:option value="10">10</la:option> L155: <la:option value="20">20</la:option> L156: <la:option value="30">30</la:option> L157: <la:option value="40">40</la:option> L158: <la:option value="50">50</la:option> L159: <la:option value="100">100</la:option> L160: </la:select> L161: </div> L162: ...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Oct 26 01:07:52 UTC 2024 14.9K bytes -
QueryFieldConfig.java
L259: final Pair<String, Float> pair = new Pair<>(); L260: final String[] values = s.split(":"); L261: if (values.length == 1) { L262: pair.setFirst(values[0].trim()); L263: pair.setSecond(1.0f); L264: } else if (values.length > 1) { L265: pair.setFirst(values[0]); L266: pair.setSecond(Float.parseFloat(values[1])); L267: } else { L268: return null; L269: } L270:...github.com/codelibs/fess/src/main/java/org/code...Mon Jul 22 04:30:56 UTC 2024 16K bytes -
advance.jsp
styleId="numSearchOption" styleClass="form-control"> L151: <option value=""> L152: <la:message key="labels.search_result_select_num" /> L153: </option> L154: <la:option value="10">10</la:option> L155: <la:option value="20">20</la:option> L156: <la:option value="30">30</la:option> L157: <la:option value="40">40</la:option> L158: <la:option value="50">50</la:option> L159: <la:option value="100">100</la:option> L160: </la:select> L161: </div> L162: ...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Oct 26 01:07:52 UTC 2024 14.9K bytes -
FessXpathTransformerTest.java
assertEquals("http://hoge.com/a", value); L773: L774: value = transformer.normalizeCanonicalUrl("http://hoge.com/", "aaa"); L775: assertEquals("http://hoge.com/aaa", value); L776: L777: value = transformer.normalizeCanonicalUrl("http://hoge.com/", "/aaa"); L778: assertEquals("http://hoge.com/aaa", value); L779: L780: value = transformer.normalizeCanonicalUrl("http://hoge.com/bbb", "aaa"); L781: assertEquals("http://hoge.com/aaa", value); L782: L783: value...github.com/codelibs/fess/src/test/java/org/code...Thu Oct 24 13:01:38 UTC 2024 41.3K bytes