- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 126 for 9200 (0.04 seconds)
-
docs/de/README.md
$ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" Um einen einzelnen Testfall auszuführen, können Sie verwenden: $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" -Dtest=SearchApiTests ### In Ihre Sprache übersetzen Fess ist eine internationalisierte Software.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Tue Nov 11 22:42:32 GMT 2025 - 7.8K bytes - Click Count (0) -
docs/zh-CN/README.md
### 集成测试 启动 Fess 服务器并运行以下命令: $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" 要运行单个测试用例,您可以使用: $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" -Dtest=SearchApiTests ### 翻译为您的语言 Fess 是国际化软件。 如果您想为您的语言添加标签/消息,请翻译属性文件,然后将其重命名为 fess\_\*\_[lang].properties。Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Tue Nov 11 22:42:32 GMT 2025 - 7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/BadWordTests.java
int statusCode = response.getStatusCode(); // Accept either 200 (success) or other status codes based on implementation assertTrue(statusCode == 200 || statusCode == 400, "Status code should be 200 or 400, but was " + statusCode); if (statusCode == 200) { JsonPath jsonPath = JsonPath.from(response.asString());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/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java
/** * The CRUD mode for the form. */ @ValidateTypeFailure public Integer crudMode; /** * The name of the web configuration. */ @Required @Size(max = 200) public String name; /** * The description of the web configuration. */ @Size(max = 1000) public String description; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/PopularWordsApiTests.java
@Test public void testPopularWords_ok() { given().contentType("application/json") .when() .get("/api/v1/popular-words") .then() .statusCode(200) .body("record_count", greaterThanOrEqualTo(0)) .body("data", notNullValue()); } @Test public void testPopularWords_withSeed() {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/ElevateWordTests.java
.when() .put(getApiPath() + "/upload"); int statusCode = response.getStatusCode(); assertTrue(statusCode == 200 || statusCode == 400, "Status code should be 200 or 400, but was " + statusCode); if (statusCode == 200) { JsonPath jsonPath = JsonPath.from(response.asString()); assertEquals(Integer.valueOf(0), jsonPath.get("response.status")); } }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 4K bytes - Click Count (0) -
src/main/config/openapi/openapi-user.yaml
- name: callback in: query description: Callback name for using JSONP required: false schema: type: string responses: '200': description: Successful operation content: application/json: schema: type: object properties: q:Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu May 09 06:31:27 GMT 2024 - 21.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java
/** The CRUD operation mode for this form. */ @ValidateTypeFailure public Integer crudMode; /** The name of the file configuration (required, maximum 200 characters). */ @Required @Size(max = 200) public String name; /** The description of the file configuration (maximum 1000 characters). */ @Size(max = 1000) public String description;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/NotificationHelper.java
try (CurlResponse response = Curl.post(url).header("Content-Type", "application/json").body(body).execute()) { if (response.getHttpStatusCode() == 200) { if (logger.isDebugEnabled()) { logger.debug("Sent {} to {}.", body, url); } } else {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.2K bytes - Click Count (0) -
docs/ko/README.md
Fess 서버를 시작하고 다음 명령을 실행합니다: $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" 단일 테스트 케이스를 실행하려면 다음을 사용할 수 있습니다: $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" -Dtest=SearchApiTests ### 언어 번역 Fess는 국제화된 소프트웨어입니다.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Tue Nov 11 22:42:32 GMT 2025 - 8K bytes - Click Count (1)