Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 75 for responsive (0.05 seconds)

  1. src/main/webapp/css/chat.css

    }
    
    .char-counter.warning {
        color: #ff991f;
    }
    
    .char-counter.danger {
        color: #de350b;
    }
    
    /* ============================================
       Responsive adjustments
       ============================================ */
    @media (max-width: 768px) {
        .card.shadow-sm {
            height: calc(100vh - 120px);
            max-height: calc(100vh - 120px);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/it/admin/DocumentsTests.java

            checkMethodBase(requestBody).put(API_PATH + "/" + BULK_ENDPOINT).then().body("response.status", equalTo(0));
            refresh();
    
            // Verify documents were updated
            response = checkMethodBase(searchBody).get(SEARCHLIST_API_PATH + "/docs").asString();
            List<Map<String, Object>> updatedDocs = JsonPath.from(response).getList("response.docs");
    
            logger.info("Updated documents: {}", updatedDocs);
    
    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)
  3. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                break;
            case FAVORITE:
                processFavoriteRequest(request, response, chain);
                break;
            case FAVORITES:
                processFavoritesRequest(request, response, chain);
                break;
            case PING:
                processPingRequest(request, response, chain);
                break;
            case SCROLL:
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 27 13:56:32 GMT 2026
    - 55.4K bytes
    - Click Count (1)
  4. src/test/java/org/codelibs/fess/app/web/api/ApiResultTest.java

            final ApiStartJobResponse response = new ApiStartJobResponse();
            final ApiStartJobResponse returned = response.jobLogId("abc123def456");
            assertSame(response, returned);
            assertEquals("abc123def456", response.jobLogId);
        }
    
        @Test
        public void test_ApiStartJobResponse_withNullJobLogId() {
            final ApiStartJobResponse response = new ApiStartJobResponse();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java

    import org.codelibs.fess.util.RenderDataUtil;
    import org.dbflute.optional.OptionalEntity;
    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.HtmlResponse;
    import org.lastaflute.web.response.render.RenderData;
    import org.lastaflute.web.ruts.process.ActionRuntime;
    
    import jakarta.annotation.Resource;
    
    /**
     * Admin action for Data Config management.
     *
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 21K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/it/admin/FailureUrlTests.java

            searchBody.put("size", 100);
    
            String response = checkMethodBase(searchBody).get(API_PATH + "/logs").asString();
            List<Map<String, Object>> logs = JsonPath.from(response).getList("response.logs");
    
            logger.info("Failure URL logs: {}", logs);
            assertTrue(logs.size() > 0, "Should have at least one failure URL log");
    
            // Verify response structure
    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)
  7. src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java

            response.setStatus(status);
            response.setContentType("application/json");
            response.setCharacterEncoding("UTF-8");
            response.getWriter().write(objectMapper.writeValueAsString(data));
        }
    
        /**
         * Creates a success response map.
         *
         * @param sessionId the session ID
         * @param content the response content
         * @param sources the list of chat sources
    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)
  8. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

                response = checkMethodBase(new HashMap<>()).get("/api/admin/crawlinginfo/log/" + logId).asString();
                jsonPath = JsonPath.from(response);
                assertEquals(0, jsonPath.getInt("response.status"));
                assertEquals(logId, jsonPath.getString("response.log.id"));
                logger.info("Get crawling info log by ID test completed");
            }
    
            // Test GET with non-existent ID
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:01:34 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

    /**
     * This class represents the base response structure for API results.
     * It encapsulates the API response and provides methods to build different types of API responses.
     */
    public class ApiResult {
    
        /**
         * The API response object.
         */
        protected ApiResponse response = null;
    
        /**
         * Constructs an ApiResult with the specified ApiResponse.
         * @param response The API response object.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

        /**
         * Strips code fence markers from JSON response.
         *
         * @param response the response that may contain code fences
         * @return the response with code fences removed
         */
        protected String stripCodeFences(final String response) {
            if (response == null) {
                return "";
            }
            String stripped = response.trim();
            if (stripped.startsWith("```json")) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
Back to Top