Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 134 for jsonp (0.03 sec)

  1. src/main/resources/fess_config.properties

    api.search.accept.referers=
    # Whether to enable scroll for API search.
    api.search.scroll=false
    # Headers for API JSON response.
    api.json.response.headers=Referrer-Policy:strict-origin-when-cross-origin
    # Whether to include exceptions in API JSON response.
    api.json.response.exception.included=false
    # Headers for API GSA response.
    api.gsa.response.headers=Referrer-Policy:strict-origin-when-cross-origin
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'api.jsonp.enabled'. <br>
         * The value is, e.g. false <br>
         * comment: Whether to enable JSONP for API.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getApiJsonpEnabled();
    
        /**
         * Is the property for the key 'api.jsonp.enabled' true? <br>
         * The value is, e.g. false <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  3. src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java

            assertTrue(result2 instanceof MatchAllQueryBuilder);
    
            // Both should generate the same JSON
            String json1 = result1.toString().replaceAll("[\\s\\n]", "");
            String json2 = result2.toString().replaceAll("[\\s\\n]", "");
            assertEquals(json1, json2);
        }
    
        public void test_execute_withVeryLargeBoost() {
            // Test execute method with very large boost value
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  4. gradle/libs.versions.toml

    kotlinx-serialization-core = { module = "org.jetbrains.kotlinx:kotlinx-serialization-core", version.ref = "kotlinx-serialization" }
    kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "kotlinx-serialization" }
    mockserver = { module = "org.testcontainers:mockserver", version.ref = "testcontainers" }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Aug 31 17:41:20 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess.json

    Shinsuke Sugaya <******@****.***> 1749219462 +0900
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jun 06 14:17:42 UTC 2025
    - 39.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/curl/CurlResponseTest.java

            headers.put("CONTENT-LENGTH", Arrays.asList("100"));
            headers.put("accept-encoding", Arrays.asList("gzip"));
            response.setHeaders(headers);
    
            // All header access should be case-insensitive
            assertEquals("application/json", response.getHeaderValue("content-type"));
            assertEquals("application/json", response.getHeaderValue("CONTENT-TYPE"));
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Thu Jul 31 01:01:12 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java

        public HtmlResponse index() {
            throw new UnsupportedOperationException();
        }
    
        /**
         * Starts a scheduled job by ID.
         *
         * @param id the ID of the scheduled job to start
         * @return JSON response indicating success or failure
         */
        // PUT /api/admin/scheduler/{id}/start
        @Execute(urlPattern = "{}/@word")
        public JsonResponse<ApiResult> put$start(final String id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/ITBase.java

            if (testToken != null) {
                return;
            }
            given().contentType("application/json").delete(getEsUrl() + "/fess_config.access_token/_doc/" + DEFAULT_TEST_TOKEN_ID);
        }
    
        public static void refresh() {
            given().contentType("application/json").post(getEsUrl() + "/_refresh");
        }
    
        public static String getFessUrl() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

            } else if (value instanceof String[]) {
                final String json = Arrays.stream((String[]) value)
                        .map(s -> "\"" + StringEscapeUtils.escapeJson(s) + "\"")
                        .collect(Collectors.joining(","));
                buf.append('[').append(json).append(']');
            } else if (value instanceof List) {
                final String json = ((List<?>) value).stream()
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 29.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/pathmap/ApiAdminPathmapAction.java

         * Returns list of path mapping settings.
         * Supports both GET and PUT requests for retrieving paginated path mapping configurations.
         *
         * @param body search parameters for filtering and pagination
         * @return JSON response containing path mapping settings list with pagination info
         */
        @Execute
        public JsonResponse<ApiResult> settings(final SearchBody body) {
            validateApi(body, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.8K bytes
    - Viewed (0)
Back to top