- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 89 for Jest (0.04 sec)
-
README.md
$ mvn license:format L139: L140:### Tests d'Intégration L141: L142:Lancez le serveur Fess et exécutez la commande suivante : L143: L144: $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" L145: L146:Pour exécuter un seul cas de test, vous pouvez utiliser : L147: L148: $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" -Dtest=SearchApiTests L149: L150:###...github.com/codelibs/fess/docs/fr/README.mdSat Oct 12 07:19:47 UTC 2024 7.9K bytes -
AzureAdAuthenticatorTest.java
list.clear(); L29: authenticator.addGroupOrRoleName(list, "test", true); L30: assertEquals(1, list.size()); L31: assertEquals("test", list.get(0)); L32: L33: list.clear(); L34: authenticator.addGroupOrRoleName(list, "test", false); L35: assertEquals(1, list.size()); L36: assertEquals("test", list.get(0)); L37: L38: list.clear(); L39: authenticator.addGroupOrRoleName(list, "test@codelibs.org", true); L40: assertEquals(2, list.size());...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2K bytes -
QueryCommandTest.java
test_buildMatchPhraseQuery() { L45: assertQueryBuilder("test", "", MatchPhraseQueryBuilder.class); L46: assertQueryBuilder("test", "test", MatchPhraseQueryBuilder.class); L47: assertQueryBuilder("test", "a", MatchPhraseQueryBuilder.class); L48: assertQueryBuilder("test", "あ", MatchPhraseQueryBuilder.class); L49: assertQueryBuilder("test", "ア", MatchPhraseQueryBuilder.class); L50: assertQueryBuilder("test", "亜", MatchPhraseQueryBuilder.class); L51: asser...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 3.7K bytes -
index.jsp
<div class="mr-auto"></div> L32: <ul class="nav navbar-nav"> L33: <c:if test="${eoled}"> L34: <li class="nav-item" data-toggle="tooltip" data-placement="left" title="<la:message key="labels.eol_error" />"> L35: <a class="nav-link active" href="${eolLink}" target="_olh"><em class="fas fa-times-circle text-danger"></a> L36: </li> L37: </c:if> L38: <c:if test="${developmentMode}"> L39: <li class="nav-item" data-toggle="tooltip" data-placement="left"...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Oct 26 01:07:52 UTC 2024 6.9K bytes -
FieldConfigsTest.java
final FieldConfigs fieldConfigs = new FieldConfigs(Collections.emptyMap()); L27: assertTrue(fieldConfigs.getConfig("test").isEmpty()); L28: } L29: L30: public void test_values() { L31: final Map<String, String> params = Maps.of("foo", "bar"); L32: FieldConfigs fieldConfigs = new FieldConfigs(params); L33: assertTrue(fieldConfigs.getConfig("test").isEmpty()); L34: assertFalse(fieldConfigs.getConfig("foo").isEmpty()); L35: assertFalse(fieldConfigs.getC...github.com/codelibs/fess/src/test/java/org/code...Thu Jul 04 06:20:49 UTC 2024 3.3K bytes -
maven.yml
Maven L35: run: mvn -B antrun:run --file pom.xml L36: - name: Build with Maven L37: run: mvn -B source:jar javadoc:jar package --file pom.xml L38: - name: Run Fess L39: run: bash src/test/resources/before_script.sh L40: - name: Run Integration Test L41: run: bash src/test/resources/run.sh...github.com/codelibs/fess/.github/workflows/mave...Sat Feb 10 11:19:11 UTC 2024 1.1K bytes -
DocBoostMatcherTest.java
L90: docBoostMatcher.setBoostExpression("10"); L91: docBoostMatcher.setMatchExpression("data1 != null && data1.matches(\"test\")"); L92: L93: final Map<String, Object> map = new HashMap<String, Object>(); L94: L95: map.put("data1", "test"); L96: assertTrue(docBoostMatcher.match(map)); L97: L98: map.put("data1", "aaa test bbb"); L99: assertFalse(docBoostMatcher.match(map)); L100: L101: map.put("data1", "hoge"); L102: assertFalse(docBo...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 4.6K bytes -
PluginTests.java
tus", equalTo(0)); L120: } L121: L122: @Test L123: void testInstall_ng() { L124: checkPutMethod(Collections.emptyMap(), getInstallEndpointSuffix()).then().body("response.status", equalTo(1)); L125: } L126: L127: @Test L128: void testDelete_ng() { L129: checkDeleteMethod(Collections.emptyMap()).then().body("response.status", equalTo(1)); L130: } L131: L132: @Test L133: void testCRUD() throws Exception { L134: List<Map<String, Object>> available = L135:...github.com/codelibs/fess/src/test/java/org/code...Mon Jul 01 02:20:48 UTC 2024 6.3K bytes -
search.jsp
href="#searchOptions" class="badge badge-primary" L27: data-toggle="control-options"> <c:if test="${empty sort}"> L28: <la:message key="labels.searchoptions_score" /> L29: </c:if> <c:if test="${sort=='score.desc'}"> L30: <la:message key="labels.searchoptions_score" /> L31: </c:if> <c:if test="${sort=='filename.asc'}"> L32: <la:message key="labels.search_result_sort_filename_asc" /> L33: </c:if> <c:if test="${sort=='filename.desc'}"> L34: <la:message key="labels.search_result_sort_filename_desc"...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Oct 26 01:07:52 UTC 2024 6.6K bytes -
search.jsp
href="#searchOptions" class="badge badge-primary" L27: data-toggle="control-options"> <c:if test="${empty sort}"> L28: <la:message key="labels.searchoptions_score" /> L29: </c:if> <c:if test="${sort=='score.desc'}"> L30: <la:message key="labels.searchoptions_score" /> L31: </c:if> <c:if test="${sort=='filename.asc'}"> L32: <la:message key="labels.search_result_sort_filename_asc" /> L33: </c:if> <c:if test="${sort=='filename.desc'}"> L34: <la:message key="labels.search_result_sort_filename_desc"...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Oct 26 01:07:52 UTC 2024 6.6K bytes