- Sort Score
- Num 10 results
- Language All
Results 61 - 70 of 227 for toen (0.02 seconds)
-
build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/AcceptedApiChangesJsonFileManagerTest.groovy
jsonFileManager.emptyAcceptedApiChanges(jsonFile) then: jsonFile.text == nonExistentAcceptedApiChanges() } def "can clean non-existing API changes"() { given: jsonFile << nonExistentAcceptedApiChanges() when: jsonFileManager.emptyAcceptedApiChanges(jsonFile) then: jsonFile.text == nonExistentAcceptedApiChanges() }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Aug 17 08:32:56 GMT 2021 - 2.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/HealthApiTests.java
.get("/api/v1/health") .then() .statusCode(200) .body("data", notNullValue()) .body("data.status", anyOf(equalTo("green"), equalTo("yellow"), equalTo("red"))); } @Test public void testHealthCheck_withoutContentType() { given().when() .get("/api/v1/health") .then() .statusCode(200)
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 2.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/FessApiAdminAction.java
*/ public FessApiAdminAction() { super(); } /** * Determines whether the current request is authorized to access admin API endpoints. * This method validates the access token and checks if the associated permissions * allow admin access according to the Fess configuration. * * @return true if admin access is allowed, false otherwise */ @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 2.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/SchedulerTests.java
// Try to start a non-existent job checkPutMethod(new HashMap<>(), "invalid_scheduler_id_12345/start").then().body("response.status", equalTo(1)); } @Test void testStopJob_notFound() { // Try to stop a non-existent job checkPutMethod(new HashMap<>(), "invalid_scheduler_id_12345/stop").then().body("response.status", equalTo(1)); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 2.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/FavoritesApiTests.java
params.put("queryId", queryId); given().contentType("application/json") .params(params) .when() .get("/api/v1/favorites") .then() .statusCode(200) .body("record_count", greaterThanOrEqualTo(0)) .body("data", notNullValue()); } @Test public void testGetFavorites_noQueryId() {
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) -
src/main/resources/fess_label_en.properties
labels.boost_document_rule_boost_expr=Boost Expression labels.boost_document_rule_sort_order=Sort Order labels.access_token_configuration=Access Token labels.access_token_title_details=Access Token labels.access_token_list_name=Name labels.access_token_name=Name labels.access_token_token=Token labels.access_token_expires=Expires labels.access_token_parameter_name=Parameter Name labels.access_token_updated_time=Created Date
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 48.9K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBadMultiLangSnippets.java
pair.get(1).lang == Language.KOTLIN) { addError(errors, file, new Error(pair.get(0).line, "Reversed order: found Groovy first then Kotlin. Expected Kotlin first then Groovy.")); } } private static String parseSourceLang(String lineTrimmed) { var m = SOURCE_LANG_PATTERN.matcher(lineTrimmed); if (m.matches()) {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Aug 29 10:12:17 GMT 2025 - 7.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
*/ protected ResourceUtil() { // nothing } /** * Gets the HTTP URL for the OpenSearch (Fesen) server. * First checks for a system-configured search engine address, * then falls back to the URL configured in FessConfig. * * @return the HTTP URL for the OpenSearch server */ public static String getFesenHttpUrl() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 14.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/AccessTokenDbm.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 11.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/ReqHeaderTests.java
requestBody.put("boost", 100.0); requestBody.put("available", true); requestBody.put("sort_order", 1); checkMethodBase(requestBody).post("/api/admin/webconfig/setting") .then() .body("response.created", equalTo(true)) .body("response.status", equalTo(0)); } String getWebConfigId() { final Map<String, Object> searchBody = new HashMap<>();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 4K bytes - Click Count (0)