Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 251 - 260 of 390 for jsou (0.02 seconds)

  1. src/test/java/org/codelibs/fess/it/admin/StatsTests.java

            assertTrue(response.contains("version"), "Response should contain 'version' field");
    
            // Verify response can be parsed as JSON
            final Map<String, Object> res = JsonPath.from(response).getMap("response");
            assertNotNull(res, "Response should be valid JSON");
    
            logger.info("[END] statsResponseFormatTest");
        }
    
        @Test
        void multipleStatsCallsTest() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                compactList.add(new Object[] { p.getName(), p.getValues() });
            }
            try {
                final String json = mapper.writeValueAsString(compactList);
                final byte[] compressed = gzipCompress(json.getBytes(StandardCharsets.UTF_8));
                return Base64.getUrlEncoder().withoutPadding().encodeToString(compressed);
            } catch (final Exception e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 36.3K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/it/admin/BadWordTests.java

    import java.util.HashMap;
    import java.util.Map;
    
    import org.codelibs.fess.it.CrudTestBase;
    import org.junit.jupiter.api.Tag;
    import org.junit.jupiter.api.Test;
    
    import io.restassured.path.json.JsonPath;
    import io.restassured.response.Response;
    
    @Tag("it")
    public class BadWordTests extends CrudTestBase {
    
        private static final String NAME_PREFIX = "badWordTest_";
    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)
  4. src/test/java/org/codelibs/fess/it/admin/ElevateWordTests.java

    import java.util.HashMap;
    import java.util.Map;
    
    import org.codelibs.fess.it.CrudTestBase;
    import org.junit.jupiter.api.Tag;
    import org.junit.jupiter.api.Test;
    
    import io.restassured.path.json.JsonPath;
    import io.restassured.response.Response;
    
    @Tag("it")
    public class ElevateWordTests extends CrudTestBase {
    
        private static final String NAME_PREFIX = "elevateWordTest_";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 4K bytes
    - Click Count (0)
  5. .teamcity/performance-test-durations.json

    github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> 1774241109 +0000
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 04:45:09 GMT 2026
    - 26.1K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         * When enabled, users can save favorite search results.
         */
        @Size(max = 10)
        public String userFavorite;
    
        /**
         * Enable or disable JSON Web API.
         * When enabled, search results can be retrieved via JSON API.
         */
        @Size(max = 10)
        public String webApiJson;
    
        /**
         * Application-specific value for custom configurations.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  7. build-logic/binary-compatibility/build.gradle.kts

        implementation(buildLibs.kotlinMetadata)
        implementation(buildLibs.jspecify)
        implementation(libs.asm)
        compileOnly(buildLibs.kotlinCompilerEmbeddable)
    
        testImplementation(buildLibs.jsoup)
        testImplementation(testLibs.junit5JupiterEngine)
    }
    
    tasks.compileGroovy.configure {
        classpath += files(tasks.compileKotlin)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 09:06:26 GMT 2026
    - 927 bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

                logger.warn("Failed to serialize JSON.", e);
                return "{}";
            }
        }
    
        /**
         * Parses a JSON string into a map.
         *
         * @param json the JSON string to parse.
         * @return the parsed map, or an empty map on failure.
         */
        protected Map<String, Object> parseJson(final String json) {
            try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 33.3K bytes
    - Click Count (0)
  9. .teamcity/pluginData/Check/plugin-settings.xml

            <build-type id="bt270451" />
          </build-types>
        </webhook>
        <webhook url="https://gradle-bot.grdev.net/teamcity" enabled="true" template="legacy-tailored-json">
          <states>
            <state type="buildAddedToQueue" enabled="false" />
            <state type="buildRemovedFromQueue" enabled="false" />
            <state type="buildStarted" enabled="false" />
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue May 18 02:15:16 GMT 2021
    - 2.2K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java

                logger.warn("[RAG] Failed to serialize SSE data. event={}", event, e);
            }
        }
    
        /**
         * Writes a JSON response to the HTTP response.
         *
         * @param response the HTTP response
         * @param status the HTTP status code
         * @param data the data to serialize as JSON
         * @throws IOException if an I/O error occurs
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 06:06:55 GMT 2026
    - 25.8K bytes
    - Click Count (0)
Back to Top