- Sort Score
- Num 10 results
- Language All
Results 131 - 140 of 147 for baseDir (0.06 seconds)
-
src/test/java/org/codelibs/fess/it/search/SuggestWordsApiTests.java
/** * Integration tests for the Suggest Words API (/api/v1/suggest-words) */ @Tag("it") public class SuggestWordsApiTests extends ITBase { @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); } @AfterAll protected static void tearDownAll() { deleteTestToken(); } @Test public void testSuggestWords_ok() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 5.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/LabelsApiTests.java
private static final String TEST_LABEL_VALUE = "labelsApiTest_value"; private static String testLabelId; @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); } @AfterAll protected static void tearDownAll() { if (testLabelId != null) { deleteLabel(testLabelId); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 4.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/PopularWordsApiTests.java
/** * Integration tests for the Popular Words API (/api/v1/popular-words) */ @Tag("it") public class PopularWordsApiTests extends ITBase { @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); } @AfterAll protected static void tearDownAll() { deleteTestToken(); } @Test public void testPopularWords_ok() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 3.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/DocumentsTests.java
private static final String SEARCHLIST_API_PATH = "/api/admin/searchlist"; private static final String KEY_PROPERTY = "title"; @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); } @AfterAll protected static void tearDownAll() { // Clean up test documents final Map<String, Object> searchBody = new HashMap<>();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/ScrollSearchApiTests.java
private static String fileConfigId; private static String crawlLabelId; @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); // Create and execute a file crawler crawlLabelId = createCrawlLabel(); createFileConfig(); logger.info("FileConfig is created");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 7.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/FavoritesApiTests.java
private static String fileConfigId; private static String crawlLabelId; @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); // Create and execute a file crawler crawlLabelId = createCrawlLabel(); createFileConfig(); logger.info("FileConfig is created");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 9.9K bytes - Click Count (0) -
docs/fr/docs/history-design-future.md
Par exemple, il était clair que l'idéal était de se baser sur les annotations de type Python standard. De plus, la meilleure approche était d'utiliser des normes déjà existantes.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 4.8K bytes - Click Count (0) -
docs/pt/docs/tutorial/schema-extra-example.md
Depois, o JSON Schema adicionou um campo [`examples`](https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.9.5) em uma nova versão da especificação. E então o novo OpenAPI 3.1.0 passou a se basear na versão mais recente (JSON Schema 2020-12), que incluiu esse novo campo `examples`. E agora esse novo campo `examples` tem precedência sobre o antigo campo único (e customizado) `example`, que agora está descontinuado.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 9.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/CrudTestBase.java
// ================ // Constant // ================ protected String getIdKey() { return "id"; } @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); } @BeforeEach protected void init() { } @AfterEach protected void tearDown() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 21 13:29:45 GMT 2025 - 9.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/FailureUrlTests.java
private static final String API_PATH = "/api/admin/failureurl"; private static String webConfigId; @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); // Create and execute a web crawler to generate failure URL logs createWebConfig(); logger.info("WebConfig is created"); refresh();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.1K bytes - Click Count (0)